P
P
premo962018-04-06 09:25:47
JavaScript
premo96, 2018-04-06 09:25:47

How to decode Javascript code?

Hello everyone, I can not decrypt this code. This is the most confusing code I've ever seen)
https://pastebin.com/6gpds421

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Sokolov, 2018-04-06
@sergiks

Often they encrypt the text of the JS code in order to decrypt it when executed and immediately execute it via eval() , where the code is passed to the text for execution.
First of all, try to find this eval in the code, and knowing that the text of the decrypted code will be passed to it, try to get it. For example, replace eval(code)with console.log(code)
Received code text and run it through the autoformatter to make it more readable. In your case, you get something like:

editor screenshot
5ac71a3a4fadf373076807.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question