File tree Expand file tree Collapse file tree
modules/auxiliary/scanner/ftp Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,20 +7,25 @@ class MetasploitModule < Msf::Auxiliary
77 include Msf ::Exploit ::Remote ::Ftp
88 include Msf ::Auxiliary ::Scanner
99
10- def initialize
10+ def initialize ( info = { } )
1111 super (
12- 'Name' => 'FTP Version Scanner' ,
13- 'Description' => 'Detect FTP Version.' ,
14- 'Author' => [
15- 'hdm' ,
16- 'g0tmi1k' # @g0tmi1k - additional features
17- ] ,
18- 'License' => MSF_LICENSE ,
19- 'Notes' => {
20- 'Stability' => [ CRASH_SAFE ] ,
21- 'Reliability' => [ ] ,
22- 'SideEffects' => [ IOC_IN_LOGS ]
23- }
12+ update_info (
13+ info ,
14+ 'Name' => 'FTP Version Scanner' ,
15+ 'Description' => %q{
16+ This module tries to identify the version of an FTP service by reading its banner.
17+ } ,
18+ 'Author' => [
19+ 'hdm' ,
20+ 'g0tmi1k' # @g0tmi1k - additional features
21+ ] ,
22+ 'License' => MSF_LICENSE ,
23+ 'Notes' => {
24+ 'Stability' => [ CRASH_SAFE ] ,
25+ 'Reliability' => [ ] ,
26+ 'SideEffects' => [ IOC_IN_LOGS ]
27+ }
28+ )
2429 )
2530
2631 register_options (
You can’t perform that action at this time.
0 commit comments