vote up 2 vote down star
1

The Google Safe Browsing API allows for URLs to be checked against Google's database of malware and phishing domains. However, on the Developer's Guide page, it says that the API is experimental and the data format is likely to change.

Although I have had good experiences with a number of Google's APIs in the past, they have all been fairly stable. I don't think I'm willing to use an experimental API in my project, so I'm looking for an alternative.

flag

3 Answers

vote up 3 vote down check

There are a number of DNS blacklists available. See this page for background information on blacklists.

link|flag
Do you have any experiences or recommendations? I'll start looking, but there are a lot of choices, so anything to eliminate one or move one closer to the top of the list would be great. – Thomas Owens Oct 13 '08 at 13:28
I run several filter servers using the DansGuardian proxy. The best blacklists I've found are at: urlblacklist.com – Steve Moyer Oct 16 '08 at 1:12
vote up 1 vote down

BrightCloud just released an API for URL classification that is more comprehensive than the Google Safe Browsing API - it does cost money but it's cheap. In addition to categories like "Adult" and "Gambling" it also has security oriented categories like phishing, malware, and spam.

The full list of categories is here: http://brightcloud.com/masterdburllist.asp

link|flag
vote up 1 vote down

You could build your own locally-cached black list. If something comes back as bad from the Google API add it to your own local cache otherwise you can test it yourself.

link|flag
That's still relying on the Google API. If it changes, I won't be able to generate a black list anymore. – Thomas Owens Oct 13 '08 at 13:27
No... it uses the GoogleAPI to keep a central cache up to date. If google changes things you can fix them at a central location rather than have to fix all copies of the code. – epochwolf Oct 13 '08 at 13:29
But I don't want to use an unstable Google API at all. – Thomas Owens Oct 13 '08 at 13:30
@epochwolf-- :-) Exactly. – Onorio Catenacci Oct 13 '08 at 13:31
@Thomas Owens--exactly how unstable would you expect any Google API to be? I mean you said it yourself--the Google API's tend to be pretty stable. So why avoid an API on the slim possibility that you may have to change code some day. Show me working code that doesn't ever have to be changed :-) – Onorio Catenacci Oct 13 '08 at 13:35

Your Answer

Get an OpenID
or

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