File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
modules/post/windows/gather Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -23,17 +23,22 @@ class Metasploit3 < Msf::Post
23
23
24
24
def initialize ( info = { } )
25
25
super ( update_info ( info ,
26
- 'Name' => "Windows Enumerate Applied Patches" ,
26
+ 'Name' => "Windows Gather Applied Patches" ,
27
27
'Description' => %q{
28
28
This module will attempt to enumerate which patches are applied to a windows system
29
29
based on the result of the WMI query: SELECT HotFixID FROM Win32_QuickFixEngineering
30
30
} ,
31
31
'License' => MSF_LICENSE ,
32
32
'Platform' => [ 'win' ] ,
33
33
'SessionTypes' => [ 'meterpreter' ] ,
34
- 'Author' => [
34
+ 'Author' =>
35
+ [
35
36
'zeroSteiner' , # Original idea
36
37
'mubix' # Post module
38
+ ] ,
39
+ 'References' =>
40
+ [
41
+ [ 'URL' , 'http://msdn.microsoft.com/en-us/library/aa394391(v=vs.85).aspx' ]
37
42
]
38
43
) )
39
44
@@ -65,6 +70,7 @@ def run
65
70
return
66
71
end
67
72
kb_ids = objects [ :values ] . map { |kb | kb [ 0 ] }
73
+ print_debug ( kb_ids . inspect )
68
74
report_info ( patches , kb_ids )
69
75
else
70
76
print_error "ExtAPI failed to load"
You can’t perform that action at this time.
0 commit comments