mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-07-03 02:18:20 +02:00
Compare commits
7 Commits
d61d3c9deb
...
v1.3
Author | SHA1 | Date | |
---|---|---|---|
1a26e91d41 | |||
8284e9d121 | |||
ed3e358fc1 | |||
0270d670f5 | |||
5cd03e028c | |||
4af1be995d | |||
e640177faa |
28
pentools.sh
28
pentools.sh
@ -13,7 +13,7 @@ wordlist() {
|
||||
mkdir $TARGET/wordlist >/dev/null 2>&1
|
||||
|
||||
printf ${GREEN}"[+] rockyou.txt\n"
|
||||
curl https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt > $TARGET/wordlist/rockyou.txt 2>&1
|
||||
wget -q -O - https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt > $TARGET/wordlist/rockyou.txt 2>&1
|
||||
|
||||
printf ${GREEN}"[+] common.txt\n"
|
||||
curl http://ffuf.me/wordlist/common.txt > $TARGET/wordlist/common.txt 2>&1
|
||||
@ -54,35 +54,35 @@ software() {
|
||||
printf ${GREEN}"[+] Chrome Extension: FoxyProxy\n"
|
||||
sudo touch /opt/google/chrome/extensions/gcknhkkoolaabfmlnjonogaaifnjlfnp.json
|
||||
sudo chmod 646 /opt/google/chrome/extensions/gcknhkkoolaabfmlnjonogaaifnjlfnp.json
|
||||
sudo echo '{
|
||||
echo '{
|
||||
"external_update_url": "https://clients2.google.com/service/update2/crx"
|
||||
}' > /opt/google/chrome/extensions/gcknhkkoolaabfmlnjonogaaifnjlfnp.json
|
||||
|
||||
printf ${GREEN}"[+] Chrome Extension: Dark Reader\n"
|
||||
sudo touch /opt/google/chrome/extensions/eimadpbcbfnmbkopoojfekhnkhdbieeh.json
|
||||
sudo chmod 646 /opt/google/chrome/extensions/eimadpbcbfnmbkopoojfekhnkhdbieeh.json
|
||||
sudo echo '{
|
||||
echo '{
|
||||
"external_update_url": "https://clients2.google.com/service/update2/crx"
|
||||
}' > /opt/google/chrome/extensions/eimadpbcbfnmbkopoojfekhnkhdbieeh.json
|
||||
|
||||
printf ${GREEN}"[+] Chrome Extension: WappAnalyser\n"
|
||||
sudo touch /opt/google/chrome/extensions/gppongmhjkpfnbhagpmjfkannfbllamg.json
|
||||
sudo chmod 646 /opt/google/chrome/extensions/gppongmhjkpfnbhagpmjfkannfbllamg.json
|
||||
sudo echo '{
|
||||
echo '{
|
||||
"external_update_url": "https://clients2.google.com/service/update2/crx"
|
||||
}' > /opt/google/chrome/extensions/gppongmhjkpfnbhagpmjfkannfbllamg.json
|
||||
|
||||
printf ${GREEN}"[+] Chrome Extension: Hack-Tools\n"
|
||||
sudo touch /opt/google/chrome/extensions/cmbndhnoonmghfofefkcccljbkdpamhi.json
|
||||
sudo chmod 646 /opt/google/chrome/extensions/cmbndhnoonmghfofefkcccljbkdpamhi.json
|
||||
sudo echo '{
|
||||
echo '{
|
||||
"external_update_url": "https://clients2.google.com/service/update2/crx"
|
||||
}' > /opt/google/chrome/extensions/cmbndhnoonmghfofefkcccljbkdpamhi.json
|
||||
|
||||
printf ${GREEN}"[+] Chrome Extension: Bitwarden\n"
|
||||
sudo touch /opt/google/chrome/extensions/nngceckbapebfimnlniiiahkandclblb.json
|
||||
sudo chmod 646 /opt/google/chrome/extensions/nngceckbapebfimnlniiiahkandclblb.json
|
||||
sudo echo '{
|
||||
echo '{
|
||||
"external_update_url": "https://clients2.google.com/service/update2/crx"
|
||||
}' > /opt/google/chrome/extensions/nngceckbapebfimnlniiiahkandclblb.json
|
||||
|
||||
@ -101,7 +101,7 @@ software() {
|
||||
sudo tar -C /usr/local -xzf go1.20.1.linux-amd64.tar.gz >/dev/null 2>&1
|
||||
rm go1.20.1.linux-amd64.tar.gz
|
||||
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile
|
||||
source ~/.profile
|
||||
source $HOME/.profile
|
||||
fi
|
||||
|
||||
if ! command -v ffuf &> /dev/null; then
|
||||
@ -153,6 +153,12 @@ tools() {
|
||||
|
||||
printf ${GREEN}"[+] mimikatz.exe\n"
|
||||
wget -q -O - https://github.com/ParrotSec/mimikatz/blob/master/Win32/mimikatz.exe > $TARGET/tools/mimikatz.exe 2>&1
|
||||
|
||||
printf ${GREEN}"[+] Sherlock.ps1\n"
|
||||
curl https://raw.githubusercontent.com/rasta-mouse/Sherlock/master/Sherlock.ps1 > $TARGET/tools/Sherlock.ps1 2>&1
|
||||
|
||||
printf ${GREEN}"[+] laps.py\n"
|
||||
curl https://raw.githubusercontent.com/n00py/LAPSDumper/main/laps.py > $TARGET/tools/laps.py 2>&1
|
||||
}
|
||||
|
||||
binary() {
|
||||
@ -162,6 +168,10 @@ binary() {
|
||||
printf ${GREEN}"[+] nmap\n"
|
||||
wget -q -O - https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/nmap > $TARGET/binary/nmap
|
||||
chmod +x $TARGET/binary/nmap
|
||||
|
||||
printf ${GREEN}"[+] pspy64\n"
|
||||
wget -q -O - https://github.com/DominicBreuker/pspy/releases/download/v1.2.1/pspy64 > $TARGET/binary/pspy64
|
||||
chmod +x $TARGET/binary/pspy64
|
||||
}
|
||||
|
||||
aliascmd() {
|
||||
@ -195,7 +205,7 @@ fi}' >> ~/.zshrc
|
||||
echo "alias vpn='sudo openvpn '" >> ~/.bash_aliases
|
||||
|
||||
echo "# https://github.com/d3vyce/pentools" >> ~/.bash_aliases
|
||||
source ~/.bash_aliases
|
||||
source $HOME/.zshrc
|
||||
}
|
||||
|
||||
printf "${YELLOW}
|
||||
@ -207,7 +217,7 @@ printf "${YELLOW}
|
||||
/_/ \___/_/ /_/_/ \____/\____/_/____/
|
||||
|
||||
---------------------------------------------
|
||||
v1.2 - ${ITALIC}https://github.com/d3vyce/pentools \n
|
||||
v1.3 - ${ITALIC}https://github.com/d3vyce/pentools \n
|
||||
"
|
||||
|
||||
printf ${YELLOW}"[*]${BLUE} What do you want to install?\n"
|
||||
|
Reference in New Issue
Block a user