How to Continue Browsing Websites with Insecure SSL Certificates
TLDR
- When a browser displays an SSL security warning without a "Proceed to site" option, you can bypass the restriction by typing
thisisunsafeon your keyboard. - This method is intended only for development environments or known-secure internal testing sites; do not use it on the public internet.
- Browser warnings typically occur due to expired certificates, self-signed certificates, domain name mismatches, or untrusted certificate authorities.
Reasons for Insecure SSL Certificates
When will you encounter an SSL security warning? When a browser detects insufficient connection security, it triggers a warning mechanism. Common reasons include:
- The SSL certificate is self-signed and not issued by a trusted certificate authority.
- The SSL certificate has expired.
- The certificate content does not match the domain name being accessed.
- The browser does not trust the certificate's issuing authority.
- Test certificates used in internal development environments.
How to Bypass SSL Warnings in Chrome
Standard Scenario
When will you encounter this scenario? When the browser page provides an "Advanced" option.
Steps:
- Click the "Advanced" option.
- Click the "Proceed to site (unsafe)" link.
- The browser will navigate to the target website.

Special Scenario (No "Proceed" Option)
When will you encounter this scenario? When the browser enforces HSTS (HTTP Strict Transport Security) or has stricter security policies, resulting in no "Proceed" link being provided.
Steps:
- Ensure the Chrome browser window is in focus.
- Simply type
thisisunsafeon your keyboard (no need to click any input box; characters will not appear on the screen while typing). - Once entered, the page will automatically redirect to the target website.

Security Warning
thisisunsafe is a hidden browser feature. It is only recommended for use in development or testing environments where you clearly understand the risks. Do not use this method to bypass security checks when accessing unknown external websites.
Changelog
- 2025-03-23 Initial document created.
