Change wordlists paths

Signed-off-by: Hadi <hadi@example.com>
This commit is contained in:
Hadi
2026-05-04 14:11:38 +02:00
parent 4f64ccf706
commit 3e60ae5a35
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ Check for writable directories: you may be able to upload a webshell if FTP root
## Brute Force
```bash
hydra -l $user -P /usr/share/wordlists/rockyou.txt ftp://$IP
medusa -h $IP -u $user -P /usr/share/wordlists/rockyou.txt -M ftp
hydra -l $user -P ~/wordlists/rockyou.txt ftp://$IP
medusa -h $IP -u $user -P ~/wordlists/rockyou.txt -M ftp
```
Try default credentials first: `admin:admin`, `ftp:ftp`, `user:password`.
+2 -2
View File
@@ -45,8 +45,8 @@ Login with `user` / `password`. Session is fully interactive once authenticated.
## Brute Force
```bash
hydra -l $user -P /usr/share/wordlists/rockyou.txt telnet://$IP
medusa -h $IP -u $user -P /usr/share/wordlists/rockyou.txt -M telnet
hydra -l $user -P ~/wordlists/rockyou.txt telnet://$IP
medusa -h $IP -u $user -P ~/wordlists/rockyou.txt -M telnet
```
Try default credentials first. Routers and embedded devices commonly ship with `admin:admin`, `root:root`, or blank passwords.