Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 875 Bytes

ine.ejpt.lab.02.md

File metadata and controls

40 lines (27 loc) · 875 Bytes
Lab Name: Scan the Server 1
Platform: INE
Lab No: 02
Exam: eJPT (Jr. Penetartion Tester)

Pinging:

Check if the target machine is reachable.

ping -c 4 demo.ine.local

image

Scanning:

We can now perform a default Nmap port scan on the target to identify the open ports on the target system, this can be done by running the following command.

nmap demo.ine.local

image

nmap demo.ine.local -p-

image

nmap demo.ine.local -p 6421,41288,55413 -sV

image