mirror of
https://github.com/SukkaW/Surge.git
synced 2026-01-29 01:51:52 +08:00
Strengthen Phishing Score Calculation
This commit is contained in:
@@ -105,8 +105,10 @@ const pool = new Worktank({
|
||||
} else {
|
||||
if (BLACK_TLD.has(tld)) {
|
||||
score += 3;
|
||||
} else if (tld.length > 6) {
|
||||
} else if (tld.length > 4) {
|
||||
score += 2;
|
||||
} else if (tld.length > 5) {
|
||||
score += 4;
|
||||
}
|
||||
if (apexDomain.length >= 18) {
|
||||
score += 0.5;
|
||||
|
||||
Reference in New Issue
Block a user