-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword-BruteForce
More file actions
39 lines (33 loc) · 1.85 KB
/
password-BruteForce
File metadata and controls
39 lines (33 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import time
passw = input("Please select a password: ")
wordlist = [
"123456", "password", "123456789", "12345678", "12345", "1234567", "qwerty",
"abc123", "password1", "123123", "admin", "welcome", "letmein", "iloveyou",
"sunshine", "football", "monkey", "charlie", "shadow", "1234", "baseball",
"donald", "dragon", "trustno1", "master", "login", "qwerty123", "starwars",
"654321", "superman", "hello", "freedom", "whatever", "princess", "passw0rd",
"ninja", "1q2w3e4r", "hunter", "zaq12wsx", "123qwe", "batman", "jordan23",
"password123", "test123", "passwort", "geheim", "password1", "iloveyou2",
"987654", "121212", "qwertyuiop", "asdfghjkl", "zxcvbnm", "password!23", "123",
"football1", "monkey123", "sunflower", "starwars123", "123abc", "admin123",
"welcome1", "qazwsx", "letmein123", "12341234", "abcd1234", "12344321",
"987654321", "q1w2e3r4", "0987654321", "mypass", "securepassword", "ihateyou",
"password321", "happyday", "pass123", "qwert", "password01", "hello123",
"test1234", "98765", "testing", "iloveyou123", "abcd123", "qwe123", "secure123",
"hunter2", "batman123", "harleyquinn", "pass1234", "rockyou", "starwarsfan",
"ferrari", "mustang", "silverado", "love123", "baseball123", "peanutbutter",
"cocacola", "pepsi123", "guitar", "soccer", "skittles", "kitkat", "scoobydoo",
"pacman", "mario", "pokemon", "pikachu", "apple123", "banana", "orange123",
"cheese123", "sunnyday", "redbull", "coke123", "footballer", "snoopy", "garfield",
"tweety", "samsung", "iphone123", "galaxy123", "nokia321", "HusseinAyri"
]
def brute_force_attack():
for word in wordlist:
print(word)
if word == passw:
print(f"Passwort gefunden: {word}")
return word
time.sleep(0.05)
print("Kein Passwort aus der Liste hat gepasst.")
return None
brute_force_attack()