This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
nmap [2019/09/15 19:00] acm |
nmap [2019/09/23 15:17] (current) acm |
||
---|---|---|---|
Line 1: | Line 1: | ||
==== NMap Network Mapper ==== | ==== NMap Network Mapper ==== | ||
- | Nmap is an opensource networking mapping tool frequently used in order to gain an accurate picture of how a network is a setup. It was written by Gordon Lyon and comes preinstalled on many Linux distros including Kali. | + | Nmap is an opensource networking mapping tool frequently used in order to gain an accurate picture of how a network is setup. It was written by Gordon Lyon and comes preinstalled on many Linux distros including Kali. |
=== Port Scanning === | === Port Scanning === | ||
Line 7: | Line 7: | ||
$nmap 192.168.56.3 | $nmap 192.168.56.3 | ||
</ | </ | ||
- | This command conducts an SYN scan of the 1000 most commonly used ports on the machine at 192.168.1.1. While this is useful often times you'll want to scan all the ports on the target machine, which can be done using(results of scan are shown here) | + | This command conducts an SYN scan of the 1000 most commonly used ports on the machine at 192.168.1.1. While this is useful often times you'll want to scan all the ports on the target machine, which can be done using(results of the scan are shown here) |
< | < | ||
$nmap -p- 192.168.56.3 | $nmap -p- 192.168.56.3 | ||
Line 92: | Line 92: | ||
</ | </ | ||
- | === Scripting Engine and Vulnerablity | + | === Scripting Engine and Vulnerability |
+ | One of the most powerful and important to learn parts of Nmap is its built-in scripting engine sometimes called NSE. NSE allows users to write scripts in Lua to help automate a wide variety of tasks. There are a number of built-in scripts that come with Nmap that allow it to implement some of its more advanced functionality, | ||
+ | < | ||
+ | nmap --script vuln 192.168.56.3 | ||
+ | </ | ||
=== References === | === References === | ||
- | *https:// | + | |
+ | | ||
+ | *The Basics of Hacking and Penetration Test by Patrick Engebreston | ||
+ | *https:// | ||
+ | *Nmap Official Book | ||
+ | *https:// | ||