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 0f2a3fc commit e358288Copy full SHA for e358288
modules/auxiliary/admin/http/dlink_dsl320b_password_extractor.rb
@@ -23,7 +23,8 @@ def initialize
23
[
24
[ 'URL', 'http://www.dlink.com/de/de/home-solutions/connect/modems-and-gateways/dsl-320b-adsl-2-ethernet-modem' ],
25
[ 'URL', 'http://www.s3cur1ty.de/m1adv2013-018' ],
26
- [ 'EDB', '25252' ]
+ [ 'EDB', '25252' ],
27
+ [ 'OSVDB', '93013' ]
28
],
29
'Author' => [
30
'Michael Messner <[email protected]>',
@@ -66,7 +67,8 @@ def run
66
67
if line =~ /\<sysPassword\ value\=\"(.*)\"\/\>/
68
pass = $1
69
vprint_good("#{rhost}:#{rport} - user: #{@user}")
- pass = Base64.decode64(pass)
70
+ #pass = Base64.decode64(pass)
71
+ pass = Rex::Text.decode_base64(pass)
72
vprint_good("#{rhost}:#{rport} - pass: #{pass}")
73
74
report_auth_info(
0 commit comments