|
|
|
|
|
by goodthink
229 days ago
|
|
I have yet to see any bots figure out how to get past the Basic Auth protecting all links on my (zero traffic) website. Of course, any user following a link will be stopped by the same login dialog (I display the credentials on the home page).
The solution is to make the secrets public. ALL websites could implement the same User/Pass credentials:
User: nobots
Pass: nobots
Can bot writers overcome this if they know the credentials? |
|
Yes, instead of doing just a HTTP request, do a HTTP request with authentication, trivial really. Probably the reason they "can't" do that now is because they haven't came across "public content behind Basic Auth with known correct credentials", so the behavior hasn't been added. But it's literally loading http://username:password@example.com instead of http://example.com to use Basic Auth, couldn't be simpler :)