Lab 2.2 Port Scanning 2 - FlameSpyro/Tech-Journal GitHub Wiki

Deliverables n Struggles


  1. Deliverable 1 mainly was just setting up the windows VM which didn't take too much time. The only note is -p # is the only command to note
  2. On the windows VM make sure the service is both enabled and started as it caused a slowdown later down the line. To scan the port though, windows VM is port 3389
  3. Remina had to be installed through the command prompt specifically using apt-get
  4. Step 4 uses -Sv which is used to add extra information to the output once the scan is complete.
  5. Step 5 asked to swap to using -A which outputs everything about the scan which is not fully up to date or accurate to do a few inaccurate pieces.
  6. For deliverable 6, to scan multiple ports on nmap, add a dash between the ports for the desired range. Ex: sudo nmap x.x.x.x -p 1-6000
  7. Within deliverable 7, the network and sharing center advanced settings on the windows 10 VM was configured which allowed for more ports to show in the results of the nmap scan
  8. To scan specific ports simply add a comma between numbers. EX: sudo nmap x.x.x.x -p 1,2,4
  9. To do a big, deep scan for the deliverable I did the following: sudo nmap x.x.x.x -A -sV -sC --traceroute -p 1,2,3,4

Flags

  • -p specify ports
  • -A full scan output
  • -Sv output a bit more additional information from a nmap scan