mirror of
https://github.com/FlipsideCrypto/eth-phishing-detect.git
synced 2026-02-06 11:16:45 +00:00
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. |
||
|---|---|---|
| .circleci | ||
| example | ||
| src | ||
| test | ||
| .gitignore | ||
| index.html | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
eth-phishing-detect
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,
}
*/