We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4766d commit a5a3f40Copy full SHA for a5a3f40
modules/auxiliary/scanner/http/novell_mdm_creds.rb
@@ -84,6 +84,15 @@ def run_host(ip)
84
user,pass = get_creds(session_id,cmd)
85
print_good("Got creds. Login:#{user} Password:#{pass}")
86
print_good("Access the admin interface here: #{ip}:#{rport}#{target_uri.path}dashboard/")
87
+
88
+ report_auth_info(
89
+ :host => ip,
90
+ :port => rport,
91
+ :sname => "novellmdm",
92
+ :user => user,
93
+ :pass => pass,
94
+ :active => true
95
+ )
96
else
97
print_error("Zenworks MDM does not appear to be running at #{ip}")
98
return :abort
0 commit comments