Go to file
Dan Finlay 817644972a
Remove oasis from fuzzy list
The oasis name is so short that it has been triggering an unreasonable number of false positives. I am removing it for now.

Fixes #3732
Fixes #3728
Fixes #3726
Fixes #3725
Fixes #3724
Fixes #3720
Fixes #3719
Fixes #3718

And many more, we'll have to close many after this is merged. Opening PR to run tests.
2020-03-02 11:18:42 -08:00
.circleci ci - attempt to fix CI test output 2017-08-29 09:43:18 -07:00
example Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
src Remove oasis from fuzzy list 2020-03-02 11:18:42 -08:00
test Changed MEW endpoints #2280 2018-08-23 22:38:04 +01:00
.gitignore init commit 2017-08-02 18:56:16 -07:00
index.html Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
LICENSE license - add license file and update license in package.json 2018-04-04 08:41:04 -07:00
package-lock.json Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
package.json Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
README.md Create block policy 2020-02-26 09:55:05 -08:00

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

Blocking Policy

We are constantly evolving the ideal policy that guides this list, but a few clearly defined rules have emerged. We will be quick and decisive to block websites that:

  • Impersonate other known and established sites.
  • Use their interfaces to collect user signing keys (especially cryptocurrency keys) and send them back to home servers.

There are other grounds for blocking, and we will ultimately do our best to keep our users safe.

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,
}
*/