ML based detection of Phishing URL. Chrome Extension product.
- setup venv:
python -m venv venv
- activate venv:
- linux:
source venv/bin/activate
- linux:
pip install -r requirements
- after installing from pip: `
curl
:- single url:
curl -X POST http://127.0.0.1:8000/validate -H 'Content-Type: application/json' -d '{"url":"abc"}'
- list of urls:
curl -X POST http://127.0.0.1:8000/validate -H 'Content-Type: application/json' -d '{"urls": ["abc", "def", "ghi"]}'
- single url: