I am such a leet haxor

peepsalot said:
found the obfuscator, good find
http://dean.edwards.name/packer/

Yeah, it's a pretty nice thing to use when you want to keep your code small.

BTW all mine did was parse the entire web page (!) and replace any instance of peepsalot with JavaScriptJackass. That's why I disabled it - msprotege.com pages are WAY too big to do any kind of full-text search and replace.

Javascript is fun... and the URL should be google.com/notfunny because that's just kind of busted.

HTML:
function fixpage(){
   var list=new Array();
   list[0]="peepsalot^JavaScriptJackass";
   var j,k,find,item,page,repl;
   for(var i=0;i<list.length;i++){
      item=list[i].split("^");
      find=item[0];
      repl=item[1];
      page=document.body.innerHTML;
      while(page.indexOf(find)>=0){
         var j=page.indexOf(find);
         var k=find.length;
         page=page.substr(0,j)+repl+page.substr(j+k);
         document.body.innerHTML=page
      }
   }
}
window.onload=setTimeout("fixpage()",2500);
 
Last edited:

New Threads and Articles

Back