segosa
Community's Choice
Posts: 1407 Reputation: 92
Joined: Feb 2003
|
RE: Streaming Media Help
Stick this in a .html file:
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>
If you look at the source code of each of the website's pages you will see something that looks like this:
code: decrypt_p("ZzCyGhSXQD@A_X@yiFdA_V9q_sxXbkSMvePya8@JD7dscO141LTsVVlpGD[...]X@yiFdA_V9q_sxXbkSMveP");
Basically take that line and replace the one in your html file with it. Then open the page in your browser and inside the textarea should be the decrypted source code.
If you're having any problems, let me know, I don't think I explained it that clearly.
The previous sentence is false. The following sentence is true.
|
|