Skip to content

Commit

Permalink
Chore: Update Phishing Build
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Nov 1, 2024
1 parent 90b6580 commit ab32a1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Build/lib/get-phishing-domains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ const sensitiveKeywords = createKeywordFilter([
'facebook-',
'focebaak',
'.facebook.',
'metamask-',
'-metamask',
'metamask',
'www.apple',
'-coinbase',
'coinbase-',
Expand All @@ -83,9 +82,9 @@ const sensitiveKeywords = createKeywordFilter([
]);
const lowKeywords = createKeywordFilter([
'transactions-',
'payment-',
'payment',
'wallet',
'-transactions',
'-payment',
'-faceb', // facebook fake
'.faceb', // facebook fake
'facebook',
Expand Down Expand Up @@ -213,9 +212,9 @@ export function calcDomainAbuseScore(subdomain: string, fullDomain: string = sub
const sensitiveKeywordsHit = sensitiveKeywords(fullDomain);

if (sensitiveKeywordsHit) {
weight += 9;
weight += 10;
if (hitLowKeywords) {
weight += 5;
weight += 6;
}
} else if (hitLowKeywords) {
weight += 1.5;
Expand Down
1 change: 1 addition & 0 deletions Source/domainset/reject_sukka.conf
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ inst.360safe.com
.googleplay.pro
.printondemandmerchandise.com
.thebitmeister.com
.metamask-app.com
# Phishing domain like `www-facebook.to-kr.com`
.to-kr.com
# Poland Hosting dhosting.pl's free subdomain
Expand Down

0 comments on commit ab32a1a

Please sign in to comment.