How to communicate with a random service after a successful netcat connection?
Let’s say I perform a nmap scan and discover a list of open ports.
If port 80 is opened, I will do this:
$ nc IP_ADDRESS 80
GET / HTTP/1.0
This will be a simple HTTP protocol request.
But what about other ports? Let’s say I found a ra… Continue reading How to communicate with a random service after a successful netcat connection?