mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-07-03 10:28:20 +02:00
Compare commits
24 Commits
v1.3
...
4d7d537625
Author | SHA1 | Date | |
---|---|---|---|
4d7d537625 | |||
d56ba2432b | |||
034b0bf725 | |||
8064512e6a | |||
6f86da5a58 | |||
8a1387b9a0 | |||
3de4bcab1f | |||
901cd51ff4 | |||
c8e587ef48 | |||
f11ffe337f | |||
8ad487d77c | |||
bcb9145d5b | |||
92595c03a5 | |||
82c2f91490 | |||
26480cad16 | |||
5a0b979b28 | |||
1b0fe8fc01 | |||
43a549c1ea | |||
02194a66eb | |||
5a80546285 | |||
306f0b01ca | |||
4a722df494 | |||
ac7e898f8b | |||
4e67ec5a2b |
@ -1,14 +0,0 @@
|
||||
name: Shellcheck
|
||||
on: [push]
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up shellcheck
|
||||
run: |
|
||||
apt update
|
||||
apt install -y shellcheck
|
||||
- name: Analysing the code with shellcheck
|
||||
run: find . -type f -name "*.sh" | xargs shellcheck -S warning
|
@ -1,6 +1,6 @@
|
||||
# PenTools
|
||||
|
||||

|
||||

|
||||
|
||||
# Quick Start
|
||||
|
||||
|
29
pentools.sh
29
pentools.sh
@ -13,7 +13,7 @@ wordlist() {
|
||||
mkdir $TARGET/wordlist >/dev/null 2>&1
|
||||
|
||||
printf ${GREEN}"[+] rockyou.txt\n"
|
||||
wget -q -O - https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt > $TARGET/wordlist/rockyou.txt 2>&1
|
||||
curl 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
|
||||
echo '{
|
||||
sudo 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
|
||||
echo '{
|
||||
sudo 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
|
||||
echo '{
|
||||
sudo 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
|
||||
echo '{
|
||||
sudo 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
|
||||
echo '{
|
||||
sudo 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 $HOME/.profile
|
||||
source ~/.profile
|
||||
fi
|
||||
|
||||
if ! command -v ffuf &> /dev/null; then
|
||||
@ -109,7 +109,6 @@ software() {
|
||||
go install github.com/ffuf/ffuf@latest >/dev/null 2>&1
|
||||
else
|
||||
printf ${ITALIC_LIGHT_CYAN}"[~] ffuf is already installed, skipping...\n"
|
||||
|
||||
fi
|
||||
|
||||
if ! command -v chisel &> /dev/null; then
|
||||
@ -153,12 +152,6 @@ 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() {
|
||||
@ -168,10 +161,6 @@ 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() {
|
||||
@ -205,7 +194,7 @@ fi}' >> ~/.zshrc
|
||||
echo "alias vpn='sudo openvpn '" >> ~/.bash_aliases
|
||||
|
||||
echo "# https://github.com/d3vyce/pentools" >> ~/.bash_aliases
|
||||
source $HOME/.zshrc
|
||||
source ~/.bash_aliases
|
||||
}
|
||||
|
||||
printf "${YELLOW}
|
||||
@ -217,7 +206,7 @@ printf "${YELLOW}
|
||||
/_/ \___/_/ /_/_/ \____/\____/_/____/
|
||||
|
||||
---------------------------------------------
|
||||
v1.3 - ${ITALIC}https://github.com/d3vyce/pentools \n
|
||||
v1.2 - ${ITALIC}https://github.com/d3vyce/pentools \n
|
||||
"
|
||||
|
||||
printf ${YELLOW}"[*]${BLUE} What do you want to install?\n"
|
||||
|
Reference in New Issue
Block a user