2023-02-01 10:38:14 +01:00
|
|
|
# fuckSU
|
|
|
|
|
fuckSU is a program to bruteforce local users passwords through su.
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
git clone https://code.lacashita.com/sml/fucksu
|
|
|
|
|
./fucksu
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If you prefer, you can compile the code:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
git clone https://code.lacashita.com/sml/fucksu
|
|
|
|
|
go build fucksu.go
|
2023-02-19 19:03:19 +01:00
|
|
|
./fucksu
|
2023-02-01 10:38:14 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
|
|
To buteforce one user:
|
|
|
|
|
```sh
|
2023-02-01 11:06:15 +01:00
|
|
|
fucksu -w rockyou.txt -u hacker
|
2023-02-01 10:38:14 +01:00
|
|
|
```
|
|
|
|
|
To bruteforce one user using 5 threads:
|
|
|
|
|
```sh
|
2023-02-01 11:06:15 +01:00
|
|
|
fucksu -w rockyou.txt -u hacker -t 5
|
2023-02-01 10:38:14 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# Notes
|
|
|
|
|
This program has been built to play with Go language.
|