Assuming that the .php and .aspx extensions have been hidden from the URLs, are there any clues in the HTML that might suggest the site is coded in either php or asp?
Cheers.
|
Assuming that the .php and .aspx extensions have been hidden from the URLs, are there any clues in the HTML that might suggest the site is coded in either php or asp? Cheers. |
||||
|
|
|
Check the website out @ BuiltWith |
|||||||||||||||||||||
|
|
You can take a look at the HTTP headers the server is sending as part of its response, with a firefox extension like LiveHTTPHeaders or firebug. Sometimes (not always), this information is given in one of those. For instance, on SO, you only have :
On microsoft.com, you have more informations :
On wikipedia :
And, on sun.com :
So, depends on the configuration of the server... But it sometimes allow you to get the information you are looking for ;-)
For cookies, for instance :
Or, as a last possibility, you can try "dumb pages" like phpinfo.php, test.php, info.php, and so on : sometimes, developpers forget to remove those -- but it's really an idea that you'll use as a last hope, I suppose ^^ |
||||
|
|
|
If the HTML is a mess then you have 90% chance it's been developed in .NET. |
|||||||||||||||
|
|
One possibility to determine whether PHP is installed on the server is described at http://shiflett.org/blog/2006/feb/php-easter-eggs Try http://yoursite/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 This can also be disabled by server conf and some people do. |
|||
|
|
|
Examine HTML, JavaScripts, headers and everything you have carefully and you may get some clues. For example, in StackOverflow HTML you can find code like this
so, it is asp.net (or at least advertisment engine use ASP.NET) :) However, if author of the web site will be very carefull, he can clean up all clues (and probably even give you wrong clues, like assigning *.PHP files to be processed by aspnet_iisapi filter. Why not ? When you se controls names like ctl00_Blogs_usercontrols_public_community_latestblogposts_ascx1_repeaterBlogPosts_ctl03_hlTitle this is for sure ASP.NET :) Also, look at JavaScript function/file/variable names. Sometimes developers use 3rd party products and tools. If you see vendor or product name is a part of javascript name you can search what is it and probably when you define a vendor, you will define a developer platform. For example code like this
means that Telerik control is used and Telerik produces only .NET controls. |
||||
|
|
|
An old question, but it came up today when I was asked to write code for a server for which I have no technical information. The Firebug headers and BuiltWith utility mentioned above helped a lot. Yet, I also found typing the name of a non-existent ASPX page to be a quick way to tell, e.g., http://[yourwebsite]/fakepage.aspx And rather than just a "404 Page Not Found" error you'll get an ASP.NET error page saying
(provided custom error pages aren't enabled in the config file) Even then, PHP could coexist with .NET ... but at least you've answered half the question. |
|||
|
|
|
There are clues you can look for as many have pointed out, but I don't believe any of it is really that reliable. If someone really wanted to make you think their PHP site is developed in ASP.NET or vice versa, they probably could. Keep in mind also that the two aren't mutually exclusive. You could build a single site from both technologies. |
|||
|
|
|
One method you can try is adding "index.php" onto the url, or "default.aspx", ect. Most websites use setup defaults for the front page to avoid the configuration hassles involved with moving away from such default. Where notable defaults include:
Granted, this is not foolproof, it is, very easy to test. |
||||
|
|
|
A lot of times ASP.Net websites will have ViewState, so you can look for that attribute in a tag on a page. Other than that, there is no real distinguishable differences (as far as I know) that are noticeable strictly from looking at the page and it's HTML. Granted, there are probably things that are ASP.Net specific - like certain controls such as some third party controls. |
|||
|
Look for a form submission page and check what extension the action is submitting to. It doesn't catch a lot of MVC frameworks, but it does provide a few quick wins. |
|||
|
|
|
All the answers are correct, but at the end it is still possible that you can't determine with what a website is built except by asking the developer directly. |
|||
|
|
|
Send an e-mail to the site administrator saying you really like their site and were wondering what technologies were used to crerate it. Some people are very helpful and will reply (some, of course, aren't or are forbidden by corporate policy). |
|||
|
|
|
You can use a site like : http://www.examineurl.com You give the URL of the server and it can show you information of the server ! |
|||
|
|