File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
modules/post/linux/manage Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,23 @@ def initialize(info={})
15
15
super ( update_info ( info ,
16
16
'Name' => 'Linux Manage Download and Execute' ,
17
17
'Description' => %q{
18
- This module downloads and runs a file with bash. It first tries to uses curl as
19
- its HTTP client and then wget if it's not found. Bash found in the PATH is used to
20
- execute the file.
18
+ This module downloads and runs a file with bash. It first tries to uses curl as
19
+ its HTTP client and then wget if it's not found. Bash found in the PATH is used
20
+ to execute the file.
21
21
} ,
22
22
'License' => MSF_LICENSE ,
23
23
'Author' =>
24
24
[
25
25
'Joshua D. Abraham <jabra[at]praetorian.com>' ,
26
26
] ,
27
- 'Platform' => [ 'linux' ] ,
28
- 'SessionTypes' => [ 'shell' ]
27
+ 'Platform' => [ 'linux' ] ,
28
+ 'SessionTypes' => [ 'shell' , 'meterpreter' ]
29
29
) )
30
30
31
31
register_options (
32
32
[
33
33
OptString . new ( 'URL' , [ true , 'Full URL of file to download.' ] )
34
34
] , self . class )
35
-
36
35
end
37
36
38
37
def cmd_exec_vprint ( cmd )
You can’t perform that action at this time.
0 commit comments