Finally - PHP has NoIndex on phpinfo output
This post is more than 18 months old. Since technology changes too rapidly, this content may be out of date (but
that's not always the case). Please remember to verify any technical or programming information with the current
release.
A big issue with PHP security had been the developers creating a php info page and not removing it from a production site. As you may know, phpinfo()
will dump a ton of useful information (for the developer - as well as the cracker) to the screen:
phpinfo();
I can’t imagine how many versions of that are out on various servers…
Actually, let’s take a look with this google query…
More than a million returns (granted they’re not all phpinfo()
calls… but it gives you a good idea…)
There is Hope
With the release of 5.2.1 of PHP, phpinfo()
now outputs the following meta tag:
<meta content="NOINDEX,NOFOLLOW,NOARCHIVE" name="ROBOTS"></meta>
This will slowly but surely stop compliant robots (see: google, yahoo… not crackerMcCrackenstein.com) from archiving these… yes!