Browse Source

Update Phishing Black TLD

SukkaW 3 years ago
parent
commit
f4fcb57977
1 changed files with 13 additions and 3 deletions
  1. 13 3
      Build/build-phishing-domainset.js

+ 13 - 3
Build/build-phishing-domainset.js

@@ -4,7 +4,7 @@ const fs = require('fs');
 const path = require('path');
 const path = require('path');
 
 
 const WHITELIST_DOMAIN = new Set([]);
 const WHITELIST_DOMAIN = new Set([]);
-const BLACK_TLD = [
+const BLACK_TLD = Array.from(new Set([
   '.xyz',
   '.xyz',
   '.top',
   '.top',
   '.win',
   '.win',
@@ -18,8 +18,18 @@ const BLACK_TLD = [
   '.cool',
   '.cool',
   '.cyou',
   '.cyou',
   '.id',
   '.id',
-  '.pro'
-];
+  '.pro',
+  '.za.com',
+  '.sa.com',
+  '.ltd',
+  '.group',
+  '.rest',
+  '.tech',
+  '.link',
+  '.ink',
+  '.bar',
+  '.tokyo'
+]));
 
 
 (async () => {
 (async () => {
   const domainSet = Array.from(
   const domainSet = Array.from(