Skip to content

Commit 9f05a7d

Browse files
committed
Removed unneeded custom timeout
1 parent e1616a5 commit 9f05a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/exploits/linux/http/hikvision_cve_2021_36260_blind.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def check
116116
'method' => 'PUT',
117117
'uri' => normalize_uri(target_uri.path, '/SDK/webLanguage'),
118118
'data' => payload
119-
}, 10)
119+
})
120120

121121
return CheckCode::Unknown("Didn't receive a response from the target.") unless res
122122
return CheckCode::Safe('The target did not respond with a 200 OK or 500 error') unless (res.code == 200 || res.code == 500)

0 commit comments

Comments
 (0)