Lucene search
+L
HuntrMost viewed

4084 matches found

Huntr
Huntr
•added 2023/01/21 2:00 p.m.•27 views

CSRF leading to remove Administrators users

Description remove function is vulnerable to CSRF lead to remove any Administrators users GET /admin/permissions/remove/?domid=2&daid=15 Proof of Concept 1/ visit /admin/domains/1/ 2/ delete button to remove permission is vulnerable to CSRF...

4.3CVSS6.3AI score0.00345EPSS
SaveExploits1
Huntr
Huntr
•added 2023/01/17 5:58 a.m.•27 views

File Upload Type Validation Error

Description The upload functionality for updating user profile does not properly validate the file content-type, allowing any authenticated user to bypass this security check by adding a valid signature p.e. GIF89 and sending any invalid content-type. This could allow an authenticated attacker to...

6.9AI score
SaveExploits0References1
Huntr
Huntr
•added 2023/01/09 4:31 p.m.•27 views

Stored XSS

Description /collector page is vulnerable to stored XSS. PoC 1. Open the following file in the browser: html history.pushState'', '', '/' document.forms0.submit; 2. Login as user. 3. Go to http://localhost:9666/collector 4. Click XSS alertXSS...

4.9CVSS5.5AI score0.00828EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/30 5:11 p.m.•27 views

Reflected Cross Site Scripting

Description User can be input malicious js in param action in url http://localhost//stats.php?action=injecthere&userid=1 and send link to other user can be steal cookie of other user. Param action not input validation from user on line 71 in file...

5.8CVSS6.2AI score0.00639EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/28 6:35 p.m.•27 views

Cross-Site Request Forgery (CSRF) in Add Users

Description Hello Team, Create a member functionality is vulnerable for CSRF Attack , by exploiting CSRF vulnerability , attacker can add new Members history.pushState'', '', '/' POC video: https://drive.google.com/file/d/1dN2ug8qjwbz1CGbfuBldwamIFE4BNyH/view?usp=sharing Fix: I just want to sugge...

4.3CVSS0.6AI score0.00256EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/28 3:49 a.m.•27 views

IDOR to delete memo from archives

Description Insecure direct object references IDOR are a type of access control vulnerability that arises when an application uses user-supplied input to access objects directly. Proof of Concept 1 Login into your account at demo.usememos.com 2 Turn on your burpsuite proxy 3 Go to archived memos ...

4CVSS0.00534EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/24 10:56 a.m.•27 views

Stored XSS in resource file uploading

Description The Resources upload feature does not restrict the type of uploaded file. An attacker can upload an html file and the browser still renders it. The CSP is set to default-src 'self' to prevent inline script execution. However, this can be easily bypassed by uploading a .js file then...

4.9CVSS5.7AI score0.00575EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/15 8:38 p.m.•27 views

Stored XSS in Roles

Description Stored cross-site scripting vulnerabilities arise when user input is stored and later embedded into the application's responses in an unsafe way. An attacker can use the vulnerability to inject malicious JavaScript code into the application, which will execute within the browser of an...

4.3CVSS5.4AI score0.00473EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/12/07 2:40 p.m.•28 views

Sensitive system information disclosure

Description An unauthenticated user can gather information on the remote system just by visiting the following endpoints: + /library/exten-radiusserverinfo.php which reveals pieces of information such as system uptime, CPU load, etc. + /library/exten-serverinfo.php which reveals if mysql and/or...

5CVSS6.3AI score0.00721EPSS
SaveExploits1
Huntr
Huntr
•added 2022/12/04 10:36 a.m.•27 views

Path traversal vulnerability found

Description please check this link https://demos4.softaculous.com/FlatPressfgbu50zqaa/fp-content/ Proof of Concept https://prnt.sc/0UGovVLWcKo7...

7.5CVSS9AI score0.03637EPSS
SaveExploits1
Huntr
Huntr
•added 2022/11/08 5:26 p.m.•27 views

Post parameter namespaceMD5 is vulnerable to reflected XSS

Description The POST parameter namespaceMD5 is vulnerable to reflected XSS. Proof of Concept javascript // POST request to /module with parameters and payload namespaceMD5=3389dae361af79b04c9c8e7057f60cc6test''"alertalert&module=settings%2Fgroup%2Flanguageimport&id=mwadminimportlanguagemodalconte...

5.8CVSS2.3AI score0.00616EPSS
SaveExploits1
Huntr
Huntr
•added 2022/10/30 8:18 a.m.•27 views

heap-use-after-free in function did_set_spelllang at spell

Description heap-use-after-free in function didsetspelllang at spell.c:2256:19 vim version shell git log -1 commit 03d6e6f42b0deeb02d52c8a48c14abe431370c1c HEAD - master, tag: v9.0.0820, origin/master, origin/HEAD...

4.4CVSS1.2AI score0.00674EPSS
SaveExploits1
Huntr
Huntr
•added 2022/10/26 9:14 a.m.•27 views

Html Injection Stored in edit customers

Description HTML Injection is a vulnerability in which the attacker can inject malicious html content in the webpage. Proof of Concept 1. Open tab Edit Customers, click Edit customer 2. Inject this payload at field Name: TEST TEST TEST. And then click Save 3. Go to the profile page of this...

4.9CVSS0.9AI score0.00818EPSS
SaveExploits0
Huntr
Huntr
•added 2022/10/06 3:51 p.m.•27 views

Multiple Reflected Cross-Site Scripting in Messages Module

Description The first occurrence affects messages.php file. The parameter stage was not properly encoded before being printed as HTML. This occurs when go parameter is set to setup value. The second instance affects save.php file. There was a POST parameter called parameter in JSON format that wa...

5.8CVSS6.5AI score0.00639EPSS
SaveExploits1
Huntr
Huntr
•added 2022/10/06 9:26 a.m.•27 views

Origin validation Bypass

In the following python script py if request.method in 'POST', 'PUT', 'PATCH', 'DELETE': origin = request.headers.get'Origin', None if origin and not origin.startswithrequest.base: raise cherrypy.HTTPError403, 'Unexpected Origin header' Explanation: In the above lines of code, The origin is being...

7.5CVSS0.1AI score0.00362EPSS
SaveExploits0
Huntr
Huntr
•added 2022/10/05 2:49 p.m.•27 views

Stored Cross Site Scripting (XSS) in parameter rp4wp[heading_text]

Description The Related Posts for WordPress plugin is vulnerable to stored XSS, specifically in the rp4wpheadingtext parameter because the user input is not properly sanitized, allowing the insertion of JavaScript code that can exploit the vulnerability. Proof of Concept 1 - Install and activate...

4.9CVSS5.5AI score0.01242EPSS
SaveExploits1
Huntr
Huntr
•added 2022/09/16 9:43 a.m.•28 views

Stored XSS via SVG File

Description By uploading SVG files, the users can perform Stored XSS attack. Copy the following code and save as filename.svg. Proof of Concept alertdocument.domain 1 Login as user with upload permission. 2 upload the payload injected SVG file at https://demo.inventree.org/order/sales-order/3/ 3...

4.9CVSS5.8AI score0.00684EPSS
SaveExploits1
Huntr
Huntr
•added 2022/09/08 5:37 p.m.•27 views

html injection on https://demo.microweber.org/demo/search.php?keywords=

Description hello team, I found an HTML injection on https://demo.microweber.org/demo/search.php?keywords= Proof of Concept https://demo.microweber.org/demo/search.php?keywords=ABC%3Cdiv%20style=%22%3E%3Cmarquee%3E%3Ch1%3Eyou%20are%20been%20hacked%20%3C/h1%3E%3C/marquee%3E...

5.8CVSS0.01946EPSS
SaveExploits1
Huntr
Huntr
•added 2022/08/22 9:10 p.m.•27 views

Session Fixation

Description The session is not invalidated after a password change. Proof of Concept Open Snipe-IT in the browser and login. Do the same in a private window such that there are two sessions. Change the password in one of the two sessions and observe that the second session is not invalidated...

6CVSS1.3AI score0.00874EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/08/19 5:57 p.m.•27 views

Persistent Cross Site Scripting - BusinessHours Module - Settings

Description The application uses Purifier to avoid the Cross Site Scripting attack. However, On BusinessHours module from Settings, the type of name parameter is "Text" but it is not validated and it's used directly without any encoding or validation on EditViewBlocks.tpl. It allows attacker to...

4.9CVSS1.1AI score0.00605EPSS
SaveExploits1
Huntr
Huntr
•added 2022/08/07 3:28 p.m.•27 views

Stored XSS on Admin Translations

Description Key/Name field in Admin Translation Settings is vulnerable to XSS. Proof of Concept 1 - Go to Settings, Admin Translations. 2 - Click on Add, and put the XSS payload: " on Name then save 3 - XSS popup will be triggered. Both Stable and Dev versions are vulnerable. Video PoC...

4.3CVSS0.4AI score0.01617EPSS
SaveExploits1
Huntr
Huntr
•added 2022/07/28 4:38 p.m.•27 views

Full Read Server-Side Request Forgery (SSRF)

Description In the recipe edit page, is possible to upload an image directly or via an URL provided by the user. The function that handles the fetching and saving of the image via the URL doesn't have any URL verification, which allows to fetch internal services. \ \ Furthermore, after the resour...

7AI score
SaveExploits0
Huntr
Huntr
•added 2022/07/25 12:26 p.m.•27 views

Idor disclose other user's appointment

Description:- In this case an idor allow an attacker to view portal user's appointments Proof of Concept 1.Goto http://demo.openemr.io/openemr/portal/home.php and then goto my profile my appointment 2.Click on edit appointment button and capture the request in burp suite 3. Change eid parameter t...

4CVSS0.2AI score0.00696EPSS
SaveExploits1
Huntr
Huntr
•added 2022/07/23 6:59 a.m.•27 views

Improper Input Validation

Description Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. When software does not validate input properly, an attacker is able to cra...

1.1AI score
SaveExploits0References3
Huntr
Huntr
•added 2022/07/07 5:34 p.m.•27 views

Application allows large characters to insert in the input field "Add new table" on the create field which can allow attackers to cause a Denial of Service (DoS) via a crafted HTTP request in

Proof of Concept Go to http://localhost:8080/dashboard//projects Select any created project and go to the project section. Click on the "ADD/IMPORT" section and click on "add new table" Create Fill the "table name" field with huge characters, more than 1 lakh Copy the below payload and put it in...

4.3CVSS6.8AI score0.03503EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/06/02 2:36 p.m.•27 views

Path traversal leads to arbitrary file deletions and file writes

Description Deploy and run gogs in Windows. Proof of Concept 1.Create a repository in Gogs, upload a file named test to the repository on the web page, The content of the file is as follows: xml 1111 2.The attacker can remove any files. http request: POST...

6.4CVSS0.3AI score0.02271EPSS
SaveExploits1
Huntr
Huntr
•added 2022/06/01 8:06 a.m.•27 views

Weak Password Requirements

Description Weak password policy leads to successful bruteforce attack Steps to reproduce 1.Go to http://localhost:8083/login and login with default credentials admin/admin123 2.Go to http://localhost:8083/me and change password to 123 3. Noticed that password has been changed successful...

7.5CVSS9.2AI score0.00748EPSS
SaveExploits1
Huntr
Huntr
•added 2022/05/24 3:51 p.m.•27 views

proxying Big files leads to potential DOS

Description consider following script exploit.py put drawiodockerinstace your address and also bigfileaddress should be serve a big image file 250 MB python from multiprocessing import Process import requests def fun: try:...

5CVSS6.2AI score0.00969EPSS
SaveExploits1
Huntr
Huntr
•added 2022/04/30 10:26 a.m.•27 views

Cross-site scripting - Reflected in Create Subaccount

Description Cross-site scripting - Reflected in Create Subaccount via codsubcuenta parameter. Proof of Concept POST /facturascripts/EditSubcuenta HTTP/1.1 Host: localhost User-Agent: Mozilla/5.0 Windows NT 10.0; Win64; x64; rv:100.0 Gecko/20100101 Firefox/100.0 Accept:...

4.3CVSS0.0087EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/04/20 5:49 p.m.•27 views

Cross-site Scripting (XSS) - Generic

Description The Stream URL of octoprint application allowing xss payload to execute for which its leads to Cross-site Scripting XSS Proof of Concept Login to the application Now go to settings - Webcam & Timelapse - Stream URL and insert the payload " in the Stream URL and click on "Test" You wil...

4.6CVSS0.2AI score0.01212EPSS
SaveExploits1
Huntr
Huntr
•added 2022/04/20 1:37 p.m.•27 views

Store XSS in title parameter executing at EditUser Page & EditProducto page

Description Cross-site scripting XSS is a common attack vector that injects malicious code into a vulnerable web application. Stored XSS, also known as persistent XSS, is the more damaging of the two. It occurs when a malicious script is injected directly into a vulnerable web application. Proof ...

3.5CVSS0.2AI score0.00752EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/03/25 12:16 a.m.•27 views

unchecked size in _load_bmp leads to RAM exhaustion in version 3.10

Description Via a maliciously crafted bmp file with modified dx and dy header field values it is possible to trick the application into allocating huge buffer sizes like 64 Gigabyte upon reading the file from disk or from a virtual buffer. Version This does affect the newest Version of Cimg which...

1.9CVSS1AI score0.00418EPSS
SaveExploits1
Huntr
Huntr
•added 2022/03/13 11:59 a.m.•27 views

Stored XSS due to Unrestricted File Upload

Description Stored XSS via uploading files in .xsl format. Proof of Concept filename="poc.xsl" alert1 Steps to Reproduce 1.Login into showdoc.com.cn.\ 2.Navigate to file library https://www.showdoc.com.cn/attachment/index\ 3.In the File Library page, click the Upload button and choose the poc.xsl...

3.5CVSS5.5AI score0.00619EPSS
SaveExploits1
Huntr
Huntr
•added 2022/03/11 11:10 a.m.•27 views

File upload filter bypass leading to stored XSS

Description A User can upload .a-zhtml file e.g. ahtml, bhtml, chtml, ddhtml, AS LONG AS it ends with html with XSS payload. Upon upload, a URL with malicious html can be accessed and javascript will be executed. Proof of Concept taking chtml as example Step 1 Login to the demo portal with admin...

3.5CVSS5.2AI score0.00909EPSS
SaveExploits1
Huntr
Huntr
•added 2022/03/08 4:20 p.m.•27 views

Cross-site Scripting (XSS) - Stored

Description pimcore datahub is vulnerable to Stored XSS in the Unique Indetifier of the function of "Add a new configuration" in Datahub. Whenever an admin user access data hub, a stored XSS will be triggered. Proof of Concept Step 1: Go to https://demo.pimcore.fun/admin/ and login. Step 2: Click...

3.5CVSS0.3AI score0.00582EPSS
SaveExploits1
Huntr
Huntr
•added 2022/03/06 11:18 p.m.•27 views

Improper Authorization and possible DoS when using PAM Auth

Description When bareos versions after 18.2 are build and configured for PAM authentification it skips checking authorization completely. Expired accounts and accounts with expired passwords can still login. Further after wrong authentication or the code returns without releasing the PAM handle,...

6.8CVSS1AI score0.02027EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/03/03 3:38 a.m.•27 views

Cross-site Scripting (XSS) - Reflected

Description Please enter a description of the vulnerability. Proof of Concept xss in function add domain POST /add/web v-custom-doc-domain=alert1 https://drive.google.com/file/d/1EeoOX7Pmn5ptuweine4Cgcy1fyd6qEzJ/view?usp=sharing Impact...

4.3CVSS0.6AI score0.01094EPSS
SaveExploits1
Huntr
Huntr
•added 2022/02/24 3:25 a.m.•27 views

Business Logic Errors

Description Product status of product is unpublished has been deleted by admin in Trash folder but user can still add to cart and make purchases Proof of Concept Step 1: Admin go to Shop Products: Unpublish product and Delete product Step 2: User add product to cart by request POST...

4CVSS4.6AI score0.00654EPSS
SaveExploits1
Huntr
Huntr
•added 2022/02/19 5:12 p.m.•27 views

Cross-Site Request Forgery (CSRF) to User Privilege Escalation

Description Pandora FMS v7.0NG.759 allows Cross-Site Request Forgery in Bulk operation User operation resulting in elevation of privilege to Administrator group. Detail Version: Pandora FMS v7.0NG.759 - OUM 759 - MR 51 Affected components: Console Proof of Concept Affected Endpoint: POST...

6.8CVSS1.7AI score0.00272EPSS
SaveExploits0References1
Huntr
Huntr
•added 2022/02/16 3:54 p.m.•27 views

Cross-site Scripting (XSS) - Stored

Description The application does not escape special characters before output to FE, lead to stored XSS. Proof of Concept 1. Go to Content Menus or Content Items. 2. Add an Item with the title set to XSS payload, e.g: Title" 3. Save Draft or Publish Go to View/Preview Draft. XSS will be triggered...

4.3CVSS0.3AI score0.0074EPSS
SaveExploits1
Huntr
Huntr
•added 2022/02/10 3:54 p.m.•27 views

Improper Privilege Management in snipe/snipe-it

Description Unprivilege user can create maintainance for asset Proof of Concept 1. Create regular user and set DENY to all permissions in asset models.\ 2. Login as the user and sent bellow request to create maintainance for asset await fetch"https://demo.snipeitapp.com/hardware/maintenances",...

6.5CVSS1AI score0.012EPSS
SaveExploits1
Huntr
Huntr
•added 2022/02/08 3:22 p.m.•27 views

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

Description There is a reflected XSS in creating and searching tag function . where any user can execute any malicious code results in the cookie stealing or Account takeover vulnerability Steps to Produce: Go to this particular URL URL Click on live edit , Now In the tag section and select the...

3.5CVSS0.3AI score0.00903EPSS
SaveExploits1
Huntr
Huntr
•added 2022/01/27 5:04 a.m.•27 views

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

Description Stored XSS occurs when changing a user's profile Proof of Concept txt XSS POC : "alertdocument.domain 1. Open the https://demo.microweber.org/demo/admin 2. Go to "Users" "Edit profile" 3. Change the value of "First Name" to XSS PoC 4. Refresh Impact Through this vulnerability, an...

3.5CVSS0.4AI score0.00631EPSS
SaveExploits1
Huntr
Huntr
•added 2022/01/24 8:36 a.m.•27 views

Exposure of Sensitive Information to an Unauthorized Actor in httpie/httpie

Description All cookies saved to session storage are supercookies. Proof of Concept in /etc/hosts 127.0.0.1 host1.example.com 127.0.0.1 host2.example.net headers-helper.rpy; run with twist web --resource-script= and it'll run on 8080 from pprint import pformat from twisted.web.resource import...

5CVSS4.5AI score0.01292EPSS
SaveExploits1
Huntr
Huntr
•added 2022/01/22 2:40 p.m.•27 views

in radareorg/radare2

Description This vulnerability is of out-of-bound read which accesses the address beyond/past the buffer. The bug exists in latest stable release radare2-5.5.4 and lastest master branch ed2030b79e68986bf04f3a6279463ab989fe400f, updated in Jan 22, 2022. Specifically, the vulnerable code and the...

5.8CVSS6.4AI score0.00958EPSS
SaveExploits1References1
Huntr
Huntr
•added 2022/01/19 7:49 p.m.•27 views

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

Description Pimcore settings module is vulnerable to stored cross site scripting Proof of Concept 1 . Login to dev demo account. https://10.x-dev.pimcore.fun/ 2 . Goto settings --data objects --Add a new class -- add payload in icon field 3 . Click save and close and open that class alert will...

3.5CVSS0.1AI score0.00619EPSS
SaveExploits1
Huntr
Huntr
•added 2022/01/19 3:04 a.m.•27 views

None in bobthecow/mustache.php

Description In Mustache.php v2.0.0 through v2.14.0, Sections tag can lead to arbitrary php code execution even if strictcallables is true when section value is controllable. Proof of Concept './cache', 'strictcallables'=true ; echo $m-render' repo phpinfo;// No repos : / repo phpinfo;// ',...

6.5CVSS2.4AI score0.00691EPSS
SaveExploits1
Huntr
Huntr
•added 2022/01/08 12:10 a.m.•27 views

Insecure Temporary File in horovod/horovod

Description horovod package is using the deprecated function tempfile.mktemp which is not secure. Because a different process may create a file with this name in the time between the call to mktemp and the subsequent attempt to create the file by the first process. Impact Availability will get...

5CVSS1.7AI score0.00959EPSS
SaveExploits0
Huntr
Huntr
•added 2021/12/13 5:57 p.m.•27 views

Cross-site Scripting (XSS) - Stored in yetiforcecompany/yetiforcecrm

Description I found file upload XSS, Stored Cross-Site Scripting XSS vulnerability due to the lack of content validation and output encoding. Proof of Concept 1. login and navigate to https://gitstable.yetiforce.com/index.php?module=Users&view=PreferenceEdit&record=5 2. Layout photo Add file. 3...

3.5CVSS5.3AI score0.00456EPSS
SaveExploits1
Huntr
Huntr
•added 2021/12/11 3:45 p.m.•27 views

Improper Access Control in bookstackapp/bookstack

Description A logged-in user with no privileges OR guest user if public access enabled can access the /search/users/select AJAX endpoint meant for admins to manage audit logs, to dump all usernames existing in the Bookstack database. This can also be used to harvest email belonging to a user...

7.5CVSS7.6AI score0.26893EPSS
SaveExploits1
Total number of security vulnerabilities4084