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 44bf40f commit d387e2bCopy full SHA for d387e2b
modules/auxiliary/scanner/ssh/ssh_erlangotp.rb
@@ -153,8 +153,9 @@ def run_host(target_host)
153
begin
154
sock.get_once(1024, 5)
155
# when the target is vulnerable you get at this step: rescue Rex::TimeoutError
156
- rescue EOFError
+ rescue EOFError, Errno::ECONNRESET
157
# when the target is NOT vulnerable/patched at this step.
158
+ print_error(message('The target is not vulnerable to CVE-2025-32433.'))
159
return Exploit::CheckCode::Safe
160
end
161
sock.close
0 commit comments