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 c34d20d commit f24c014Copy full SHA for f24c014
modules/auxiliary/gather/solarwinds_webhelpdesk_backdoor.rb
@@ -46,15 +46,15 @@ def initialize(info = {})
46
47
def check
48
@auth = auth
49
- return Exploit::CheckCode::Unknown('Target is unreachable') unless @auth
+ return CheckCode::Unknown('Target is unreachable') unless @auth
50
51
if @auth.code == 401
52
- return Exploit::CheckCode::Safe
+ return CheckCode::Safe
53
elsif @auth.code == 200
54
- return Exploit::CheckCode::Appears
+ return CheckCode::Appears
55
end
56
57
- Exploit::CheckCode::Unknown
+ CheckCode::Unknown
58
59
60
def auth
0 commit comments