Skip to content
Advertisement

I do not know how to de obfuscate this Javascript I found in my blogger template

I am unable to decrypt this script:

JavaScript

I attempted to use several services but was stopped by JSCompress, which displayed the following error:

Unexpected token: operator «&» (line: 1, col: 16)

Advertisement

Answer

The issue is that the code is not actual valid JavaScript as-is. It has a lot of HTML characters that have been replaced with HTML character codes (similar to being parsed with htmlspecialchars() in PHP). This does things like replace & with & or ' with ', which causes it to fail during deobfuscation.

Simply swapping back all of the special HTML character codes for their actual values allows it to be parsed/deobfuscated.

Fixed Code:

JavaScript

Deobfuscated Code:

JavaScript

UPDATE

Following up on an error commented by OP, it seems there is some sort of special parser for this JavaScript on the server (a similar problem to this post it seems). So in order to upload any updates, the code needs to have those special characters encoded again.

Below is a version that has been re-encoded (linked on CodePen due to character limit):

Encoded And Deobfuscasted

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement