2017-06-12 1 views
1

Je suis très confus. Je possède un domaine que j'ai acheté chez GoDaddy et qui a été construit en utilisant EmberJS et hébergé via Firebase. Pourtant, si je consulte ce site Web sur Builtwith.com et vérifie avec quoi il est construit, je reçois Query_ResultsPourquoi BuiltWith.com renvoie-t-il des informations incorrectes sur mon site Web?

Et je ne comprends pas parce que je n'utilise aucun de ces services Microsoft que ce soit. Est-ce que quelqu'un sait pourquoi BuiltWith donne de fausses informations sur mon site?

+2

GoDaddy exécute IIS. – SLaks

+0

Ou Firebase utilise IIS pour servir l'application. – Lux

Répondre

2

Comme SLaks mentionné dans les commentaires, il est probable que godaddy.com utilise IIS et ASP.NET (au moins sur la fin la plus externe de la demande). Plus précisément, builtwith.com utilise probablement les en-têtes HTML communs X-Powered-By et Server pour déterminer quels serveurs sont utilisés. Si vous curlgodaddy.com, vous verrez qu'ils utilisent effectivement IIS et ASP.NET. La sortie suivante, en particulier les Server et X-Powered-By têtes:

➜ ~ curl -vvv godaddy.com 
* Rebuilt URL to: godaddy.com/ 
* Trying 208.109.4.218... 
* TCP_NODELAY set 
* Connected to godaddy.com (127.0.0.1) port 80 (#0) 
> GET/HTTP/1.1 
> Host: godaddy.com 
> User-Agent: curl/7.51.0 
> Accept: */* 
> 
< HTTP/1.1 301 Moved Permanently 
< Cache-Control: no-cache, no-store, must-revalidate 
< Pragma: no-cache 
< Content-Length: 141 
< Expires: 0 
< Location: https://www.godaddy.com/ 
< Server: Microsoft-IIS/7.0 
< P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR OUR IND" 
< X-Powered-By: ARR/2.5 
< X-Powered-By: ASP.NET 
< P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" 
< Date: Mon, 12 Jun 2017 23:23:34 GMT 
< 
<html><head><title>Object moved</title></head><body> 
<h2>Object moved to <a href="https://www.godaddy.com/">here</a>.</h2> 
</body></html> 
* Curl_http_done: called premature == 0 
* Connection #0 to host godaddy.com left intact 

Si vous exécutez la même curl sur votre site Web, vous verrez probablement les mêmes Server et X-Powered-By-têtes qui reviennent sur votre site.