Double encoding javascript

Back to articles

hackvertor

Author:

Gareth Heyes

@hackvertor

Published: Sat, 10 May 2008 10:23:25 GMT

Updated: Sat, 22 Mar 2025 15:38:10 GMT

I found a nice variation which allows multiple types of encoding without performing eval twice on the string. The code works using the Script function and because of this the code is rewritten by the javascript engine and converts the unicode into standard text.

First a base of unicode is used first "\u0061\u006c\u0065\u0072\u0074\u0028\u0031\u0029" then each section of the is encoded with hex or octal. The final result can be viewed below:-

<pre lang="html"> alert(Script('\x5c\x7500\66\61\134\165\6006c\x5c\x75\x30\x30\x36\x35 \134\165\60\60\67\62\x5c\x75\x30\x30\x37\x34\x5c\x75\x30\x30\x32 \x38\x5c\x75\x30\x30\x33\x31\x5c\x75\x30\x30\x32\x39')) </pre>

The code can be executed like this:-

<pre lang="html"> Script('\x5c\x7500\66\61\134\165\6006c\x5c\x75\x30\x30\x36\x35 \134\165\60\60\67\62\x5c\x75\x30\x30\x37\x34\x5c\x75\x30\x30\x32 \x38\x5c\x75\x30\x30\x33\x31\x5c\x75\x30\x30\x32\x39')() </pre>

Back to articles