Closed aemkei closed 6 years ago
Okay, looks like the postfix operation is not working without variables.
Eg:
A = "";
B = A[A++]
will result in
A = '';
B = ''[''++];
which is not working. It should assign undefined
to B, but is resulting in an error:
Invalid left-hand side expression in postfix operation
nice one! thanks!
That was fast. 🚀 Thank you!
Love this project! Finally, a way to deobfuscate JSFuck 👍
But not all my code gets cleaned up. Eg test this one:
It will to an
alert(1)
, too – but the resulting code can't be evaluated.PS: Taken from http://aem1k.com/