> For the complete documentation index, see [llms.txt](https://hacks.buduboti.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacks.buduboti.xyz/readme.md).

# Index

```bash
# HTTP server

python3 -m http.server

# Interactive shell \w python

python -c 'import pty;pty.spawn("/bin/bash")'

# Scan SUID binaries

find / -perm +6000 2>/dev/null | grep '/bin/'                 # It finds binaries at ex /usr/local/bin/ too
find / -perm /6000 2>/dev/null | grep '/bin/' 

```
