-
Notifications
You must be signed in to change notification settings - Fork 621
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
**Why**: This would make users aware that there is some kind of connectivity issue to the server, be it some strange SSL/TLS configuration or a required client certificate. **How**: ``` $ mkdir -p /tmp/ssl $ cd /tmp/ssl $ openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes $ openssl s_server -tls1_2 -key key.pem -cert cert.pem -CAfile cert.pem -accept 8443 -www -Verify 1 openvas-nasl -X -B -d -t 127.0.0.1 -i $VTDIR find_service.nasl --kb="Ports/tcp/8443=1" ``` (cherry picked from commit 21680c3) Co-authored-by: Juan José Nicola <[email protected]>
- Loading branch information
1 parent
f148a92
commit 61b0e05
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters