You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is not possible to communicate with web servers requesting a TLS renegotiation:
$ monsoon test --value example https://www.example.com/path/FUZZ
Target URL: https://www.example.com/path/FUZZ
status header body value extract
Err 0 0 example local error: tls: no renegotiation
processed 1 HTTP requests in 0m00s
1 of 1 requests shown
To fix this, the constant RenegotiateOnceAsClient needs to be set for the TLS client configuration as suggested in this StackOverflow answer. This could be for example included in the --insecure-ciphersuites flag:
monsoon test --insecure-ciphersuites --value example https://www.example.com/path/FUZZ
Target URL: https://www.example.com/path/FUZZ
status header body value extract
404 228 3284 example
processed 1 HTTP requests in 0m01s
1 of 1 requests shown
404: 1
The text was updated successfully, but these errors were encountered:
Currently, it is not possible to communicate with web servers requesting a TLS renegotiation:
To fix this, the constant RenegotiateOnceAsClient needs to be set for the TLS client configuration as suggested in this StackOverflow answer. This could be for example included in the
--insecure-ciphersuites
flag:The text was updated successfully, but these errors were encountered: