1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-11-08 15:59:17 +01:00
GTFOBins.github.io/_gtfobins/xargs.md

17 lines
479 B
Markdown
Raw Normal View History

2018-05-30 09:36:30 +02:00
---
functions:
execute-non-interactive:
2018-07-04 20:26:52 +02:00
- code: xargs -a /dev/null /usr/bin/id
file-read:
2018-07-04 20:26:52 +02:00
- description: This works as long as the file does not contain the NUL character,
also a trailing `$'\n'` is added. The actual `/bin/echo` command is executed.
GNU version only.
code: |
LFILE=file_to_read
xargs -a "$LFILE" -0
suid-enabled:
- code: "./xargs -a /dev/null /usr/bin/id"
sudo-enabled:
- code: sudo xargs -a /dev/null /usr/bin/id
2018-05-30 09:36:30 +02:00
---