Browse Source

Update Reject Phishing TLD

SukkaW 2 years ago
parent
commit
38f078b44d
1 changed files with 6 additions and 2 deletions
  1. 6 2
      Build/build-phishing-domainset.js

+ 6 - 2
Build/build-phishing-domainset.js

@@ -10,7 +10,8 @@ const WHITELIST_DOMAIN = new Set([
   'nftstorage.link',
   'nftstorage.link',
   'square.site',
   'square.site',
   'business.site',
   'business.site',
-  'page.link' // Firebase URL Shortener
+  'page.link', // Firebase URL Shortener
+  'fleek.cool'
 ]);
 ]);
 const BLACK_TLD = Array.from(new Set([
 const BLACK_TLD = Array.from(new Set([
   'xyz',
   'xyz',
@@ -41,7 +42,10 @@ const BLACK_TLD = Array.from(new Set([
   'cf',
   'cf',
   'gq',
   'gq',
   'ga',
   'ga',
-  'ml'
+  'ml',
+  'cc',
+  'cn',
+  'codes'
 ]));
 ]));
 
 
 (async () => {
 (async () => {