Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netspooky/gtfoplus
Linux Local Privesc Helper and Agent
https://github.com/netspooky/gtfoplus
Last synced: 3 months ago
JSON representation
Linux Local Privesc Helper and Agent
- Host: GitHub
- URL: https://github.com/netspooky/gtfoplus
- Owner: netspooky
- Created: 2018-10-25T22:39:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T19:50:47.000Z (almost 5 years ago)
- Last Synced: 2024-05-13T19:35:15.963Z (6 months ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 164
- Watchers: 5
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - netspooky/gtfoplus - Linux Local Privesc Helper and Agent (Python)
README
# GTFOPlus
GTFOPlus is a helper script that relies on the GTFOBins repo to identify standard Linux binaries that could assist with privilege escalation.
Deploy a gtfo.sh script to enumerate these binaries on your target machine.
Example Usage:
python3 gtfo.py -b awk -l shell | Spawning a shell with awk
python3 gtfo.py -b awk -l all | Show all GTFO capabilities of awk
python3 gtfo.py -b awk -l all --verbose | Increase verbosity + ascii artUsing the gtfo.sh agent script:
./gtfo.sh > gtf.out | Run this on target machine.
python3 gtfo.py -f gtf.out -l all | Show all capabilities for all
| binaries gathered from gtfo.sh
## SetupIn the same directory as that you cloned this repo, clone the GTFOBins Repo.
git clone https://github.com/GTFOBins/GTFOBins.github.io.git
python3 -m pip install -r requirements.txt## Requirements
python3
pyyamlTODO:
* Make gtf.out parser better. (Add parser for groups, perms, ownership etc.)
* Pull GTFO bin capabilities from the repo as well.