You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Official python API for Phish.AI public and private API to detect zero-day phishing websites
How it Works (TLDR)
Essentially we have a very big computer vision database of known websites and their legitimate domains.
The API surf to a given website takes a screenshots of the website and then compare it with our database and if we detect that it is similar to a known website but hosted on a different domain we classify it as malicious and classify the targeted brand (which website this site tries to mimic).
The Engine is in beta and doesn't protect all brands yet. we make the database bigger every day, if you believe your brand is not in our database and you want us to crawl it, just drop me a line at yp@phish.ai
Privacy Policy
The full privacy policy is at: https://www.phish.ai/phish-ai-privacy-policy/. By using the Public API you agree to our Privacy Policy and allow us to share your submission with the security community. If you want a Private API Key please contact us at info@phish.ai.
from __future__ importprint_functionfromphish_ai_apiimportAPIph=API(api_key='None or private api key you can request at info@phish.ai')
res=ph.scan_url('https://google.com')
print(res)
print(ph.get_report(res['scan_id']))