What Will I Learn?
- You will learn NMAP
- You will learn how to get information gathering.
Requirements
- Linux
- Web Target
Difficulty
- Basic
Tutorial Contents
Hello all, back again with me Farah Ulfa. Okay, this time I will share about Information Gathering With NMAP On Backbox. So, Nmap is an open source tool used to check public networks like webserver or local network. Nmap can find information about IP, Port, Service that exist on the web server operating system.
To see the command nmapnya, you can type on your terminal nmap --help.
this time I will use one of the world famous game website as target, you can type the following command, sudo nmap www.mobilelegends.com -sS -O -sV
Description of the command used above:
• sS: Perform silent or silent scanning
• sV: Scans for software that opens port 80 (HTTP)
and will issue the following results,
Nmap scan report for www.mobilelegends.com (184.26.203.142)
Host is up (0.020s latency).
Other addresses for www.mobilelegends.com (not scanned): 2600:1417:6000:191::365d2600:1417:6000:19e::365d
rDNS record for 184.26.203.142: a184-26-203-142.deploy.static.akamaitechnologies.com
Not shown: 998 filtered ports
PORT STATE SERVICE VERSION
80/tcp open http AkamaiGHost (Akamai's HTTP Acceleration/Mirror service)
443/tcp open ssl/http AkamaiGHost (Akamai's HTTP Acceleration/Mirror service)
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
No OS matches for host
Network Distance: 10 hops
from the above results it can be concluded, that there is an open port, and what services are available and what version,
80/tcp open http AkamaiGHost (Akamai's HTTP Acceleration/Mirror service)
Posted on Utopian.io - Rewarding Open Source Contributors
Your contribution cannot be approved because it is not as informative as other contributions. See the Utopian Rules. Contributions need to be informative and descriptive in order to help readers and developers understand them.
You can contact us on Discord.
[utopian-moderator]
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit