Skip to content

Instantly share code, notes, and snippets.

View IAmThe2ndHuman's full-sized avatar
👍
real

Koray Öztürkler IAmThe2ndHuman

👍
real
View GitHub Profile
@raphaelvallat
raphaelvallat / bruteforce.py
Last active June 24, 2024 15:51
Password brute-force in Python
"""
Password brute-force algorithm.
List of most probable passwords and english names can be found, respectively, at:
- https://github.com/danielmiessler/SecLists/blob/master/Passwords/probable-v2-top12000.txt
- https://github.com/dominictarr/random-name/blob/master/middle-names.txt
Author: Raphael Vallat
Date: May 2018
Python 3