Windows paths need 2 backslashes

bug/bundler_fix
jvazquez-r7 2014-11-30 18:54:41 -06:00
parent 223bc340e4
commit ff30a272f3
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ class Metasploit3 < Msf::Auxiliary
'Description' => %q{
This module exploits an arbitrary file download vulnerability in CSVServlet
on ManageEngine NetFlow Analyzer. This module has been tested on both Windows
and Linux with versions 8.6 to 10.2. Windows paths have to be escaped with 4
and Linux with versions 8.6 to 10.2. Windows paths have to be escaped with 2
backslashes on the command line.
},
'Author' =>
@ -38,7 +38,7 @@ class Metasploit3 < Msf::Auxiliary
Opt::RPORT(8080),
OptString.new('TARGETURI',
[ true, "The base path to NetFlow Analyzer", '/netflow' ]),
OptString.new('FILEPATH', [true, 'Path of the file to download (escape Windows paths with 4 back slashes)', '/etc/passwd']),
OptString.new('FILEPATH', [true, 'Path of the file to download (escape Windows paths with 2 back slashes)', '/etc/passwd']),
], self.class)
end