Difference between revisions of "Security"

From neil.tappsville.com
Jump to navigationJump to search
m
m
Line 17: Line 17:
  
 
You don't need to look for input field, just type it. It feels strange but it is working.
 
You don't need to look for input field, just type it. It feels strange but it is working.
 +
 +
== Self Signed Certs ==
 +
<code>sudo openssl req -x509 -newkey rsa:4096 -keyout hostname.key.pem -nodes -out hostname.cert.pem -subj '/CN=hostname.domain.com' -days 182 -sha256</code>
 +
 +
place in <code>/etc/pki/tls/private<code> then restart httpd. (nginx)

Revision as of 03:42, 12 February 2021


Chrome untrusted SSL Certs

Click anywhere on the page and type a BYPASS_SEQUENCE

thisisunsafe is a BYPASS_SEQUENCE for Chrome version 65

badidea Chrome version 62 - 64.

danger used to work in earlier versions of Chrome

You don't need to look for input field, just type it. It feels strange but it is working.

Self Signed Certs

sudo openssl req -x509 -newkey rsa:4096 -keyout hostname.key.pem -nodes -out hostname.cert.pem -subj '/CN=hostname.domain.com' -days 182 -sha256

place in /etc/pki/tls/private then restart httpd. (nginx)