I hereby claim:
- I am ramuta on github.
- I am ramuta (https://keybase.io/ramuta) on keybase.
- I have a public key ASDMN0J7lQ3LYIKNJDKWBEkvmKufS28UxltrVVxxC1pzKgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# 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: |
# Simple directory scanner written in Python (needs requests library) | |
# Author: Matej Ramuta | |
# Usage: python reqscanner.py domain.com wordlist.txt | |
# domain.com must not end with a slash! | |
import requests | |
import sys | |
domain = str(sys.argv[1]).replace("http://", "").replace("https://", "") | |
wordfile = sys.argv[2] |
Check the volume name of your USB stick:
diskutil list # check for something like /dev/disk2
Then erase what you have on the stick currently:
diskutil eraseDisk FAT32 LINUX /dev/<DISK>
Unmount the disk: