Scripts to clone in a pendrive for pentesting purpose.
Some bash/powershell/python scripts to store inside a USB and execute once you gain physic access to a machine.
- Powershell: To be able to execute powershell scripts in Windows machines you need first to execute the following command in a powershell with administration privileges which changes the Execution Policy
Set-ExecutionPolicy RemoteSigned
- bash: To execute bash scripts in Linux machines you probably need to give execution permission to the scripts.
chomd u+x <script.sh>
- python: To execute python scripts you need to check if python is installed on the target machine first. You can do that with the following command from a terminal which will print the current version of you python installation.
python3 --version
HackPack_USB
.
├── Linux
│ └── scripts
| ├── bashdoor.sh
│ ├── enumerate-process.sh
│ ├── enumerate-system.sh
│ ├── network-monitor.sh
│ ├── network-scan.sh
│ └── network-wap-scan.sh
└── Windows
This directory contains some useful bash scripts.
Script to deploy simple and easily detectable backdoors using different techniques.
Simple process monitor that inspect all executed processess during a period of time.
Script to automatically enumerate system information and copy users files from /home folder to ./LOOT folder.
Script to inspect network devices. This script allow us to put devices in two different groups, one group for known devices and another group for unknown devices so we can figure when a new device (unknown) is connected to our network
Script to simply enumerate active hosts in the network specified. This script uses different tools commonly used in Linux distribution like ping, arping, etc.
Script to scan near Access Points using a wireless interface.