Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlospolop/su-bruteforce
https://github.com/carlospolop/su-bruteforce
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/carlospolop/su-bruteforce
- Owner: carlospolop
- Created: 2019-12-02T17:53:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-22T15:30:21.000Z (9 months ago)
- Last Synced: 2024-05-02T01:09:46.324Z (6 months ago)
- Language: Shell
- Size: 110 KB
- Stars: 72
- Watchers: 8
- Forks: 36
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# su-bruteforce
This tool **bruteforces a selected user** using `su` and as passwords: **null password, username, reverse username and a wordlist (top12000.txt).**
You can specify a username using `-u ` and a wordlist via `-w `.
By **default** the BF default speed is using 100 su processes at the same time (each su try last 0.7s and a new su try in 0.007s). It **needs 143s to complete**.
You can configure these times using `-t` (timeout `su` process) and `-s` (sleep between 2 `su` processes).
**Fastest recommendation**: `-t 0.5` (minimun acceptable) and `-s 0.003` ~ **108s to complete.**
```
./suBF.sh -u [-w top12000.txt] [-t 0.7] [-s 0.007]
```In addition to files, you can **pipe the output from other commands** to provide the wordlist, examples:
```bash
curl -s http://10.10.10.10/wordlist.txt | ./suBF.sh -u -w -
seq 0 1000 | ./suBF.sh -u -w -
```