This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Matej Ramuta | |
# How to use this script: | |
# 1. You need to have a wordlist file, something like rockyou.txt | |
# 2. Make sure you have Python 3 installed. Try this with "python --version" command. Also check "python3 --version" | |
# 3. Run the script like this: python sudo_brute_force.py passwords.txt | |
import os | |
import sys | |
if len(sys.argv) == 1: |