Linux / Windows nmap 을 이용한 ip port 스캔

# 192.168.0.1 ~ 192.168.0.254 범위에서 ip 스캔하기
# -T<0-5>: Set timing template (higher is faster)
# -sP: Ping Scan - go no further than determining if host is online
nmap -T4 -sP 192.168.0.1-254

# 192.168.0.2 의 1 ~ 1000 포트 스캔하기
# -p <port ranges>: Only scan specified ports
nmap 192.168.0.2 -p1-1000

# 대상 포트 수를 줄여 빠르게 스캔하여 port 가 열린 ip 정보를 알 수 있다.
# 가장 많이 사용하는 옵션
# -F: Fast mode - Scan fewer ports than the default scan
nmap -F 192.168.0.1-254

# nmap 은 윈도우에서 zenmap 이라는 이름으로 지원된다.
# command 입력란이 있어 리눅스 nmap 옵션을 그대로 사용할 수 있다.
다운로드 http://nmap.org

comments:

댓글 쓰기