summaryrefslogtreecommitdiffstats
path: root/Debian.md
blob: 68f44b845e9a955113479c3b44c9dc27fb614a9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Extras

## ParrotOS

```bash
# Setup extra PenTools
## SecLists
git clone https://github.com/danielmiessler/SecLists.git ~/SecLists
sudo mv ~/SecLists /usr/share/

## Arsenal
git clone https://github.com/Orange-Cyberdefense/arsenal.git ~/arsenal
sudo mv ~/arsenal /usr/share/
cd /usr/share/arsenal/
python3 -m pip install -r requirements.txt

## searchsploit
sudo git clone https://github.com/offensive-security/exploitdb.git /opt/exploitdb
sudo ln -sf /opt/exploitdb/searchsploit /usr/local/bin/searchsploit
cp -n /opt/exploitdb/.searchsploit_rc ~/

## ffuf
sudo apt install ffuf -y

## dotdotpwn.pl
git clone https://github.com/wireghoul/dotdotpwn.git ~/dotdotpwn
sudo mv ~/dotdotpwn /opt/
```