I am building a webpage that gives statistics about websites of the user.
You enter your URL and get a bunch of results.
My main focus are websites that are build on the Sitecore cms.
At the moment I can detect if the site uses Sitecore only when the '/sitecore/login'
page is availabe.
For this I use:
var webclient = new WebClient();
var source = webclient.DownloadString(url);
But when admins decide to crank up the security they can make 'sitecore/login'
unaccessible for random users.
When this is the case my code obviously does not work.
Does anyone know a better solution how to detect if the Sitecore cms is used?
Remember it is an external website so no access to the sitecore backend.
(p.s. I do not want to use 3th party tools)
Thanks in advance!