URL verification service for malware or phishing?

Is there a service that allows me to check the url to find out if it could be a dangerous site?

When a user exits our application by clicking on an unreliable link, we sent them through the screen "Are you sure you want to leave". It would be nice to do a quick check to see if the user should be warned.

+8
security php web-services phishing
source share
3 answers

Try the Google Safe Browsing API .

The Google Safe Browsing API The Safe API is an experimental API that allows applications to check URLs against constantly updated lists of suspicious phishing pages and Google malware.

+5
source share

You can use the Google Safe Browsing API to check if the URL is safe according to what they know about it. ( API documentation )

0
source share

What about z-protect.com?

Report example: http://www.z-protect.com/report/stackoverflow.com/ this system uses a dns server to block pages ... maybe interesting?

This service has an api! but with a limit of 10,000 requests per day: http://www.z-protect.com/api

-one
source share

All Articles