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 0720356 commit e398025Copy full SHA for e398025
modules/auxiliary/scanner/couchdb/couchdb_login.rb
@@ -62,8 +62,6 @@ def run_host(ip)
62
63
if [200, 301, 302].include?(res.code)
64
vprint_good("#{rhost}:#{rport} - Successful login with '#{user}' : '#{pass}'")
65
- else
66
- vprint_error("#{rhost}:#{rport} - Failed login with '#{user}' : '#{pass}'")
67
end
68
69
rescue ::Rex::ConnectionError
@@ -84,7 +82,6 @@ def do_login(user, pass)
84
82
})
85
83
86
if res and res.code != 200
87
- vprint_error("#{rhost}:#{rport} - Failed login with. '#{user}' : '#{pass}' with code #{res.code}")
88
return :skip_pass
89
else
90
vprint_good("#{rhost}:#{rport} - Successful login with. '#{user}' : '#{pass}'")
0 commit comments