「MetasploitでFTPサーバのバージョンを調べる」の版間の差分

提供: セキュリティ
移動: 案内検索
(ページの作成:「Metasploit を利用して、FTPサーバのバージョンを調査してみましょう。 '''読み方''' ;Metasploit:めたすぷろいと __TOC__ == 概要...」)
 
行22: 行22:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
== 関連項目 ==
 
== 関連項目 ==
 +
* [[MetasploitでAnonymous FTPアクセスの検出を行う]]
 
* [[Metasploit]]
 
* [[Metasploit]]
 
<!-- vim: filetype=mediawiki
 
<!-- vim: filetype=mediawiki
 
-->
 
-->

2016年1月11日 (月) 17:03時点における版

Metasploit を利用して、FTPサーバのバージョンを調査してみましょう。

読み方

Metasploit
めたすぷろいと

概要

Metasploit を利用して、FTPサーバのバージョンを調査してみましょう。

ftp_version モジュールを利用して簡単に調べられます。

使い方

ターゲットを1つに絞って、実行する例です。

msf > use auxiliary/scanner/ftp/ftp_version
msf auxiliary(ftp_version) > set RHOSTS 192.168.60.149
RHOSTS => 192.168.60.149
msf auxiliary(ftp_version) > run
 
[*] 192.168.60.149:21 FTP Banner: '220 (vsFTPd 2.3.4)\x0d\x0a'
[*] Scanned 1 of 1 hosts (100% complete)
[*] Auxiliary module execution completed

関連項目