dchudz / eth-phishing-detect

Utility for detecting phishing domains targeting Ethereum users

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eth-phishing-detect

Greenkeeper badge

Utility for detecting phishing domains targeting Ethereum users.

basic usage

const checkForPhishing = require('eth-phishing-detect')

const value = checkForPhishing('etherclassicwallet.com')
console.log(value) // true

advanced usage

const PhishingDetector = require('eth-phishing-detect/src/detector')

const detector = new PhishingDetector({ whitelist, blacklist, fuzzylist, tolerance })
const value = detector.check('etherclassicwallet.com')
console.log(value)
/*
{
  type: "blacklist",
  result: true,
}
*/

About

Utility for detecting phishing domains targeting Ethereum users


Languages

Language:JavaScript 100.0%