Javascript - Native code

The website prompts us to enter a password.

Let's check the source code.

If we replace the last pair of brackets, to toString(), we can see the deobfuscated Javascript.

function anonymous() 
{
	a=prompt('Entrez le mot de passe');
	if(a=='toto123lol'){
		alert('bravo');
	}else{
		alert('fail...');
	}
}

Password

toto123lol

Last updated

Was this helpful?