Skip to content

Commit f24c014

Browse files
authored
Update modules/auxiliary/gather/solarwinds_webhelpdesk_backdoor.rb
1 parent c34d20d commit f24c014

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/auxiliary/gather/solarwinds_webhelpdesk_backdoor.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ def initialize(info = {})
4646

4747
def check
4848
@auth = auth
49-
return Exploit::CheckCode::Unknown('Target is unreachable') unless @auth
49+
return CheckCode::Unknown('Target is unreachable') unless @auth
5050

5151
if @auth.code == 401
52-
return Exploit::CheckCode::Safe
52+
return CheckCode::Safe
5353
elsif @auth.code == 200
54-
return Exploit::CheckCode::Appears
54+
return CheckCode::Appears
5555
end
5656

57-
Exploit::CheckCode::Unknown
57+
CheckCode::Unknown
5858
end
5959

6060
def auth

0 commit comments

Comments
 (0)