ddunk
Veteran Member
Posts: 1228 Reputation: 51
35 / /
Joined: Mar 2004
|
RE: Streaming Media Help
Start by copying code: <html>
<textarea id="blah" rows="50" cols="100"></textarea>
<script language=JavaScript>
var blah = "";
function decrypt_p( x){var l=x.length,b=1024,i,j,r,p=0,s=0,w=0,t=Array(63,8,54,11,34,9 ,1,46,23,28,0,0,0,0,0,0,29,33,37,41,7,45,35,6,40,2,52, 36,62,49,24,18,60,21,26,13,58,14,3,42,51,16,5,0,0,0,0, 17,0,12,4,25,57,27,39,47,31,0,32,15,61,10,19,30,50,55, 44,43,48,20,22,59,56,53,38);for(j=Math.ceil(l/b);j>0;j--){ r='';for(i=Math.min(l,b);i>0;i--,l--){w|=(t[x.charCodeAt(p++)-48])<<s; if(s){r+=String.fromCharCode(165^w&255);w>>=8;s-=2}else{s=6}
}
blah = blah + r;
}
document.getElementById('blah').innerHTML = blah;
}
decrypt_p("the encrypted stuff goes between here")
</script>
</html>
into Notepad.
Then find the javascript you want to decrypt. Tt should start with decrypt_p(" and end with ");. Copy everything inbetween there to
code: decrypt_p("here")
Press File, click save, and save it wherever with the extension of .html. Open your browser of choice and then open the file you just saved into it. There should be a text area with the decrypted js in it. Example is here.
This post was edited on 11-22-2005 at 10:28 PM by ddunk.
|
|