Live data from Hacker News

Passwordle

rsk0315.github.io

11–20 of 263 posts

Re: Passwordle

#15

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.

Re: Passwordle

#16
post #3

nice, 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)])).join('');
        debugger; // どうぞ
        return res;
    }
Post reply on HN