Skip to content

Utility for detecting phishing domains targeting Ethereum users

License

Notifications You must be signed in to change notification settings

marsrobertson/eth-phishing-detect

This branch is 68049 commits behind MetaMask/eth-phishing-detect:master.

Folders and files

NameName
Last commit message
Last commit date
Aug 29, 2017
Nov 10, 2018
Mar 21, 2019
Aug 23, 2018
Aug 3, 2017
Apr 4, 2018
Nov 10, 2018
Nov 10, 2018
Nov 10, 2018
Nov 10, 2018

Repository files navigation

eth-phishing-detect

Greenkeeper badge

Utility for detecting phishing domains targeting Ethereum users.

For checking why a given domain was blocked, try our interactive page here

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.1%
  • HTML 0.9%