Web - Client
Web - Client
<script type="text/javascript">
var pass = unescape("unescape%28%22String.fromCharCode%2528104%252C68%252C117%252C102%252C106%252C100%252C107%252C105%252C49%252C53%252C54%2529%22%29");
</script>
je ne trouve pas comment faire ca me rends fou
Web - Client
It looks like you’re trying to decode a string that’s been double-encoded. Let’s break it down step by step :
The outer unescape function decodes the string unescape%28%22String.fromCharCode%2528104%252C68%252C117%252C102%252C106%252C100%252C107%252C105%252C49%252C53%252C54%2529%22%29.
This results in unescape("String.fromCharCode%28104%2C68%2C117%2C102%2C106%2C100%2C107%2C105%2C49%2C53%2C54%29").
The inner unescape function decodes the string String.fromCharCode%28104%2C68%2C117%2C102%2C106%2C100%2C107%2C105%2C49%2C53%2C54%29.
This results in String.fromCharCode(104,68,117,102,106,100,107,105,49,53,54).
Finally, String.fromCharCode converts the character codes into a string.
Let’s decode it :
Python
decoded_string = ’’.join([chr(code) for code in [104, 68, 117, 102, 106, 100, 107, 105, 49, 53, 54]])
print(decoded_string)