Hello , Someone doing cheat on my toplist and he was protect html codes ... Can we Encode it ? I need to unlock his codes... His Protected Page :
If you have perl installed, do the following. Save that material to a file named "junk.html" Write a small perl script called reveal.pl Run the script and view the contents of the file named "revealed.html" This is the script: $infile = "junk.html"; $outfile = "revealed.html"; open(INFILE, "$infile"); if(!INFILE) { return "cannot open $infile"; } if(INFILE) { my @content = <INFILE>; $theText = join( "", @content); } close(INFILE); while ( $theText =~ m/([=\%\&]([A-Za-z0-9]{2}))/g ) { my $to = hex($2); $to = chr($to); if($2 ne "01") { $theText =~ s/[=\%]$2/$to/g; } } open(OUTFILE, ">$outfile"); if(!OUTFILE) { return "cannot create $outfile"; } print OUTFILE $theText; close(OUTFILE); Code (markup):