Scanning and Enumeration

Scanning

nmap -sC -sV -oN sunday 10.10.10.76

The above command does the following:

  • -sC: Default scripts

  • -sV: Enumerate version

  • -oN: output in nmap form

The above nmap scan is focused on only the ports we have discovered a total of 4 ports. Scanning the four ports, we were able to discover the following.

Enumeration

Port 79

Checking for logged in users

Checking for root and admin

Looks like we have the user of root on the system

Note: You can install seclist with apt

Enumerating usernames we are able to find 2 more along with root.They are a lot more different from the other input that was displayed and it looks like the had access of some soret via 10.10.14.4

Last updated

Was this helpful?