Perintah-perintah Di Nmap

31
A. PENGERTIAN DARI NMAP nMap (Networking Map) adalah software/tools yang masih populer digunakan dikalangan hacker. nMap digunakan untuk menscan port dan memetakan jaringan komputer. nMap akan mengetahui celah yang ada dalam sebuah jaringan administrator yang memiliki tingkat keamanan rendah sehingga berpotensi untuk dilakukan penyusupan. Secara teori, celah dalam port jaringan memiliki kondisi berikut ini: Open – Closed Filtered – Unfiltered Open/Filtered - Closed/Unfiltered Hacking menggunakan nMap akan menampilkan port-port yang dianggap Open dan Filtered. Port-port dalam komputer jaringan yang berjumlah kurang lebih 65.000 kadang tidak semuanya dalam kondisi Closed, maka dengan menggunakan nMap kita akan mengetahui port mana yang terkondisi Unclosed. Sedangkan port yang terfilter (Filtered) dikarenakan firewall dalam jaringan masih aktif. Jika tidak maka paket yang keluar masuk dapat juga kita lihat, Terdapat tiga macam tipe serangan yang digunakan dalam hacking nMap, yaitu: 1. SYN SCAN, ini adalah tipe serangan yang paling mudah dan banyak digunakan. Syn Scan akan menampilkan

Transcript of Perintah-perintah Di Nmap

A. PENGERTIAN DARI NMAP

nMap (Networking Map) adalah software/tools yang masih populer digunakan

dikalangan hacker. nMap digunakan untuk menscan port dan memetakan jaringan

komputer. nMap akan mengetahui celah yang ada dalam sebuah jaringan

administrator yang memiliki tingkat keamanan rendah sehingga berpotensi untuk

dilakukan penyusupan.

Secara teori, celah dalam port jaringan memiliki kondisi berikut ini:

Open – Closed

Filtered – Unfiltered

Open/Filtered - Closed/Unfiltered

Hacking menggunakan nMap akan menampilkan port-port yang dianggap Open dan

Filtered. Port-port dalam komputer jaringan yang berjumlah kurang lebih 65.000

kadang tidak semuanya dalam kondisi Closed, maka dengan menggunakan nMap kita

akan mengetahui port mana yang terkondisi Unclosed. Sedangkan port yang terfilter

(Filtered) dikarenakan firewall dalam jaringan masih aktif. Jika tidak maka paket yang

keluar masuk dapat juga kita lihat,

Terdapat tiga macam tipe serangan yang digunakan dalam hacking nMap, yaitu:

1. SYN SCAN, ini adalah tipe serangan yang paling mudah dan banyak

digunakan. Syn Scan akan menampilkan hasil serangan lebih cepat, namun

kelemahanya hasil yang ditampilkan tidak spesifik (umum).

2. FIN SCAN, Metode serangan ini lebih akaurat dibanding SYN SCAN. Fin

Scan akan menampilkan jenis- jenis paket yang terfilter dan kelemahan

firewall. Dengan meggunakan metode serangan ini, penyerang dapat

mengetahui kelemahan sistem yang akan diserang sebelum melakukan serang

lebih lanjut.

3. ACK SCAN, Port yang terfilter atau tidak akan ditampilkan disini. Tipe

serangan ini adalah yang paling spesifik dan menampilkan hasil yang sangat

akurat. Bagi anda yang terbiasa menggunakan nMap, maka tipe serangan

ketiga ini yang sering digunakan meskipun sedikit rumit.

Sudah memahami tipe-tipe serangan dalam nMap? okey serakang prakteknya. Saya

menggunakan Linux (Ubuntu) untuk penyerangan target.

Misalnya target adalah www.target.com, berikut contoh penyerangan menggunakan

ketiga jenis serangan yang telah saya jelaskan di atas tadi.

SYN SCAN:

#nmap -sS-T4 www.target.com (www.target.com dapat juga diganti dengan IP

Komputer target)

FIN SCAN:

#nmap -sF-T4 www.target.com

ACK SCAN:

#nmap -sA -T4 www.target.com

Biasanya dengan menggunakan metode ACK SCAN, port- port yang tertutup

(Closed) akan tereliminasi/tidak ditampilkan. Ini akan memudahkan kita mengetahui

celah mana yang terbuka dan serangan.

B. Debian / Ubuntu Linux: Install nmap Software For

Scanning Network

1. Installation

To install nmap for Debian and Ubuntu Linux based server systems type the

following apt-get command:$ sudo apt-get install nmap

Sample outputs:Reading package lists... DoneBuilding dependency treeReading state information... DoneThe following NEW packages will be installed: nmap0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.Need to get 1,643 kB of archives.After this operation, 6,913 kB of additional disk space will be used.Get:1 http://mirrors.service.networklayer.com/ubuntu/ precise/main nmap amd64 5.21-1.1ubuntu1 [1,643 kB]Fetched 1,643 kB in 0s (16.4 MB/s)Selecting previously unselected package nmap.

(Reading database ... 56834 files and directories currently installed.)Unpacking nmap (from .../nmap_5.21-1.1ubuntu1_amd64.deb) ...Processing triggers for man-db ...Setting up nmap (5.21-1.1ubuntu1) ...

C. Perintah-perintah di Nmap (network mapper)

Di bawah ini adalah beberapa contoh dari perintah-perintah tersebut.1. Scan a single Hosts or an IP address

nmap 192.168.1.1  nmap www.facebook.comnmap -v www.facebook.com

2. Scan multiple IP address or subnetnmap 192.168.1.1 192.168.1.2 192.168.1.3nmap 192.168.1,2,3nmap 192.168.1.0/24nmap 192.168.1.*

3. Excluding hosts/networksnmap 192.168.1.0/24 --exclude 192.168.1.9

4. Turn on OS and version detection scanningnmap -A 192.168.1.254nmap -v -A 192.168.1.254

5. Find out if a hosts/networks is protected by firewallnmap -sA 192.168.1.254

6. Scan a host when protected by firewall nmap -PN 192.168.1.254

7. Scan a network and find out which server or devices is up nmap -sP 192.168.1.0/24

8. Display the reason a port is in particular statenmap --reason 192.168.1.1

9. Scan a specific portsmap -p [port] hostName

a. ## Scan port 80nmap -p 80 192.168.1.1

b. ## Scan TCP port 80nmap -p T:80 192.168.1.1

c. ## Scan UDP port 53nmap -p U:53 192.168.1.1

d. ## Scan two ports ##

nmap -p 80,443 192.168.1.1

e. ## Scan port ranges ##nmap -p 80-200 192.168.1.1

f. ## Combine all options ##nmap -p U:53,111,137,T:21-25,80,139,8080 192.168.1.1nmap -p U:53,111,137,T:21-25,80,139,8080 www.facebook.comnmap -v -sU -sT -p U:53,111,137,T:21-25,80,139,8080 192.168.1.254

g. ## Scan all ports with * wildcard ##nmap -p "*" 192.168.1.1

h. ## Scan top ports i.e. scan $number most common ports ##nmap --top-ports 5 192.168.1.1nmap --top-ports 10 192.168.1.1

10. The fastest way to scan all your devices/computers for open ports evernmap -T5 192.168.1.0/24

11. How do I detect remote operating system?You can identify a remote host apps and OS using the -O option:nmap -O 192.168.1.1nmap -O  --osscan-guess 192.168.1.1nmap -v -O --osscan-guess 192.168.1.1

12. How do I detect remote services (server / daemon) version numbers? nmap -sV 192.168.1.1

13. Scan a host using TCP ACK (PA) and TCP Syn (PS) pingIf firewall is blocking standard ICMP pings, try the following host discovery methods:nmap -PS 192.168.1.1nmap -PS 80,21,443 192.168.1.1nmap -PA 192.168.1.1nmap -PA 80,21,200-512 192.168.1.1

14. Scan a host using IP protocol pingnmap -PO 192.168.1.1

15. Scan a host using UDP pingThis scan bypasses firewalls and filters that only screen TCP:nmap -PU 192.168.1.1nmap -PU 2000.2001 192.168.1.1

16. Find out the most commonly used TCP ports using TCP SYN Scana. ### Stealthy scan ###

nmap -sS 192.168.1.1b. ### Find out the most commonly used TCP ports using  TCP connect

scan (warning: no stealth scan)

###  OS Fingerprinting ### nmap -sT 192.168.1.1

c. ### Find out the most commonly used TCP ports using TCP ACK scannmap -sA 192.168.1.1

d. ### Find out the most commonly used TCP ports using TCP Window scannmap -sW 192.168.1.1

e. ### Find out the most commonly used TCP ports using TCP Maimon scannmap -sM 192.168.1.1

17. Scan a host for UDP services (UDP scan)Most popular services on the Internet run over the TCP protocol. DNS, SNMP, and DHCP are three of the most common UDP services. Use the following syntax to find out UDP services:nmap -sU nas03nmap -sU 192.168.1.1

18. Scan for IP protocolThis type of scan allows you to determine which IP protocols (TCP, ICMP, IGMP, etc.) are supported by target machines:nmap -sO 192.168.1.1

19. Scan a firewall for security weaknessThe following scan types exploit a subtle loophole in the TCP and good for testing security of common attacks:

a. ## TCP Null Scan to fool a firewall to generate a response #### Does not set any bits (TCP flag header is 0) ##nmap -sN 192.168.1.254

b. ## TCP Fin scan to check firewall #### Sets just the TCP FIN bit ##nmap -sF 192.168.1.254

c. ## TCP Xmas scan to check firewall #### Sets the FIN, PSH, and URG flags, lighting the packet up like a Christmas tree ##nmap -sX 192.168.1.254

See how to block Xmas packkets, syn-floods and other conman attacks with iptables.

20. Scan a firewall for packets fragments

The -f option causes the requested scan (including ping scans) to use tiny fragmented IP packets. The idea is to split up the TCP header overseveral packets to make it harder for packet filters, intrusion detection systems, and other annoyances to detect what you are doing.nmap -f 192.168.1.1nmap -f fw2.nixcraft.net.innmap -f 15 fw2.nixcraft.net.in

## Set your own offset size with the --mtu option ##nmap --mtu 32 192.168.1.1

21. Cloak a scan with decoysThe -D option it appear to the remote host that the host(s) you specify as decoys are scanning the target network too. Thus their IDS might report 5-10 port scans from unique IP addresses, but they won't know which IP was scanning them and which were innocent decoys:

nmap -n -Ddecoy-ip1,decoy-ip2,your-own-ip,decoy-ip3,decoy-ip4 remote-host-ipnmap -n -D192.168.1.5,10.5.1.2,172.1.2.4,3.4.2.1 192.168.1.5

22. Scan a firewall for MAC address spoofing### Spoof your MAC address ##nmap --spoof-mac MAC-ADDRESS-HERE 192.168.1.1

### Add other options ###nmap -v -sT -PN --spoof-mac MAC-ADDRESS-HERE 192.168.1.1

### Use a random MAC address ###### The number 0, means nmap chooses a completely random MAC address ###nmap -v -sT -PN --spoof-mac 0 192.168.1.1

23. How do I save output to a text file?The syntax is:nmap 192.168.1.1 > output.txtnmap -oN /path/to/filename 192.168.1.1nmap -oN output.txt 192.168.1.1

24. To find the nmap version, enter:# nmap –VAtau# nmap –versionSample outputs:Nmap version 5.21 ( http://nmap.org )

25. To scan an IP address, enter:# nmap 192.168.1.2Sample outputs:

Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-18 14:41 IST

Interesting ports on 192.168.1.2:

Not shown: 997 closed ports

PORT STATE SERVICE

23/tcp open telnet

53/tcp open domain

80/tcp open http

MAC Address: 74:44:01:40:57:FB (Unknown)

 

Nmap done: 1 IP address (1 host up) scanned in 1.28 seconds

26. To scan a range of IP addresses, enter:

# nmap 192.168.1.2-10

27. To scan an entire subnet:

# nmap 192.168.1.0/24

More examples:

a. ## Ping only scan ##

nmap -sP 192.168.1.2

b. ## Scan and do traceroute ##

nmap --traceroute IP-ADDRESS

nmap --traceroute DOMAIN-NAME-HERE

c. ## TCP SYN Scan ##

nmap -sS 192.168.1.2

d. ## UDP Scan ##

nmap -sU 192.168.1.2

e. ## IP protocol scan ##

nmap -sO 192.168.1.2

f. ## Scan port 80, 25, 443 ##

nmap -p 80 192.168.1.2

nmap -p http 192.168.1.2

nmap -p 25 192.168.1.2

nmap -p smtp 192.168.1.2

nmap -p 443 192.168.1.2

nmap -p 80,24,443 192.168.1.2

g. ## Scan port ranges ##

nmap -p 512-1024 192.168.1.2

h. ## Scan for OS i.e. Operating System Detection ##

nmap -O 192.168.1.2

nmap -O --osscan-guess 192.168.1.2

i. ## Scan for application server version ##

nmap -sV 192.168.1.2

28. Scan a single host or an IP address (IPv4)

a. ### Scan a single ip address ###nmap 192.168.1.1

 

b. ## Scan a host name ###nmap server1.cyberciti.biz

 

c. ## Scan a host name with more info###nmap -v server1.cyberciti.biz

 

Sample outputs:

29. Scan multiple IP address or subnet (IPv4)

nmap 192.168.1.1 192.168.1.2 192.168.1.3

## works with same subnet i.e. 192.168.1.0/24

nmap 192.168.1.1,2,3

You can scan a range of IP address too:

nmap 192.168.1.1-20

You can scan a range of IP address using a wildcard:

nmap 192.168.1.*

Finally, you scan an entire subnet:

nmap 192.168.1.0/24

30. Read list of hosts/networks from a file (IPv4)

The -iL option allows you to read the list of target systems using a text file. This is

useful to scan a large number of hosts/networks. Create a text file as follows:

cat > /tmp/test.txt

Sample outputs:

server1.cyberciti.biz192.168.1.0/24192.168.1.1/2410.1.2.3localhost

The syntax is:

nmap -iL /tmp/test.txt

31. Excluding hosts/networks (IPv4)

When scanning a large number of hosts/networks you can exclude hosts from a

scan:

nmap 192.168.1.0/24 --exclude 192.168.1.5

nmap 192.168.1.0/24 --exclude 192.168.1.5,192.168.1.254

OR exclude list from a file called /tmp/exclude.txt

nmap -iL /tmp/scanlist.txt --excludefile

/tmp/exclude.txt

32. Turn on OS and version detection scanning script (IPv4)

nmap -A 192.168.1.254

nmap -v -A 192.168.1.1

nmap -A -iL /tmp/scanlist.txt

33. Find out if a host/network is protected by a firewall

nmap -sA 192.168.1.254

nmap -sA server1.cyberciti.biz

34. Scan a host when protected by the firewall

nmap -PN 192.168.1.1nmap -PN server1.cyberciti.biz

35. Scan an IPv6 host/address

The -6 option enable IPv6 scanning. The syntax is:

nmap -6 IPv6-Address-Herenmap -6 server1.cyberciti.biznmap -6 2607:f0d0:1002:51::4nmap -v A -6 2607:f0d0:1002:51::4

36. Scan a network and find out which servers and devices are up and running

This is known as host discovery or ping scan:

nmap -sP 192.168.1.0/24

Sample outputs:

Host 192.168.1.1 is up (0.00035s latency).

MAC Address: BC:AE:C5:C3:16:93 (Unknown)

Host 192.168.1.2 is up (0.0038s latency).

MAC Address: 74:44:01:40:57:FB (Unknown)

Host 192.168.1.5 is up.

Host nas03 (192.168.1.12) is up (0.0091s latency).

MAC Address: 00:11:32:11:15:FC (Synology Incorporated)

Nmap done: 256 IP addresses (4 hosts up) scanned in 2.80 second

37. How do I perform a fast scan?

nmap -F 192.168.1.1

38. Display the reason a port is in a particular state

nmap --reason 192.168.1.1nmap --reason server1.cyberciti.biz

39. Only show open (or possibly open) ports

nmap --open 192.168.1.1nmap --open server1.cyberciti.biz

40. Show all packets sent and received

nmap --packet-trace 192.168.1.1nmap --packet-trace server1.cyberciti.biz

41. Show host interfaces and routes

This is useful for debugging (ip command or route command or netstat command like output using nmap)

nmap --iflist

Sample outputs:

Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-27 02:01 IST************************INTERFACES************************DEV (SHORT) IP/MASK TYPE UP MAClo (lo) 127.0.0.1/8 loopback upeth0 (eth0) 192.168.1.5/24 ethernet up B8:AC:6F:65:31:E5vmnet1 (vmnet1) 192.168.121.1/24 ethernet up 00:50:56:C0:00:01vmnet8 (vmnet8) 192.168.179.1/24 ethernet up 00:50:56:C0:00:08ppp0 (ppp0) 10.1.19.69/32 point2point up 

**************************ROUTES**************************DST/MASK DEV GATEWAY10.0.31.178/32 ppp0209.133.67.35/32 eth0 192.168.1.2192.168.1.0/0 eth0192.168.121.0/0 vmnet1192.168.179.0/0 vmnet8169.254.0.0/0 eth010.0.0.0/0 ppp00.0.0.0/0 eth0 192.168.1.2

 

42. How do I scan specific ports?

map -p [port] hostName

## Scan port 80nmap -p 80 192.168.1.1 ## Scan TCP port 80nmap -p T:80 192.168.1.1 ## Scan UDP port 53nmap -p U:53 192.168.1.1 ## Scan two ports ##nmap -p 80,443 192.168.1.1 ## Scan port ranges ##nmap -p 80-200 192.168.1.1 ## Combine all options ##nmap -p U:53,111,137,T:21-25,80,139,8080 192.168.1.1nmap -p U:53,111,137,T:21-25,80,139,8080 server1.cyberciti.biznmap -v -sU -sT -p U:53,111,137,T:21-25,80,139,8080 192.168.1.254 ## Scan all ports with * wildcard ##nmap -p "*" 192.168.1.1 ## Scan top ports i.e. scan $number most common ports ##nmap --top-ports 5 192.168.1.1nmap --top-ports 10 192.168.1.1 

Sample outputs:

Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-27 01:23 ISTInteresting ports on 192.168.1.1:PORT STATE SERVICE21/tcp closed ftp22/tcp open ssh23/tcp closed telnet25/tcp closed smtp80/tcp open http110/tcp closed pop3139/tcp closed netbios-ssn443/tcp closed https445/tcp closed microsoft-ds3389/tcp closed ms-term-servMAC Address: BC:AE:C5:C3:16:93 (Unknown)

Nmap done: 1 IP address (1 host up) scanned in 0.51 seconds

 

43. The fastest way to scan all your devices/computers for open ports ever

nmap -T5 192.168.1.0/24

44. How do I detect remote operating system?

You can identify a remote host apps and OS using the -O option: 

nmap -O 192.168.1.1nmap -O --osscan-guess 192.168.1.1nmap -v -O --osscan-guess 192.168.1.1

Sample outputs:

Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-27 01:29 ISTNSE: Loaded 0 scripts for scanning.Initiating ARP Ping Scan at 01:29Scanning 192.168.1.1 [1 port]Completed ARP Ping Scan at 01:29, 0.01s elapsed (1 total hosts)Initiating Parallel DNS resolution of 1 host. at 01:29Completed Parallel DNS resolution of 1 host. at 01:29, 0.22s elapsedInitiating SYN Stealth Scan at 01:29Scanning 192.168.1.1 [1000 ports]Discovered open port 80/tcp on 192.168.1.1Discovered open port 22/tcp on 192.168.1.1Completed SYN Stealth Scan at 01:29, 0.16s elapsed (1000 total ports)Initiating OS detection (try #1) against 192.168.1.1Retrying OS detection (try #2) against 192.168.1.1Retrying OS detection (try #3) against 192.168.1.1Retrying OS detection (try #4) against 192.168.1.1Retrying OS detection (try #5) against 192.168.1.1Host 192.168.1.1 is up (0.00049s latency).Interesting ports on 192.168.1.1:Not shown: 998 closed portsPORT STATE SERVICE22/tcp open ssh80/tcp open httpMAC Address: BC:AE:C5:C3:16:93 (Unknown)Device type: WAP|general purpose|router|printer|broadband routerRunning (JUST GUESSING) : Linksys Linux 2.4.X (95%), Linux 2.4.X|2.6.X (94%), MikroTik RouterOS 3.X (92%), Lexmark embedded (90%), Enterasys embedded (89%), D-Link Linux 2.4.X (89%), Netgear Linux 2.4.X (89%)Aggressive OS guesses: OpenWrt White Russian 0.9 (Linux 2.4.30) (95%), OpenWrt 0.9 - 7.09 (Linux 2.4.30 - 2.4.34) (94%), OpenWrt Kamikaze 7.09 (Linux 2.6.22) (94%), Linux 2.4.21 - 2.4.31 (likely embedded) (92%), Linux 2.6.15 - 2.6.23 (embedded) (92%), Linux 2.6.15 - 2.6.24 (92%), MikroTik RouterOS 3.0beta5 (92%), MikroTik RouterOS 3.17 (92%), Linux 2.6.24 (91%), Linux 2.6.22 (90%)No exact OS matches for host (If you know what OS is running on it, see http://nmap.org/submit/ ).TCP/IP fingerprint:OS:SCAN(V=5.00%D=11/27%OT=22%CT=1%CU=30609%PV=Y%DS=1%G=Y%M=BCAEC5%TM=50B3CAOS:4B%P=x86_64-unknown-linux-gnu)SEQ(SP=C8%GCD=1%ISR=CB%TI=Z%CI=Z%II=I%TS=7

OS:)OPS(O1=M2300ST11NW2%O2=M2300ST11NW2%O3=M2300NNT11NW2%O4=M2300ST11NW2%O5OS:=M2300ST11NW2%O6=M2300ST11)WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%WOS:6=45E8)ECN(R=Y%DF=Y%T=40%W=4600%O=M2300NNSNW2%CC=N%Q=)T1(R=Y%DF=Y%T=40%SOS:=O%A=S+%F=AS%RD=0%Q=)T2(R=N)T3(R=N)T4(R=Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%O=%ROS:D=0%Q=)T5(R=Y%DF=Y%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)T6(R=Y%DF=Y%T=40%W=OS:0%S=A%A=Z%F=R%O=%RD=0%Q=)T7(R=N)U1(R=Y%DF=N%T=40%IPL=164%UN=0%RIPL=G%RIDOS:=G%RIPCK=G%RUCK=G%RUD=G)IE(R=Y%DFI=N%T=40%CD=S)Uptime guess: 12.990 days (since Wed Nov 14 01:44:40 2012)Network Distance: 1 hopTCP Sequence Prediction: Difficulty=200 (Good luck!)IP ID Sequence Generation: All zerosRead data files from: /usr/share/nmapOS detection performed. Please report any incorrect results at http://nmap.org/submit/ .Nmap done: 1 IP address (1 host up) scanned in 12.38 seconds Raw packets sent: 1126 (53.832KB) | Rcvd: 1066 (46.100KB)

See also: Fingerprinting a web-server and a dns server command line tools for more information.

45. How do I detect remote services (server / daemon) version numbers?

nmap -sV 192.168.1.1

Sample outputs:

Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-27 01:34 ISTInteresting ports on 192.168.1.1:Not shown: 998 closed portsPORT STATE SERVICE VERSION22/tcp open ssh Dropbear sshd 0.52 (protocol 2.0)80/tcp open http?1 service unrecognized despite returning data.

46. Scan a host using TCP ACK (PA) and TCP Syn (PS) ping

If firewall is blocking standard ICMP pings, try the following host discovery

methods:

nmap -PS 192.168.1.1nmap -PS 80,21,443 192.168.1.1nmap -PA 192.168.1.1nmap -PA 80,21,200-512 192.168.1.1

47. Scan a host using IP protocol ping

nmap -PO 192.168.1.1

48. Scan a host using UDP ping

This scan bypasses firewalls and filters that only screen TCP:

nmap -PU 192.168.1.1nmap -PU 2000.2001 192.168.1.1

49. Find out the most commonly used TCP ports using TCP SYN Scan

 ### Stealthy scan ###nmap -sS 192.168.1.1 ### Find out the most commonly used TCP ports using TCP connect scan (warning: no stealth scan)### OS Fingerprinting ###nmap -sT 192.168.1.1 ### Find out the most commonly used TCP ports using TCP ACK scannmap -sA 192.168.1.1 ### Find out the most commonly used TCP ports using TCP Window scannmap -sW 192.168.1.1 ### Find out the most commonly used TCP ports using TCP Maimon scannmap -sM 192.168.1.1

 

50. Scan a host for UDP services (UDP scan)

Most popular services on the Internet run over the TCP protocol. DNS, SNMP,

and DHCP are three of the most common UDP services. Use the following syntax

to find out UDP services:

nmap -sU nas03nmap -sU 192.168.1.1

Sample outputs:

 Starting Nmap 5.00 ( http://nmap.org ) at 2012-11-27 00:52 ISTStats: 0:05:29 elapsed; 0 hosts completed (1 up), 1 undergoing UDP ScanUDP Scan Timing: About 32.49% done; ETC: 01:09 (0:11:26 remaining)Interesting ports on nas03 (192.168.1.12):Not shown: 995 closed portsPORT STATE SERVICE111/udp open|filtered rpcbind123/udp open|filtered ntp161/udp open|filtered snmp2049/udp open|filtered nfs5353/udp open|filtered zeroconfMAC Address: 00:11:32:11:15:FC (Synology Incorporated) Nmap done: 1 IP address (1 host up) scanned in 1099.55 seconds

 

51.Scan for IP protocolThis type of scan allows you to determine which IP protocols (TCP, ICMP,

IGMP, etc.) are supported by target machines:

nmap -sO 192.168.1.1

52. Scan a firewall for security weakness

The following scan types exploit a subtle loophole in the TCP and good for testing

security of common attacks:

 ## TCP Null Scan to fool a firewall to generate a response #### Does not set any bits (TCP flag header is 0) ##nmap -sN 192.168.1.254 ## TCP Fin scan to check firewall #### Sets just the TCP FIN bit ##nmap -sF 192.168.1.254 ## TCP Xmas scan to check firewall #### Sets the FIN, PSH, and URG flags, lighting the packet up like a Christmas tree ##nmap -sX 192.168.1.254

 

See how to block Xmas packkets, syn-floods and other conman attacks with iptables.

53. Scan a firewall for packets fragments

The -f option causes the requested scan (including ping scans) to use tiny

fragmented IP packets. The idea is to split up the TCP header over several packets

to make it harder for packet filters, intrusion detection systems, and other

annoyances to detect what you are doing.

nmap -f 192.168.1.1nmap -f fw2.nixcraft.net.innmap -f 15 fw2.nixcraft.net.in## Set your own offset size with the --mtu option ##nmap --mtu 32 192.168.1.1

54. Cloak a scan with decoys

The -D option it appear to the remote host that the host(s) you specify as decoys

are scanning the target network too. Thus their IDS might report 5-10 port scans

from unique IP addresses, but they won't know which IP was scanning them and

which were innocent decoys:

nmap -n -Ddecoy-ip1,decoy-ip2,your-own-ip,decoy-ip3,decoy-ip4 remote-host-ip

nmap -n -D192.168.1.5,10.5.1.2,172.1.2.4,3.4.2.1 192.168.1.5

55. Scan a firewall for MAC address spoofing

 ### Spoof your MAC address ##nmap --spoof-mac MAC-ADDRESS-HERE 192.168.1.1 ### Add other options ###nmap -v -sT -PN --spoof-mac MAC-ADDRESS-HERE 192.168.1.1  ### Use a random MAC address ###### The number 0, means nmap chooses a completely random MAC address ###nmap -v -sT -PN --spoof-mac 0 192.168.1.1

 

56. How do I save output to a text file?

The syntax is:

nmap 192.168.1.1 > output.txtnmap -oN /path/to/filename 192.168.1.1nmap -oN output.txt 192.168.1.1

57. Not a fan of command line tools?

Try zenmap the official network mapper front end:

Zenmap is the official Nmap Security Scanner GUI. It is a multi-platform (Linux,

Windows, Mac OS X, BSD, etc.) free and open source application which aims to

make Nmap easy for beginners to use while providing advanced features for

experienced Nmap users. Frequently used scans can be saved as profiles to make

them easy to run repeatedly. A command creator allows interactive creation of

Nmap command lines. Scan results can be saved and viewed later. Saved scan

results can be compared with one another to see how they differ. The results of

recent scans are stored in a searchable database.

You can install zenmap using the following apt-get command:

$ sudo apt-get install zenmap

Sample outputs:

[sudo] password for vivek:Reading package lists... DoneBuilding dependency treeReading state information... DoneThe following NEW packages will be installed: zenmap0 upgraded, 1 newly installed, 0 to remove and 11 not upgraded.

Need to get 616 kB of archives.After this operation, 1,827 kB of additional disk space will be used.Get:1 http://debian.osuosl.org/debian/ squeeze/main zenmap amd64 5.00-3 [616 kB]Fetched 616 kB in 3s (199 kB/s)Selecting previously deselected package zenmap.(Reading database ... 281105 files and directories currently installed.)Unpacking zenmap (from .../zenmap_5.00-3_amd64.deb) ...Processing triggers for desktop-file-utils ...Processing triggers for gnome-menus ...Processing triggers for man-db ...Setting up zenmap (5.00-3) ...Processing triggers for python-central ...

Type the following command to start zenmap:$ sudo zenmap

Sample outputs

D. Menggunakan NMAP IP dan Port Scanner Di Ubuntu

Cara untuk install nmap di Ubuntu sangatlah mudah, cuma melakukan download dari internet :

yasser@yasser-laptop:~$ sudo apt-get install nmap[sudo] password for yasser:Reading package lists… DoneBuilding dependency treeReading state information… DoneThe following packages were automatically installed and are no longer required:linux-headers-2.6.32-21 linux-headers-2.6.32-21-genericUse ‘apt-get autoremove’ to remove them.The following extra packages will be installed:liblua5.1-0The following NEW packages will be installed:liblua5.1-0 nmap0 upgraded, 2 newly installed, 0 to remove and 29 not upgraded.Need to get 1,671kB of archives.After this operation, 6,541kB of additional disk space will be used.Do you want to continue [Y/n]? yGet:1 http://id.archive.ubuntu.com/ubuntu/ lucid/main liblua5.1-0 5.1.4-5 [82.2kB]Get:2 http://id.archive.ubuntu.com/ubuntu/ lucid/main nmap 5.00-3 [1,589kB]Fetched 1,671kB in 5s (303kB/s)Selecting previously deselected package liblua5.1-0.(Reading database … 149317 files and directories currently installed.)Unpacking liblua5.1-0 (from …/liblua5.1-0_5.1.4-5_i386.deb) …Selecting previously deselected package nmap.Unpacking nmap (from …/archives/nmap_5.00-3_i386.deb) …Processing triggers for man-db …Setting up liblua5.1-0 (5.1.4-5) …Setting up nmap (5.00-3) …Processing triggers for libc-bin …ldconfig deferred processing now taking place

to run nmap to scan ip address with range 10.10.28.0 – 10.10.28.254, you just run command :

yasser@yasser-laptop:~$ nmap -sP 10.10.28.0/24and the result :Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:23 WITHost 10.10.28.1 is up (0.00025s latency).Host 10.10.28.3 is up (0.00032s latency).

Host 10.10.28.7 is up (0.000098s latency).Host 10.10.28.9 is up (0.00022s latency).Host 10.10.28.21 is up (0.00032s latency).Host 10.10.28.22 is up (0.00030s latency).Host 10.10.28.41 is up (0.0012s latency).Host 10.10.28.42 is up (0.0011s latency).Host 10.10.28.43 is up (0.0010s latency).Host 10.10.28.44 is up (0.0010s latency).Host 10.10.28.45 is up (0.0013s latency).Host 10.10.28.46 is up (0.0012s latency).Host 10.10.28.47 is up (0.0016s latency).Host 10.10.28.48 is up (0.0015s latency).Host 10.10.28.49 is up (0.0015s latency).Host 10.10.28.50 is up (0.0015s latency).Host 10.10.28.51 is up (0.0012s latency).Host 10.10.28.100 is up (0.012s latency).Host 10.10.28.105 is up (0.0041s latency).Host 10.10.28.131 is up (0.0041s latency).Nmap done: 256 IP addresses (20 hosts up) scanned in 2.36 seconds

Port Scanning with range 100-150yasser@yasser-laptop:~$ nmap 10.10.28.22 -p100-150Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:33 WITInteresting ports on 10.10.28.22:Not shown: 49 closed portsPORT STATE SERVICE135/tcp open msrpc139/tcp open netbios-ssnNmap done: 1 IP address (1 host up) scanned in 1.16 seconds

for Scan Operating System :yasser@yasser-laptop:~$ sudo nmap 10.10.28.22 -OStarting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:35 WITInteresting ports on 10.10.28.22:Not shown: 988 closed portsPORT STATE SERVICE135/tcp open msrpc139/tcp open netbios-ssn445/tcp open microsoft-ds3389/tcp open ms-term-serv5101/tcp open admdog49152/tcp open unknown49153/tcp open unknown49154/tcp open unknown49155/tcp open unknown49156/tcp open unknown49157/tcp open unknown49160/tcp open unknownMAC Address: 00:04:4B:16:59:89 (Nvidia)Device type: general purposeRunning: Microsoft Windows Vista|2008|7OS details: Microsoft Windows Vista SP0 or SP1, Server 2008, or Windows 7 Ultimate (build 7000)Network Distance: 1 hopOS detection performed. Please report any incorrect results at http://nmap.org/submit/ .Nmap done: 1 IP address (1 host up) scanned in 8.39 seconds

nmap Faster Execution

If you want to make faster scan, use -T4 option on nmap command.

yasser@yasser-laptop:~$ sudo nmap -A -T4 10.10.28.3Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:38 WITInteresting ports on 10.10.28.3:Not shown: 998 closed portsPORT STATE SERVICE VERSION5009/tcp open airport-admin Apple AirPort admin10000/tcp open snet-sensor-mgmt?MAC Address: 00:1F:F3:42:BD:75 (Apple)Device type: general purposeRunning: NetBSD 4.XOS details: NetBSD 4.99.4Network Distance: 1 hopOS and Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .Nmap done: 1 IP address (1 host up) scanned in 83.68 seconds

Top 30 Nmap Command Examples For Sys/Network Admins

Nmap is short for Network Mapper. It is an open source security tool for network exploration, security scanning and auditing. However, nmap command comes with lots of options that can make the utility more robust and difficult to follow for new users.

The purpose of this post is to introduce a user to the nmap command line tool to scan a host and/or network, so to find out the possible vulnerable points in the hosts. You will also learn how to use Nmap for offensive and defensive purposes.

nmap in action

More about nmap

From the man page:

Nmap ("Network Mapper") is an open source tool for network exploration and security auditing. It was designed to rapidly scan large networks, although it works fine against single hosts. Nmap uses raw IP packets in novel ways to determine what hosts are available on the network, what services (application name and version) those hosts are offering, what operating systems (and OS versions) they are running, what type of packet filters/firewalls are in use, and dozens of other characteristics. While Nmap is commonly used for security audits, many systems and network administrators find it useful for routine tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.

It was originally written by Gordon Lyon and it can answer the following questions easily:

1. What computers did you find running on the local network?2. What IP addresses did you find running on the local network?

3. What is the operating system of your target machine?

4. Find out what ports are open on the machine that you just scanned?

5. Find out if the system is infected with malware or virus.

6. Search for unauthorized servers or network service on your network.

7. Find and remove computers which don't meet the organization's minimum level of security.

Sample setup (LAB)

Port scanning may be illegal in some jurisdictions. So setup a lab as follows:

+---------+ +---------+ | Network | +--------+ | server1 |-----------+ swtich +---------|server2 | +---------+ | (sw0) | +--------+ +----+----+ | | +---------+----------+ | wks01 Linux/OSX | +--------------------+

Where,

wks01 is your computer either running Linux/OS X or Unix like operating system. It is used for scanning your local network. The nmap command must be installed on this computer.

server1 can be powered by Linux / Unix / MS-Windows operating systems. This is an unpatched server. Feel free to install a few services such as a web-server, file server and so on.

server2 can be powered by Linux / Unix / MS-Windows operating systems. This is a fully patched server with firewall. Again, feel free to install few services such as a web-server, file server and so on.

All three systems are connected via switch.

Tutorial NmapPublished about a year ago by Candra Adi Putra

Nmap adalah tool yang digunakan untuk mengecek port yang terbuka dari sebuah server atau komputer. Ketika sebuah port jaringan terbuka maka pasti ada layanan dibelakangnya, bisa berupa webserver, FTP dan layanan lainnya. Nmap sendiri adalah tool hacking yang sangat canggih dan komplek. Nmap tersedia baik di Linux maupun windows. Jika anda pengguna ubuntu anda bisa menginstallnya dengan cara

sudo apt-get install nmap

Sedangkan jika anda pemakai windows silahkan download installernya di nmap.org

Di tutorial ini saya hanya akan mengajarkan cara praktis memakai nmap untuk melakukan 3 hal yaitu

1. Mendeteksi komputer yang hidup dalam jaringan 2. Mendeteksi port yang terbuka

3. Mendeteksi OS komputer target

Mendeteksi komputer yang hidup dalam jaringan Perintah :nmap -SP [rangeip]

C:\Documents and Settings\candra>nmap -sP 192.168.55.50-60

Starting Nmap 6.01 ( http://nmap.org ) at 2012-10-29 10:26 SE Asia

Nmap scan report for 192.168.55.55Host is up (0.00s latency).MAC Address: F0:DE:F1:66:11:2C (Wistron InfoComm (Kunshan)Co)Nmap scan report for 192.168.55.56Host is up (0.078s latency).MAC Address: 90:00:4E:87:F0:A8 (Hon Hai Precision Ind. Co.)Nmap scan report for 192.168.55.57Host is up (0.063s latency).MAC Address: BC:47:60:7C:DA:5E (Samsung Electronics Co.)Nmap done: 4 IP addresses (3 hosts up) scanned in 1.28 seconds

Dari hasil analisa tampak bahwa dari range ip 192.168.55.50 – 192.168.55.60 ada 3 komputer yan hidup. Nilai plusnya anda juga bisa melihat mac Addres sekaligus merek kartu jaringannya.

Mendeteksi Port yang terbuka Jika yang kita scan adalah server yang sedang kita bangun, kita bisa dengan cepat mengecek

apakah sebuah service berjalan atau tidak dengan nmap. Contoh realnya ketika anda menginstall SSH server namun ketika di remote selalu gagal, bisa saja karena memang service SSH belum di jalankan.

Perintah : nmap -sS [IPtarget]

C:\Documents and Settings\candra>nmap -sS 192.168.55.55

Starting Nmap 6.01 ( http://nmap.org ) at 2012-10-29 10:32 SE As

Nmap scan report for 192.168.55.55Host is up (0.032s latency).Not shown: 989 closed portsPORT STATE SERVICE135/tcp open msrpc139/tcp open netbios-ssn445/tcp open microsoft-ds5800/tcp open vnc-http5900/tcp open vnc

MAC Address: 90:00:4E:87:F0:A8 (Hon Hai Precision Ind. Co.)

Dari hasil scanning, tampak bahwa ada 5 port yang terbuka. Dari layananya port port ini ternyata menyediakan file sharing dan remote desktop VNC. sepertinya Komputernya menggunakan windows? Tapi anda yakin itu windows? Mari kita gunakan teknik ke 3.

Mendeteksi Sistem operasi targetperintah nmap -O [iptarget]

C:\Documents and Settings\candra>nmap -O 192.168.55.55Starting Nmap 6.01 ( http://nmap.org ) at 2012-10-29 10:28 SE Asia Standard T

Nmap scan report for 192.168.55.55Host is up (0.0053s latency).Not shown: 989 closed portsPORT STATE SERVICE135/tcp open msrpc139/tcp open netbios-ssn445/tcp open microsoft-ds5800/tcp open vnc-http5900/tcp open vnc

MAC Address: 90:00:4E:87:F0:A8 (Hon Hai Precision Ind. Co.)Device type: general purposeRunning: Microsoft Windows 7|2008OS CPE: cpe:/o:microsoft:windows_7 cpe:/o:microsoft:windows_server_2008::sp1OS details: Microsoft Windows 7 or Windows Server 2008 SP1Network Distance: 1 hop

Nmap tidak bisa memberikan info pasti tentang OS, namun hanya terbatas menebak sistem operasi yang dipakai. Perhatikan hasil scan diatas, ip 192.168.55.55 kemungkinan besar menggunakan Windows 7 atau Windows server 2008.

Hal yang penting saat menggunakan nmap, gunakan pada jaringan anda sendiri, bukan jaringan orang lain. Nmap sendiri mempunyai banyak parameter dan fitur lain yang sangat canggih, apa yang saya tulis disini tidak lebih dari 10% kemampuan nmap yang sebenarnya. Yup, sekian dulu semoga tutorial ini bermanfaat.