Skip to content

Commit

Permalink
add 2013-08-09-nmap-usage.markdown
Browse files Browse the repository at this point in the history
Signed-off-by: ReZEL Chan <[email protected]>
  • Loading branch information
DogeVenci committed Aug 10, 2013
1 parent 5aec32a commit c249b01
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions source/_posts/2013-08-09-nmap-usage.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
layout: post
title: "nmap usage"
date: 2013-08-09 15:46
comments: true
categories: [network,linux,hacker]
---
<!--more-->
```
#ping
nmap -sP 192.168.7.0/24
nmap -sP -PT80 192.168.7.0/24
#port
nmap -sT 192.168.7.12
#SYN
nmap -sS 192.168.7.7
#UDP
nmap -sU 192.168.7.7
#os
nmap -sS -O 192.168.7.12
#-v more info
nmap -sS -p 21,23,53,80 -O -v www.yourserver.com
-P0
```

0 comments on commit c249b01

Please sign in to comment.