Password is randomized on each load. Author has conveniently left a debugger statement in the code.
Part of me wishes the author just took common passwords from rockyou.txt so that they're at least guessable. Though random really does add to the absurdity.
Passwordle
21–30 of 263 posts
Re: Passwordle
#22Password is randomized on each load. Author has conveniently left a debugger statement in the code.
I did not know about the debugger statement until I read your comment: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe... . Thank you.
Re: Passwordle
#23nice, though I'm very disappointed the answer wasn't hunter2
Yeah same. From the source code, the answer is a random 14-character string, generated on load: function randomPassword() { let letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; let digits = '0123456789'; let punctuation = '!"#$%&\'()*+,-./:; ?@[\\]^_`{|}~'; let s = letters.repeat(7) + digits.repeat(4) + punctuation.repeat(3); let length = 14; let res = Array.from({length}, (() => s[randomInt(s.length…
https://rsk0315.github.io/playground/passwordle.html?passwor...
Or the way bikeshed.com lets you configure the color with the domain name, like:
Then they could monetize it by selling gullible suckers NFTs of urls pointing to Passwordle games of their passwords.
Re: Passwordle
#24Re: Passwordle
#25What exactly is this showing ?
Re: Passwordle
#26Re: Passwordle
#27What exactly is this showing ?
Re: Passwordle
#28Re: Passwordle
#29Earlier quoted context omitted.
I did not know about the debugger statement until I read your comment: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe... . Thank you.
Massively useful! I also recently learned you can right click a line of code in the chrome debugger to add a logpoint - i.e. "log the value of this expression when you reach this point in the code" - so I don't have to manually add console.log statements. Basically the reverse of discovering the debugger statement!
Thank you, this is the best thing I've learned in 2022.
Re: Passwordle
#30Password is randomized on each load. Author has conveniently left a debugger statement in the code.
Part of me wishes the author just took common passwords from rockyou.txt so that they're at least guessable. Though random really does add to the absurdity.