Category O/S

Pentest Service Enumeration

Pentest-Service-Enumeration Purpose Suggests binaries to run against services found during the enumeration phase of a Pentest Background While studying for the Offensive Security Certified Profesional (OSCP) certification I found it hard to keep track of which commands to run during…

Upgrade dummy terminal to tty

If you have ever gotten a webshell and wanted an interactive terminal this post is for you!. With Python python -c ‘import pty;pty.spawn(“/bin/bash”)’ Without Python script -qc /bin/bash /dev/null (inside the nc session) CTRL+Z;stty raw -echo; fg; ls; export TERM=xterm-256color…