• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Explained : This site works only in browsers with SNI support

By Abhishek Ghosh June 14, 2017 8:47 pm Updated on June 14, 2017

Explained : This site works only in browsers with SNI support

Advertisement

If you have shared host or a cloud or virtual or dedicated server or service hosting multiple domains, it is normal to face the message – This site works only in browsers with SNI support. It’s not an error, it’s a warning message. It is a thing related to IPv4 and initial days with TLS. We are trying to explain the implication of the error message and in very short, for ordinary websites like a personal website such error in general has no negative impact. Such if happened with this website it would be not perfect – a running blog with ads needs a dedicated IP. Number of IPv4 is limited and IPv6 unfortunately not so much popular yet. You have to tolerate the message for not so very important things for next one decade or so.

 

Explained : This site works only in browsers with SNI support

 

SNI is a feature extension of TLS. SNI stands for server name indication. On IPv4, one IP on a server like this IP 31.14.136.224 normally opens one domain. If single server has multiple domains then obviously IP logically should open one website. While creating a TLS connection, the client (read browser) requests a certificate from the web server with one IP. When the web server sends the certificate, the client examines it and compares the name it was trying to connect with the names included in the certificate. If a match occurs, the connection is normally proceed. If match is not found, user may be warned of the mismatch as it can be a try to run man-in-the-middle attack.

In name-based virtual hosting, we host multiple domains on a single web server with one IP address. While using HTTPS, the TLS handshake happens before the server sees any HTTP headers. It is not possible for the server send information in the HTTP host header to decide which certificate to present from the same IP address.

Advertisement

---

Server With SNI, you can enable multiple SSL certificates on a single IP. It is true that you can create two or more https sites on a VPS with only one IP address.

This site works only in browsers with SNI support

 

Is the message “This site works only in browsers with SNI support” can be fixed?

 

Almost no. But most modern operating system and sane browsers will not show error. That thing is fixed from servers, browsers etc by patching. Fixing means the usage of available patches which allow such usage :

Vim
1
https://tools.ietf.org/html/rfc6066

If you run cURL against your one multiple domain on a single IP:

Vim
1
curl -I https://abhishekghosh.pro

and receive no error, it simply means that the thing is correct.

 

Security Concerns

 

This command will not return error (replace with own domain with one IP multiple domains) :

Vim
1
curl -I https://abhishekghosh.pro

but this will return error (replace with own domain with one IP multiple domains) :

Vim
1
openssl s_client -connect abhishekghosh.pro:443

Try this, you’ll get no error (replace with own domain with one IP one domain) :

Vim
1
openssl s_client -connect thecustomizewindows.com:443

These kind of bug of security exploit is not uncommon with SNI :

Vim
1
2
http://www.cvedetails.com/cve/CVE-2013-4508/
https://nvd.nist.gov/vuln/detail/CVE-2013-4508

On a non-SNI-based web server set-up multiple domain configuration with one IP would not work. There is Apache2 directive to set whether a non-SNI client is allowed to access a name-based virtual host or not. This configuration will make SNI support to force the SNI supporting browsers to allow the website :

Vim
1
2
3
4
5
6
7
8
9
Listen 443
NameVirtualHost *:443
SSLStrictSNIVHostCheck off
<VirtualHost *:443>
  DocumentRoot /www/var/html
  ServerName www.example.com
...
...
</VirtualHost>

Default is off, hence the directive not needed. But for one server one IP setup, this is more secure :

Vim
1
2
3
4
5
6
7
8
9
Listen 443
NameVirtualHost *:443
SSLStrictSNIVHostCheck on
<VirtualHost *:443>
  DocumentRoot /www/var/html
  ServerName www.example.org
...
...
</VirtualHost>

But it can wrongly block legit visitors. There are more funny stories around making the SSLStrictSNIVHostCheck on interesting :

Vim
1
https://www.mnot.net/blog/2014/05/09/if_you_can_read_this_youre_sniing

Inference is – for a very secured subdomain of your website, you can take the risk to use SSLStrictSNIVHostCheck on for single server single IP setup.

Tagged With This site works only in browsers with SNI support , site works only in browsers with sni support , ssllabs This site works only in browsers with SNI support , sni works from host only , sni explained , No default SSSL site has been created to support browsers without SNI capabilities it is recommended to create a default SSL site , no default site has been created to support browsers without SNI capabilities it is recommended , nexon site works on which browsers , browsers with sni support , this site works only in browsers with sni support ssl labs

This Article Has Been Shared 211 Times!

Facebook Twitter Pinterest
Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Orthopaedic Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Explained : This site works only in browsers with SNI support

  • SELinux and Security in the Context of Cloud Servers

    SELinux Was Developed By United States National Security Agency (NSA). SELinux and Security in the Context of Cloud Servers Can Be Questionable.

  • Security Concerns of Server Virtualization and Solutions

    Recent discovery of VENOM and related critical bugs in the Xen, KVM, and native QEMU virtual machine platforms again brought the topic Security Concerns of Server Virtualization in to lime light. VENOM was unknown, from Heartbleed, what we have learned is quite clear – frankly there is nothing to do with the unknown, undiscovered bugs […]

  • Brute Force SSH Test Own Server With ncrack, hydra, medusa

    Here is Real Life Way to Brute Force SSH Test Own Server With ncrack, hydra, medusa. These will give you idea why odd log entries appear too.

  • Can Cloud Check Ransomware Attacks?

    Can ‘Cloud’ Check Ransomware Attacks? Antivirus Like Softwares Are Designed to Block Attempts By Ransomware From Encrypting Data & Ask Money.

  • Google Discontinues PageSpeed Service Promoting EdgeCast

    Google Discontinues PageSpeed Service Promoting EdgeCast. Google, Widely Known For Mass Surveillance Tools Will Discontinue it From 3rd August.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

You can subscribe to our Free Once a Day, Regular Newsletter by clicking the subscribe button below.

Click To Subscribe

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (21K Followers)
  • Twitter (5.3k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • How Startups Can Convince the Investors April 14, 2021
  • What to Know About the Cloud Storage Services for Smartphones April 13, 2021
  • WonderFox HD Video Converter Factory Pro Review April 10, 2021
  • What is the Maximum Cable Length Between Arduino/ESP32 and a Sensor April 8, 2021
  • Is the Blockchain Hype Running Out of Breath? April 7, 2021

 

About This Article

Cite this article as: Abhishek Ghosh, "Explained : This site works only in browsers with SNI support," in The Customize Windows, June 14, 2017, April 16, 2021, https://thecustomizewindows.com/2017/06/explained-site-works-browsers-sni-support/.

Source:The Customize Windows, JiMA.in

 

This website uses cookies. If you do not want to allow us to use cookies and/or non-personalized Ads, kindly clear browser cookies after closing this webpage.

Read Cookie Policy.

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2021 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy