I often come across some nice web sites and I want to know what technologies (PHP, JSP, ASP.NET, etc) are used to build those web sites.

The web address of some web sites end with ".aspx", ".php", ".jsp", etc. But some web address do not contains any indicators.

Is there any systematic way we can use to know the technologies used by a web site?

Thanks.

link|improve this question

Interesting question... I'd bet "no", but lets see... =D – Cipi May 15 '10 at 16:17
3  
There are various things you can do to take an educated guess but, frankly, it shouldn't matter. No server side technology can present something to the client unless every other server side technology can do so also. The only people who it actually matters to are those of have to maintain or develop the backend of the site. – Quentin May 15 '10 at 16:20
There is definitely a website that used to tell me which platform is used. I am trying to remember. – CodeToGlory May 15 '10 at 16:21
3  
I would say that what you like is the UI. A good combination of HTML + JS + CSS. At the end doesn't matter what server side technology is the site using as long the output is HTML – Gabriel Sosa May 15 '10 at 16:22
@CodeToGlory: If you are refering to netcraft, it can say what server it believes a site is using, not the technology actually used. – nc3b May 15 '10 at 16:25
feedback

4 Answers

up vote 3 down vote accepted

Technically it should be impossible to find out what server-side technology a site uses. After all, all you get is HTML, right ? Often you might get lucky and see indications in error messages (for instance if the administrator hasn't disabled the signature, sometimes when you call a page that doesn't exist you get the version of the HTTP server and sometimes also the distribution. For example, if PHP is not set to shut up, it will also add it's bit to the signature).

Back to your question, in the general case, if the administrator pursues it enough I believe he can completely hide/fake the server-side technology the site is using.

link|improve this answer
Asp.Net does have distinctive error messages, though. :) – Robusto May 15 '10 at 16:25
4  
@Robusto: I have 0 experience with asp.net, but if IIS is worth it's money I believe this can be disabled or custom error pages can be delivered. – nc3b May 15 '10 at 16:26
feedback

If you're using Firefox, install Firebug and look under the Net tab.

Under the Headers tab, the X-Powered-By field under Response Headers will give hints on the type of page being served.

link|improve this answer
This can be overridden. See for example this site. The Server header is also interesting by the way. – BalusC May 15 '10 at 16:29
Yep, like I mentioned, it only provides hints :) And you're right, the Server header does provide additional interesting info, especially since not all servers return the X-Powered-By header e.g apache.org. – Mr Roys May 15 '10 at 16:32
feedback

BuiltWith is a good starting point. Note it is not 100% accurate.

link|improve this answer
feedback

Extensions(asp/asp.net/php/jsp/py) might Help to get, but rewriting can hide the extensions. Technically, the best way to detect the technology used is to view the SourceCode. __doPostBack() function generally is used in asp.net forms(not MVC), ViewState in encoded form generally points to an ASP.NET

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.