SPAM ARMOR
My www.stopspam-smelltheroses.com Website will be receiving an upgrade soon - I have some "rot-13" and this new scriptie to add... Plus I desire a new font and text layout. Anyhoo - check out the SPAM-ARMOR I found at HOLYHELL.net! LOL
See it in action/Download the Code
//holyhell.net SPAM-ARMORING SCRIPT
//AUTHOR: Daniel Teichman
//EDITOR: Robin-Ann [blog.robin-ann.net]
//feel free to use this as you wish provided that you keep this header
//radeobfuscated:001=a,002=b; 100=A,101=B; 200=0,201=1; xx=end letter/word/number
var alphaLower = "abcdefghijklmnopqrstuvwxyz";
var alphaCaps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
function decode(data) {
newdata = "";
for (i = 0; i < data.length; i += 3) {
thisLetter = data.substring(i, i + 3);
if (thisLetter.charAt(0) == 0) newdata = newdata + alphaLower.charAt(thisLetter.substring(1,3));
else if (thisLetter.charAt(0) == 1) newdata = newdata + alphaCaps.charAt(thisLetter.substring(1,3));
else newdata = newdata + thisLetter.substring(2,3);
}
while (newdata.indexOf("\\n") >= 0) {
newdata = newdata.replace("\\n", "\n"); }
return newdata;
}
</script>
<script>document.write(decode('117014001008013100013013xx'));</script>


0 Comments:
Post a Comment
Links to this post:
Create a Link
<< Home