|
|
|
|
|
by torgard
1578 days ago
|
|
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;
}
|
|
https://rsk0315.github.io/playground/passwordle.html?passwor...
Or the way bikeshed.com lets you configure the color with the domain name, like:
https://bisque.bikeshed.com/
Then they could monetize it by selling gullible suckers NFTs of urls pointing to Passwordle games of their passwords.