0

I am decompiling a google chrome extension, because it seems suspicious. The extension was written in javascript, but can somebody tell me exactly what symbols like this are, and how to "translate" them back to normal strings?

"\x63\x68\x61\x72\x43\x6F\x64\x65"

Jsbin of the full file: http://jsbin.com/OnEviRa/1/

1 Answers1

0

the code seems to be using an array to hide all the strings, and they seemed to have changed variable names to hide their meaning.

I can't give you a good automated way to change variable names to something meaningful, but the strings are easy.

you can evaluate the array, then use a regex to replace all occurences of _0x13d2[number] with "evaluated result".

here is a fiddle of it

GuiDocs
  • 722
  • 1
  • 6
  • 12