Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Nmap-Cheat-Sheet — Nmap向けの厳選チートシート。ターゲット選択、ポートスキャン、サービス/OS検出、NSEスクリプト、ネットワーク偵察とセキュリティ監査のための出力形式を網羅。 | Kitploit
ツール/GitHubGitHub/nu11secur1ty/nmap-cheat-sheet
OSINT (オープンソースインテリジェンス)偵察ネットワークマッピングポートスキャン脆弱性分析情報収集ネットワークセキュリティ学習と教育厳選リソース
GitHubnu11secur1ty/nmap-cheat-sheet

Nmap-Cheat-Sheet

Nmap向けの厳選チートシート。ターゲット選択、ポートスキャン、サービス/OS検出、NSEスクリプト、ネットワーク偵察とセキュリティ監査のための出力形式を網羅。

5324年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
リポジトリを見る

Nmap チートシート

  • Nmap ターゲット選択
root@kitploit:~
Scan a single IP	               nmap 192.168.1.1
Scan a host	                     nmap www.testhostname.com
Scan a range of IPs	             nmap 192.168.1.1-20
Scan a subnet	                   nmap 192.168.1.0/24
Scan targets from a text file	   nmap -iL list-of-ips.txt
  • Nmap ポート選択
root@kitploit:~
Scan a single Port	                    nmap -p 22 192.168.1.1
Scan a range of ports                   nmap -p 1-100 192.168.1.1
Scan 100 most common ports (Fast)	      nmap -F 192.168.1.1
Scan all 65535 ports	                  nmap -p- 192.168.1.1
  • Nmap ポートスキャンの種類
root@kitploit:~
Scan using TCP connect	                  nmap -sT 192.168.1.1
Scan using TCP SYN scan (default)	        nmap -sS 192.168.1.1
Scan UDP ports	                          nmap -sU -p 123,161,162 192.168.1.1
Scan selected ports - ignore discovery	  nmap -Pn -F 192.168.1.1
  • サービスとOSの検出
root@kitploit:~
Detect OS and Services	           nmap -A 192.168.1.1
Standard service detection	       nmap -sV 192.168.1.1
More aggressive Service Detection	 nmap -sV --version-intensity 5 192.168.1.1
Lighter banner grabbing detection	 nmap -sV --version-intensity 0 192.168.1.1
  • Nmap 出力形式
root@kitploit:~
Save default output to file	       nmap -oN outputfile.txt 192.168.1.1
Save results as XML	               nmap -oX outputfile.xml 192.168.1.1
Save results in a format for grep	 nmap -oG outputfile.txt 192.168.1.1
Save in all formats	               nmap -oA outputfile 192.168.1.1
  • NSEスクリプトでさらに深く掘り下げる
root@kitploit:~
Scan using default safe scripts	   nmap -sV -sC 192.168.1.1
Get help for a script	             nmap --script-help=ssl-heartbleed
Scan using a specific NSE script	 nmap -sV -p 443 –script=ssl-heartbleed.nse 192.168.1.1
Scan with a set of scripts	       nmap -sV --script=smb* 192.168.1.1
  • DDOSリフレクションUDPサービスを探すスキャン
root@kitploit:~
Scan for UDP DDOS reflectors	    nmap –sU –A –PN –n –pU:19,53,123,161 –script=ntp-monlist,dns-recursion,snmp-sysdescr 192.168.1.0/24
  • HTTPサービス情報
root@kitploit:~
Gather page titles from HTTP services	   nmap --script=http-title 192.168.1.0/24
Get HTTP headers of web services	       nmap --script=http-headers 192.168.1.0/24
Find web apps from known paths	         nmap --script=http-enum 192.168.1.0/24
  • Heartbleed SSL脆弱性の検出
root@kitploit:~
Heartbleed Testing	      nmap -sV -p 443 --script=ssl-heartbleed 192.168.1.0/24
  • IPアドレス情報
root@kitploit:~
Find Information about IP address	nmap --script=asn-query,whois,ip-geolocation-maxmind 192.168.1.0/24
  • ポート1から65535までのサービスをスキャン
root@kitploit:~
nmap -sV -p 1-65535 192.168.1.1/24
  • 全ポート、全サービスバージョン、シンプルスクリプト=開いているポートのみ
root@kitploit:~
nmap -p- -sV -sC $IP --open
ツールをダウンロード