You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/auxiliary/scanner/http/epmp1000_web_login.rb
+57-56Lines changed: 57 additions & 56 deletions
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,23 @@ def initialize(info={})
15
15
super(update_info(info,
16
16
'Name'=>'Cambium ePMP 1000 Login Scanner',
17
17
'Description'=>%{
18
-
This module scans for Cambium ePMP 1000 management login portal(s), and attempts to identify valid credentials. Default login credentials are - admin/admin, installer/installer, home/home and readonly/readonly.
18
+
This module scans for Cambium ePMP 1000 management login portal(s), and attempts to identify valid credentials. Default login credentials are - admin/admin, installer/installer, home/home and readonly/readonly. Tested versions <=3.2.1 (current version). This should work fine for any future releases.
19
19
},
20
20
'Author'=>
21
21
[
22
-
'Karn Ganeshen <KarnGaneshen[at]gmail.com>',
22
+
'Karn Ganeshen <KarnGaneshen[at]gmail.com>'
23
23
],
24
24
'License'=>MSF_LICENSE,
25
-
'DefaultOptions'=>{'VERBOSE'=>true}
26
-
))
25
+
'DefaultOptions'=>{'VERBOSE'=>true})
26
+
)
27
27
28
28
register_options(
29
-
[
30
-
Opt::RPORT(80),# Application may run on a different port too. Change port accordingly.
31
-
OptString.new('USERNAME',[false,"A specific username to authenticate as","admin"]),
32
-
OptString.new('PASSWORD',[false,"A specific password to authenticate with","admin"])
33
-
],self.class)
29
+
[
30
+
Opt::RPORT(80),# Application may run on a different port too. Change port accordingly.
31
+
OptString.new('USERNAME',[false,'A specific username to authenticate as','admin']),
32
+
OptString.new('PASSWORD',[false,'A specific password to authenticate with','admin'])
0 commit comments