I have found this in a JavaScript source code file:
function getElementsByClass(_0x62cbx2, _0x62cbx3, _0x62cbx4) {...
How can I translate _0x62cbx2, _0x62cbx3, _0x62cbx4 in the correct variable names?
|
I have found this in a JavaScript source code file:
How can I translate |
||||
| show 1 more comment |
|
You cannot restore original variable names after code was obfuscated. But you can reverse engineer their meaning, if you have time and desire to do so. |
|||
|
|
_0x62cbx2is perfectly valid - not less proper thanclassName,arg1orconfusingName. Not the best name for a child, given, but works for generated code. – Kobi Sep 18 '11 at 10:05_0x62cbx2is just a sequence of characters which form a valid identifier in JS. There is nothing special about it. – Felix Kling Sep 18 '11 at 10:18