Lucene search
+L
HuntrMost viewed

4084 matches found

Huntr
Huntr
•added 2021/12/09 3:15 p.m.•26 views

Cross-Site Request Forgery (CSRF) in microweber/microweber

Description Attacker is able to logout a user if a logged in user visits attacker website. Impact This vulnerability is capable of forging user to unintentional logout. Test Tested on Edge, firefox, chrome and safari. Fix You should use POST instead of GET ANY. To expand: One way GET could be...

4.3CVSS4.3AI score0.00363EPSS
SaveExploits0
Huntr
Huntr
•added 2021/11/30 2:34 p.m.•26 views

Server-Side Request Forgery (SSRF) in dotcms/core

Description Hi team, I found a SSRF that allow me to access the elasticsearch API and get full response from the querys - As can be read in the following link dotCMS uses elastisearch, with this SSRF we can direct access the elastisearch REST API, - In a cloud environment, it can be possible to...

1.1AI score
SaveExploits0References1
Huntr
Huntr
•added 2021/11/27 6:36 p.m.•26 views

Improper Access Control in bookstackapp/bookstack

Description A user with API access can view any attachment which they do not have read access to because read permissions are not being checked at the API attachments read controller. Proof of Concept 1: From default installation give the "Public" role access to system API 2: Upload attachment...

4CVSS0.8AI score0.00926EPSS
SaveExploits1
Huntr
Huntr
•added 2021/11/21 1:32 p.m.•26 views

Cross-site Scripting (XSS) - Stored in pimcore/pimcore

Description Cross-Site Scripting XSS attacks are a type of injection, in which malicious scripts are injected into otherwise benign and trusted websites. Proof of Concept // PoC.js Steps to reproduce : 1-- Go over settings -- Data Objects -- Objectbricks. 2-- Click Add or Edit a previous one . 3-...

4.3CVSS6.2AI score0.0156EPSS
SaveExploits1
Huntr
Huntr
•added 2021/11/19 3:45 a.m.•26 views

CRLF Injection in phpservermon/phpservermon

Description misconfig of nginx lead to crlf injection In nginx, $uri is url decoded, which will decode %0d%0a to CRLF. code: return 301 http://$uri; Proof of Concept A request to: http://www.test.com/%0d%0afakeheader:123%0d%0a%0d%0afakecontent Impact CRLF Injection allows an attacker to inject...

5.8CVSS0.8AI score0.00843EPSS
SaveExploits1
Huntr
Huntr
•added 2021/10/20 2:02 p.m.•26 views

Cross-site Scripting (XSS) - Stored in getgrav/grav

Description Grav is vulnerable to XSS. It is possible to use instead of : in tags. Proof of Concept Payload: HTML CLICK HERE 1: Edit a page with the payload user with low privileges. 2: Check out the target page and click on CLICK HERE. PoC video. Impact This vulnerability is capable of executing...

3.5CVSS0.6AI score0.00592EPSS
SaveExploits1
Huntr
Huntr
•added 2021/10/18 11:16 a.m.•26 views

Cross-Site Request Forgery (CSRF) in tsolucio/corebos

Description Hey Corebos team An attacker able to delete a workFlow as there isn't exist any CSRF token for it. //PoC.html history.pushState'', '', '/' document.forms0.submit; after that you open the PoC.html file the workflow with id equal to 27 will be deleted...

1.7AI score
SaveExploits0
Huntr
Huntr
•added 2021/09/29 7:34 p.m.•26 views

in stanfordnlp/corenlp

✍️ Description The Stanford CoreNLP package provides a set of natural language analysis tools written in Java, is using a vulnerable XML External Entity XXE. An attacker that is able to provide a crafted XML file as input to the getTextContentFromTagsFromFile function in the "XMLUtils.java" file...

5CVSS0.7AI score0.0136EPSS
SaveExploits1
Huntr
Huntr
•added 2021/09/19 7:26 p.m.•26 views

Inefficient Regular Expression Complexity in nltk/nltk

✍️ Description The nltk package is vulnerable to ReDoS regular expression denial of service. An attacker that is able to provide as an input to the readcomparisonblock function in the file "nltk/corpus/reader/comparativesents.py" may cause an application to consume an excessive amount of CPU. Belo...

5CVSS0.7AI score0.01703EPSS
SaveExploits1
Huntr
Huntr
•added 2021/09/17 6:15 a.m.•26 views

Heap-based Buffer Overflow in mruby/mruby

Description Heap buffer overflow in mruby Proof of Concept // poc.rb %= % .clear ensure begin unless ?n = % :regex or 11 Compile mruby with asan git clone https://github.com/mruby/mruby cd mruby LDFLAGS="-fsanitize=address" CFLAGS="-fsanitize=address -g" make ./bin/mruby poc.rb Result ./bin/mruby...

7.7AI score
SaveExploits0
Huntr
Huntr
•added 2021/09/13 3:43 p.m.•26 views

Prototype Pollution in antfu/utils

Description @antfu/utils is a collection of common JavaScript / TypeScript utils. It is vulnerable to Prototype Pollution on the deepMerge function. This allows for modification of prototype behavior, which may result in Information Disclosure/DoS/RCE. About the vulnerability Prototype Pollution...

7.5CVSS7.3AI score0.00991EPSS
SaveExploits1References1
Huntr
Huntr
•added 2021/09/11 6:40 p.m.•26 views

Inefficient Regular Expression Complexity in prismjs/prism

✍️ Description The prismjs package is vulnerable to ReDoS regular expression denial of service. An attacker that is able to provide a crafted HTML comment as input may cause an application to consume an excessive amount of CPU. Below pinned line using vulnerable regex. 🕵️‍♂️ Proof of Concept...

4.3CVSS0.9AI score0.0104EPSS
SaveExploits1
Huntr
Huntr
•added 2021/09/10 12:09 p.m.•26 views

Inefficient Regular Expression Complexity in sindresorhus/semver-regex

✍️ Description It allows cause a denial of service when formatting crafted invalid semver versions. 🕵️‍♂️ Proof of Concept // PoC.mjs import semverRegex from 'semver-regex'; forvar i = 1; i = 50000; i++ var time = Date.now; var attackstr = '0.0.0-0' + '.-------'.repeati1 + '@';...

5CVSS4.5AI score0.01457EPSS
SaveExploits1
Huntr
Huntr
•added 2021/08/31 11:05 p.m.•26 views

Path Traversal in yogeshojha/rengine

✍️ Description Local File Inclusion through Path Traversal 🕵️‍♂️ Proof of Concept While logged in into a Rengine instance, go to /api/getFileContents/?nucleitemplate&name=../../../../../../../../etc/passwd. The contents of /etc/passwd are included into the response. 💥 Impact This vulnerability is...

2.4AI score
SaveExploits0
Huntr
Huntr
•added 2021/08/20 7:06 a.m.•26 views

Cross-Site Request Forgery (CSRF) in firefly-iii/firefly-iii

✍️ Description Attacker able to Remove budgeted amount with CSRF attack. It does not matter at all that your application run in localhost or elsewhere, just it is enough to run on a browser and another low privilege user or attackers know the IP address or hostname of your application. In CSRF...

4.3CVSS1.3AI score0.00501EPSS
SaveExploits1
Huntr
Huntr
•added 2021/08/02 6:20 p.m.•26 views

in frangoteam/fuxa

✍️ Description This endpoint handler performs a file system operation and does not use a rate-limiting mechanism. 🕵️‍♂️ Proof of Concept fs.writeFileSyncruntime.settings.userSettingsFile, JSON.stringifyreq.body, null, 4; mergeUserSettingsreq.body; res.end; FIx Consider using a rate-limiting...

1.8AI score
SaveExploits0References1
Huntr
Huntr
•added 2021/07/04 8:09 p.m.•26 views

Cross-site Scripting (XSS) - Stored in aimeos/aimeos-core

✍️ Description Integrated online shop based on Laravel 6 LTS and the Aimeos e-commerce framework this webapp is vulnerabel for stored xss thru filename 🕵️‍♂️ Proof of Concept 💥 Impact This vulnerability is capable stored XSS...

0.9AI score
SaveExploits0References1
Huntr
Huntr
•added 2021/05/20 12:36 p.m.•26 views

Path Traversal in kalcaddle/kodexplorer

✍️ Description I have confirmed a file transversal vulnerability on any server running Kodexplorer, Malicious user can read any file 🕵️‍♂️ Proof of Concept First setup local installation of kodExplorer. If the server is running with root permission:...

0.4AI score
SaveExploits0
Huntr
Huntr
•added 2021/04/18 11:02 p.m.•26 views

Improper Access Control in idno/known

✍️ Description A logged in user can edit 'Public' or 'Members only' status of other users 🕵️‍♂️ Proof of Concept 1. Create a 'Public' or 'Members only' status update with a first user 2. Login with a second user and go to the root page e.g. http://yoursite/known where you can see the status of the...

7.2AI score
SaveExploits0
Huntr
Huntr
•added 2021/04/17 1:49 p.m.•26 views

Prototype Pollution in ssnau/xkit

✍️ Description Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as proto, constructor and prototype. An attacker...

2AI score
SaveExploits0
Huntr
Huntr
•added 2021/03/27 3:09 p.m.•26 views

Cross-Site Request Forgery (CSRF) in thewawar/simple-http-server

✍️ Description The 'upload' feature in simple-http-server is vulnerable to cross-site request forgery, it doesn't authenticate the user and just uploads the files which are given to it. If upload feature is enabled, it can allow attackers to craft web pages and if victims interact with attackers'...

1.1AI score
SaveExploits0
Huntr
Huntr
•added 2021/03/17 8:20 p.m.•26 views

Command Injection in yibn2008/find-process

✍️ Description find-process is vulnerable to Command Injection through the find function. This function is capable to get information about running processes by PID number, port number or a string value. 🕵️‍♂️ Proof of Concept // PoC.js const find = require'find-process'; const command = "$touch...

2.6AI score
SaveExploits0References1
Huntr
Huntr
•added 2021/03/10 4:44 p.m.•26 views

Code Injection in prayag2/konsave

✍️ Description konsave is a CLI program that will let you save and apply your KDE Plasma customizations with just one command , which is vulnerable to YAML deserialization attack caused by unsafe loading leads to Arbitary Code Execution. 🕵️‍♂️ Proof of Concept Installation bash pip install konsave...

2.3AI score
SaveExploits0References2
Huntr
Huntr
•added 2021/02/14 12:00 a.m.•26 views

Cross-site Scripting (XSS) - Generic in ciur/papermerge-js

Description Papermerge is an open source document management system DMS primarily designed for archiving and retrieving your digital documents. Instead of having piles of paper documents all over your desk, office or drawers - you can quickly scan them and configure your scanner to directly uploa...

6.2AI score
SaveExploits0
Huntr
Huntr
•added 2021/01/10 12:00 a.m.•26 views

Prototype Pollution in babak-gholamzadeh/deeply-object-assign

Description deeply-object-assign is vulnerable to Prototype Pollution. Proof of Concept 1. Create the following PoC file: // poc.js var deeplyObjectAssign = require"deeply-object-assign" const payload = JSON.parse'"proto":"polluted":"Yes! Its Polluted"'; var obj = console.log"Before : " +...

2AI score
SaveExploits0
Huntr
Huntr
•added 2021/01/10 12:00 a.m.•26 views

Prototype Pollution in allgay/jsonuri

Description jsonuri is vulnerable to Prototype Pollution. Proof of Concept 1. Create the following PoC file: // poc.js const set = require'jsonuri' var obj = console.log"Before : " + .polluted; set, 'proto/polluted', 'Yes! Its Polluted'; console.log"After : " + .polluted; 2. Execute the following...

1.8AI score
SaveExploits0
Huntr
Huntr
•added 2020/12/21 12:00 a.m.•26 views

in nvidia/runx

Description runx is a Deep Learning Experiment Management library by NVIDIA. This package was vulnerable to Arbitrary code execution via Insecure YAML deserialization due to the use of a known vulnerable function load in yaml. repo: https://github.com/NVIDIA/runx Proof of Concept python...

1.4AI score
SaveExploits0References1
Huntr
Huntr
•added 2020/09/14 12:00 a.m.•26 views

Prototype Pollution in pierreinglebert/json-merge-patch

Description json-merge-patch is vulnerable to Prototype Pollution. This package fails to restrict access to prototypes of objects, allowing for modification of prototype behavior using a proto payload, which may result in Information Disclosure/DoS/RCE. Proof of Concept 1. Create the following Po...

1.7AI score
SaveExploits0
Huntr
Huntr
•added 2020/04/02 12:00 a.m.•26 views

Command Injection in node-virtualization/node-virtualbox

Overview The issue occurs because a user input is formatted inside a command that will be executed without any check...

4.2AI score
SaveExploits0
Huntr
Huntr
•added 2019/08/18 12:00 a.m.•26 views

Cross-site Scripting (XSS) - Generic in boxbilling/boxbilling

Overview Boxbilling is a free billing & client management software Affected versions of this software are vulnerable to Cross-site Scripting XSS. It is possible to inject JavaScript with object decoding such as alert1 resulting in XSS. Technical Description if we look in...

1.9AI score
SaveExploits0References2
Huntr
Huntr
•added 2026/02/26 12:32 p.m.•25 views

`trust_remote_code=False` Bypass in LightGlue Nested Config Resolution (Transformers 5.2.0) Leading to Remote Code Execution During Normal `from_pretrained()` Loading

Description Transformers contains a trust-boundary flaw in the LightGlue loading path. When loading a LightGlue model, LightGlueConfig reads trustremotecode from untrusted model config.json and reuses it for nested AutoConfig.frompretrained... resolution. This allows an attacker-controlled model...

9.6CVSS7.9AI score0.00936EPSS
SaveExploits1
Huntr
Huntr
•added 2026/02/25 9:10 a.m.•25 views

Path Traversal via Incorrect startswith() Root Directory Check in jupyter-server Allows Access to Sibling Directories

This report is not public...

8.1CVSS6.7AI score0.00549EPSS
SaveExploits1
Huntr
Huntr
•added 2026/02/17 6:00 a.m.•25 views

Missing Authorization Validation on MLflow MPU Endpoints Leads to Cross-Resource Artifact Overwrite, Model Poisoning, and Cross-Boundary Command Execution on Model Load

Analyzed version: 5af88dc08a54d40dddfc019da9e7f0fd0fcf34e2 git describe: nightly-2300-g5af88dc08, local mlflow.version: 3.10.1.dev0 In --serve-artifacts mode, MLflow exposes MPU endpoints for large-file multipart uploads. However, its authorization logic only covers the /mlflow-artifacts/artifact...

9CVSS6.1AI score0.00536EPSS
SaveExploits1
Huntr
Huntr
•added 2024/12/03 10:12 a.m.•25 views

Regular expression Denial of Service - ReDoS

Description A Regular Expression Denial of Service ReDoS vulnerability identified in the Transformers library, specifically in the file tokenizationnougatfast.py. The vulnerability occurs in the postprocesssingle function, where a regular expression processes specially crafted input. The issue...

7.5CVSS6.2AI score0.00733EPSS
SaveExploits0
Huntr
Huntr
•added 2023/09/23 5:58 p.m.•25 views

stored xss using journal-role when user try to export user of any journal

BUG ========== stored xss using journal-role when user try to export user of any journal SUMMURY ========= lower level user can attack higher level user using this xss STEP TO REPRODUCE ================ 1. from Admin account create a journal called "journal-A" .\ \ 2. Admin goto above journal...

7AI score0.00338EPSS
SaveExploits1
Huntr
Huntr
•added 2023/09/19 2:49 p.m.•25 views

No rate limiting on creating access token

Description: Access token creation is a critical security component in many applications, especially when it comes to user authentication and authorization. Without proper rate limiting controls, attackers may exploit this process to launch various types of attacks, such as brute force attacks,...

6.5CVSS6.9AI score0.00652EPSS
SaveExploits1
Huntr
Huntr
•added 2023/09/18 7:45 p.m.•25 views

SQL Injection in `icms2/install/index.php`

Introduction I'm quite hesitant about reporting this vulnerability. After thinking about it, I knew I needed to provide this information to you!. As described in the documentation https://docs.instantcms.ru/en/manual/instal, at Post-Installation steps, you described that the installation director...

7.4AI score
SaveExploits0
Huntr
Huntr
•added 2023/09/08 2:10 p.m.•25 views

Cookie without Secure flag

Description Access and login to the website. Press F12 on your keyboard or right-click on the website to open dev-tool. At Application tab, choose Cookies and there are some sensitive cookies without Secure flag. Proof of Concept...

7.1AI score0.00287EPSS
SaveExploits1References1
Huntr
Huntr
•added 2023/09/07 12:33 p.m.•25 views

Reflected Cross-Site Scripting (XSS) vulnerability in the dynamic 404 page

Description When running a Cecil site by cecil serve without a 404.html, Reflected Cross-Site Scripting XSS is possible via the URI path. Proof of Concept Run the following commands: mkdir cecil-404-xss-poc cd cecil-404-xss-poc curl -L https://cecil.app/cecil.phar -o cecil chmod +x cecil ./cecil...

5.8CVSS5.9AI score0.00517EPSS
SaveExploits1
Huntr
Huntr
•added 2023/08/31 2:45 a.m.•25 views

Out of Bounds Read in MPEG12_ParseSeqHdr media_tools/mpeg2_ps.c

Description Out of Bounds Read in MP4Box. Version $ ./bin/gcc/MP4Box -version MP4Box - GPAC version 2.3-DEV-revrelease c 2000-2023 Telecom Paris distributed under LGPL v2.1+ - http://gpac.io Please cite our work in your research: GPAC Filters: https://doi.org/10.1145/3339825.3394929 GPAC:...

1.9CVSS6.9AI score0.00305EPSS
SaveExploits1References1
Huntr
Huntr
•added 2023/08/24 8:31 a.m.•25 views

Input Validation Vulnerability Leading to Denial of Service in LimeSurvey v5.6.34

Vulnerability Summary: LimeSurvey is a widely used open-source online survey system. In version 5.6.34, an input validation vulnerability has been identified, allowing attackers to exploit a vulnerability in surveys containing "file upload" options. This can lead to a denial of service by...

7.3AI score
SaveExploits0
Huntr
Huntr
•added 2023/08/14 7:12 a.m.•25 views

New password can be set as same as the old password

Description The web application allows us to set new password as the old one at Password change function. Detail: 1/ Access to the demo website and go to My profile. 2/ Choose Edit profile, at the Security tab, change the password with the new password and the old password are the same. 3/ Logout...

4CVSS7.1AI score0.00432EPSS
SaveExploits0
Huntr
Huntr
•added 2023/08/02 5:08 p.m.•25 views

Cross-site Scripting (Stored XSS)

Description For any role that has permission to execute function assets, i can add a new asset. Even though the site only allows uploading images and gifs, I can still upload an html file by modifying the magic number and that leads to XSS. Proof of Concept 1. Link PoC:...

4.9CVSS7.2AI score0.00465EPSS
SaveExploits1
Huntr
Huntr
•added 2023/08/02 4:31 a.m.•25 views

Unauthenticated Blind SQL Injection in '/tags/autocomplete'

Description The application was found to be vulnerable to an unauthenticated blind SQL injection in the /tags/autocomplete page. The GET parameter term does not sufficiently sanitize input. Proof of Concept 1. Make a GET request to...

6.4CVSS8.1AI score0.00928EPSS
SaveExploits1
Huntr
Huntr
•added 2023/07/24 2:53 p.m.•25 views

Stored XSS in Preview title

Description There is accumulated XSS in the preview title of the page. Proof of Concept Step 1. Log in to the administrator screen and create a new page. Step 2. Insert "Browse preview" from "Add new block" and specify Payload in "Preview title". Step 3. When you access the preview screen in the...

4.3CVSS5.9AI score0.00463EPSS
SaveExploits1References1
Huntr
Huntr
•added 2023/07/07 8:30 a.m.•25 views

Stored Xss in Question field due to lack of sanitization in Link.php

Description Stored XSS Cross-Site Scripting is a type of web application vulnerability that allows an attacker to inject malicious scripts into a website or web application. Unlike reflected XSS, where the malicious script is embedded in a URL and executed immediately, stored XSS involves the...

4.9CVSS5.6AI score0.00492EPSS
SaveExploits0References1
Huntr
Huntr
•added 2023/06/30 5:41 a.m.•25 views

CSV Injection while export users

1 admin add a user, or a user signup. 2 the user logins and edit himeself 3 the user change his realname as "=1+cmd|'/C calc'!A0" 4 admin go to export the users as a csv file 5 admin open the csv and we can see that the calculator is opened. see https://owasp.org/www-community/attacks/CSVInjectio...

7.5CVSS6.2AI score0.00809EPSS
SaveExploits0
Huntr
Huntr
•added 2023/06/14 1:28 a.m.•25 views

Sensitive Cookie Without Secure Flag

Description Access and login to the demo website: https://demo.openitcockpit.io/ Press F12 on your keyboard or right-click on the website to open dev-tool. At Application tab, choose Cookies and there are some sensitive cookies without Secure flag. CookieAuth, csrfToken Proof of Concept Link imag...

4.9CVSS6.8AI score0.00302EPSS
SaveExploits1
Huntr
Huntr
•added 2023/06/11 8:40 a.m.•25 views

IDOR in message deletion

Description user can delete others's message. we know the report https://huntr.dev/bounties/24ae402f-220f-41c6-962e-47c26938986e/ , but we find that we do not fix one case. Proof of Concept 1 user1 send admin a greeting card1 2 user2 send admin a greeting card2 3 user1 delete his message related ...

5.5CVSS7AI score0.00415EPSS
SaveExploits1
Huntr
Huntr
•added 2023/06/06 9:29 a.m.•25 views

Stored XSS via file upload in FireFox

Description Upload html file containing XSS payload. Payload ' On opening and refreshing the page, XSS payload executes in Firefox. Proof of Concept https://drive.google.com/file/d/1Irkg0u-8DcEizRSN3xE87ezEWmp0L4j/view?usp=sharing...

6.4AI score
SaveExploits0References1
Total number of security vulnerabilities4084