Update phishing infra

This commit is contained in:
SukkaW
2024-10-01 20:22:07 +08:00
parent a4ad75838f
commit 153e219832
3 changed files with 32 additions and 20 deletions

View File

@@ -29,7 +29,7 @@ const BLACK_TLD = new Set([
'one', 'online',
'party', 'pro', 'pl', 'pw',
'racing', 'rest', 'review', 'rf.gd',
'sa.com', 'sbs', 'science', 'shop', 'site', 'skin', 'space', 'store', 'stream', 'surf',
'sa.com', 'sbs', 'science', 'shop', 'site', 'skin', 'space', 'store', 'stream', 'su', 'surf',
'tech', 'tk', 'tokyo', 'top', 'trade',
'vip', 'vn',
'webcam', 'website', 'win',
@@ -51,26 +51,17 @@ const WHITELIST_MAIN_DOMAINS = new Set([
]);
const sensitiveKeywords = createKeywordFilter([
'-roblox',
'.amazon-',
'-amazon',
'fb-com',
'facebook.',
'facebook-',
'facebook-com',
'.facebook',
'-facebook',
'coinbase',
'facebook-',
'metamask-',
'-metamask',
'virus-',
'icloud-',
'apple-',
'www.apple',
'-coinbase',
'coinbase-',
'lcloud.',
'lcloud-',
'booking-com',
'booking.com-',
'booking-eu',
@@ -81,6 +72,16 @@ const sensitiveKeywords = createKeywordFilter([
'google.com-'
]);
const lowKeywords = createKeywordFilter([
'transactions-',
'payment-',
'-transactions',
'-payment',
'-faceb', // facebook fake
'.faceb', // facebook fake
'virus-',
'icloud-',
'apple-',
'-roblox',
'-co-jp',
'customer.',
'customer-',
@@ -154,12 +155,6 @@ async function processPhihsingDomains(domainArr: string[]) {
} else if (tld.length > 6) {
domainScoreMap[apexDomain] += 2;
}
if (sensitiveKeywords(apexDomain)) {
domainScoreMap[apexDomain] += 4;
} else if (lowKeywords(apexDomain)) {
domainScoreMap[apexDomain] += 2;
}
}
if (
subdomain
@@ -203,12 +198,12 @@ export function calcDomainAbuseScore(subdomain: string, fullDomain: string) {
const sensitiveKeywordsHit = sensitiveKeywords(fullDomain);
if (sensitiveKeywordsHit) {
weight += 8;
weight += 9;
if (hitLowKeywords) {
weight += 4;
weight += 5;
}
} else if (hitLowKeywords) {
weight += 1;
weight += 1.5;
}
const subdomainLength = subdomain.length;