mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 09:10:35 +08:00
Chore: Update Phishing Build
This commit is contained in:
parent
90b6580377
commit
ab32a1ae74
@ -63,8 +63,7 @@ const sensitiveKeywords = createKeywordFilter([
|
|||||||
'facebook-',
|
'facebook-',
|
||||||
'focebaak',
|
'focebaak',
|
||||||
'.facebook.',
|
'.facebook.',
|
||||||
'metamask-',
|
'metamask',
|
||||||
'-metamask',
|
|
||||||
'www.apple',
|
'www.apple',
|
||||||
'-coinbase',
|
'-coinbase',
|
||||||
'coinbase-',
|
'coinbase-',
|
||||||
@ -83,9 +82,9 @@ const sensitiveKeywords = createKeywordFilter([
|
|||||||
]);
|
]);
|
||||||
const lowKeywords = createKeywordFilter([
|
const lowKeywords = createKeywordFilter([
|
||||||
'transactions-',
|
'transactions-',
|
||||||
'payment-',
|
'payment',
|
||||||
|
'wallet',
|
||||||
'-transactions',
|
'-transactions',
|
||||||
'-payment',
|
|
||||||
'-faceb', // facebook fake
|
'-faceb', // facebook fake
|
||||||
'.faceb', // facebook fake
|
'.faceb', // facebook fake
|
||||||
'facebook',
|
'facebook',
|
||||||
@ -213,9 +212,9 @@ export function calcDomainAbuseScore(subdomain: string, fullDomain: string = sub
|
|||||||
const sensitiveKeywordsHit = sensitiveKeywords(fullDomain);
|
const sensitiveKeywordsHit = sensitiveKeywords(fullDomain);
|
||||||
|
|
||||||
if (sensitiveKeywordsHit) {
|
if (sensitiveKeywordsHit) {
|
||||||
weight += 9;
|
weight += 10;
|
||||||
if (hitLowKeywords) {
|
if (hitLowKeywords) {
|
||||||
weight += 5;
|
weight += 6;
|
||||||
}
|
}
|
||||||
} else if (hitLowKeywords) {
|
} else if (hitLowKeywords) {
|
||||||
weight += 1.5;
|
weight += 1.5;
|
||||||
|
|||||||
@ -323,6 +323,7 @@ inst.360safe.com
|
|||||||
.googleplay.pro
|
.googleplay.pro
|
||||||
.printondemandmerchandise.com
|
.printondemandmerchandise.com
|
||||||
.thebitmeister.com
|
.thebitmeister.com
|
||||||
|
.metamask-app.com
|
||||||
# Phishing domain like `www-facebook.to-kr.com`
|
# Phishing domain like `www-facebook.to-kr.com`
|
||||||
.to-kr.com
|
.to-kr.com
|
||||||
# Poland Hosting dhosting.pl's free subdomain
|
# Poland Hosting dhosting.pl's free subdomain
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user