Skip to content

Instantly share code, notes, and snippets.

@JavaScript-Packer
JavaScript-Packer / HTML-character-code-encoder.htm
Created December 23, 2015 23:53
See the HTML coding used to hide all the JavaScript code, titles, and other data in this simple HTML code? Well it is the code to run to encode your own text to HTML code.
<textarea title="&#69;&#110;&#99;&#111;&#100;&#101;&#32;&#101;&#109;&#97;&#105;&#108;&#47;&#108;&#105;&#110;&#107;&#115;&#32;&#40;&#104;&#101;&#114;&#101;&#41;&#32;&#98;&#101;&#102;&#111;&#114;&#101;&#32;&#112;&#111;&#115;&#116;&#105;&#110;&#103;&#44;&#32;&#98;&#105;&#112;&#97;&#115;&#115;&#32;&#115;&#101;&#99;&#117;&#114;&#105;&#116;&#121;&#32;&#99;&#104;&#101;&#99;&#107;&#115;&#32;&#111;&#110;&#32;&#109;&#111;&#115;&#116;&#32;&#100;&#97;&#116;&#105;&#110;&#103;&#32;&#115;&#105;&#116;&#101;&#115;&#32;&#116;&#111;&#32;&#97;&#108;&#108;&#111;&#119;&#32;&#121;&#111;&#117;&#32;&#116;&#111;&#32;&#112;&#111;&#115;&#116;&#32;&#108;&#105;&#110;&#107;&#115;&#32;&#97;&#110;&#100;&#32;&#101;&#109;&#97;&#105;&#108;&#32;&#97;&#100;&#100;&#114;&#101;&#115;&#115;&#32;&#116;&#111;&#32;&#108;&#105;&#118;&#101;&#32;&#99;&#104;&#97;&#116;&#115;&#44;&#32;&#112;&#114;&#111;&#102;&#105;&#108;&#101;&#115;&#32;&#97;&#110;&#100;&#32;&#109;&#101;&#115;&#115;&#97;&#103;&#105;&#110;&#103;&#32;&#115;&#101;&#114;&#118;&#105;&#99;&#101;&#
@JavaScript-Packer
JavaScript-Packer / obfuscation.js
Created April 29, 2015 03:58
Watch me do (step by step) a basic manual obfuscation of basic JavaScript source code
//using encoder online tools @ http://www.scriptcompress.com/30-encoders-in-1.htm
function hex(Δ){return Δ.replace(/./g,function(Δ){return'\\x'+Δ.charCodeAt(0).toString(16)})};
alert(hex('ScripCompress.com'));
//lets bracket notation stuff
function hex(Δ){return Δ['replace'](/./g,function(Δ){return'\\x'+Δ['charCodeAt'](0)['toString'](16)})};
alert(hex('ScripCompress.com'));
@rakeshpai
rakeshpai / better-self-exec-anon-function-compressed.js
Created January 9, 2012 09:07
Better anonymous function compressed with Closure Compiler
// Note: Line breaks added for clarity
(function(a, b, c) {
/*
Your code here
Calls to window.whatever will become a.whatever
Similarly, document.whatever will be b.whatever, and c will be undefined
*/
}(window, document))
@aemkei
aemkei / LICENSE.txt
Created August 5, 2011 10:24 — forked from 140bytes/LICENSE.txt
rotate3D - 140byt.es
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE