Javascript - Obfuscation 1

Let's check the source code with CTRL + U.

We can see that the password is Hex-encoded.

We can decode it using the decodeURI function.

> decodeURI("%63%70%61%73%62%69%65%6e%64%75%72%70%61%73%73%77%6f%72%64")
<- 'cpasbiendurpassword'

Let's enter the decoded password.

Password

cpasbiendurpassword

Last updated

Was this helpful?