Untitled
unknown
plain_text
3 years ago
323 B
11
Indexable
function BruteForceAttack (target) {
const usernames = ["jsmith", "bob", "doe", "admin"];
const passwords = ["1234", "password", "5678", "supersecret"];
for (let i = 0; i < usernames.length; i++) {
for (let j = 0; j < passwords.length; j++) {
let username = usernames[i];
let password = passwords[j];Editor is loading...