├── .gitattributes ├── AutoWorks └── sum_domain.py ├── Categories ├── Advertisement │ ├── general.txt │ ├── kugao.txt │ ├── talkingdata.txt │ └── youmi.txt ├── App │ ├── pcdn.txt │ └── uc.txt ├── JunkDomain │ ├── general_kuaishou.txt │ └── general_xiamen_weixun.txt ├── JunkGame │ └── general.txt ├── Malware │ ├── 2345_series.txt │ ├── 37_series.txt │ ├── 6789_series.txt │ ├── 7654_series.txt │ ├── README.md │ ├── duba_series.txt │ ├── general.txt │ ├── leopard_series.txt │ └── p2p.txt ├── Privacy │ ├── 51la.txt │ ├── getui.txt │ ├── umeng.txt │ └── uni_ad.txt └── Spam │ └── general.txt ├── LICENSE ├── README.md ├── src ├── README.md ├── advertisement │ ├── general.md │ ├── kugao.md │ ├── talkingdata.md │ └── youmi.md ├── app_related │ ├── jd.md │ ├── kuaishou.md │ ├── pcdn.md │ ├── sogou.md │ └── uc.md ├── general │ └── general.md ├── malware_related │ ├── 2345.md │ ├── 360.md │ ├── 37.md │ ├── 6789.md │ ├── 7654.md │ ├── duba.md │ ├── general.md │ └── leopard.md ├── p2p_downloader_related │ ├── general.md │ ├── guangzhou_fengqi.md │ └── hefei_tingfengyu.md ├── privacy_related │ ├── 51la.md │ ├── getui.md │ ├── nanjing_qingdun.md │ ├── pconline.md │ ├── umeng.md │ └── uni-AD.md └── spam │ └── spam.md ├── wjx-AdGuard.txt ├── wjx-AdGuardHome-strict.txt ├── wjx-AdGuardHome.txt ├── wjx-explorer-add.txt └── wjx-ublock.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | wjx-ublock.txt linguist-language=JSON linguist-detectable 2 | wjx-[Ae]*.txt linguist-language=AdBlock linguist-detectable 3 | -------------------------------------------------------------------------------- /AutoWorks/sum_domain.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | def sum_domain(__file_path__, __file_name__): 4 | domain_dist = {} 5 | with open(__file_path__ + __file_name__, "r") as file: 6 | lines = file.readlines() 7 | for line in lines: 8 | if line: 9 | # 首先判断是不是注释 10 | anno = re.search(r"^\s{0,}#.*|^\s{0,}!.*", line) 11 | if anno: 12 | continue 13 | line_list = list(line) 14 | line_list_reversed = list(reversed(list(line_list))) 15 | count = 0 16 | first_stop = False 17 | domain = "" 18 | for character in line_list_reversed: 19 | if character == "^": 20 | split_loc_end = count + 1 21 | continue 22 | if character == "." and first_stop: 23 | split_loc_start = count + 1 24 | for i in range(split_loc_end, split_loc_start, 1): 25 | domain = str(line_list_reversed[i]) + domain 26 | break 27 | elif character == ".": 28 | first_stop = True 29 | count += 1 30 | if domain: 31 | try: 32 | domain_dist[domain] += 1 33 | except: 34 | domain_dist[domain] = 1 35 | else: 36 | domain_list = list(domain_dist.items()) 37 | with open(__file_path__ + "domain_list.txt", "w+") as rt: 38 | for domain_info in domain_list: 39 | rt.write(domain_info + "\n") 40 | -------------------------------------------------------------------------------- /Categories/Advertisement/general.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Advertisement 3 | ! Title: General 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # ---------------------------------------- 12 | # 广东欢太科技有限公司 13 | ## OPPO广告, 游戏广告 14 | /heytap/$important 15 | ||andes.tech^$important 16 | ||keke.cn^$important 17 | ||oppomobile.com^$important 18 | ||ibreeno.com^$important 19 | ||oppopay.com^$important 20 | ||wanyol.com^$important 21 | ||heytapmobi.com^$important 22 | ||oplustrust.com^$important 23 | ||vayol.com^$important 24 | ||heytap.com^$important 25 | ||familyincloud.com^$important 26 | ||breenomeet.cc^$important 27 | ||heytapugc.com^$important 28 | ||ortc.cc^$important 29 | ||omeet.cc^$important 30 | ||oppoer.me^$important 31 | ||oppo.mobi^$important 32 | ||aibreeno.com^$important 33 | ||xiaobool.com^$important 34 | ||nearme.com.cn^$important 35 | # 深圳市白鹰网络科技有限公司 36 | ## 广东欢太科技有限公司关联公司 37 | /hey-game/$important 38 | # ---------------------------------------- 39 | # 北京小香食品科技股份有限公司 40 | ||limei.com^$important 41 | ||xiaoxiangmei.com^$important 42 | # 上海力竞广告有限公司 43 | ||ljrtb.cn^$important 44 | # 北京丹枫科技有限公司 45 | ||adxing.com^$important 46 | # ---------------------------------------- 47 | # 百度 48 | ||*91.com*^$important 49 | ||*swan*.com^$important 50 | ||*snguows*^$important 51 | ||*popin*^$important 52 | ||*mipplan.org^$important 53 | ||*hongmeiti*^$important 54 | ||*duapps*^$important 55 | ||*bdeceimg*^$important 56 | ||*vplay8*^$important 57 | ||*fhldns*^$important 58 | ||*mtj*js*^$important 59 | # ---------------------------------------- 60 | # 深圳新度博望科技有限公司 61 | ||juwinmedia.com^$important 62 | ||xdplt.com^$important 63 | # ---------------------------------------- 64 | # 珠海市小源科技有限公司 65 | ## 5G广告 66 | ||policefountain.com^$important 67 | ||bizport.cn^$important 68 | ||mfexcel.com^$important 69 | ||5gimos.com^$important 70 | # ---------------------------------------- 71 | # 杭州阶形网络科技有限公司 72 | ## 珠海市小源科技有限公司关联公司, 广告SDK 73 | /(yizhi|jaxim|onegot)\w{0,6}\./$important 74 | ||getanotice.com^$important 75 | # ---------------------------------------- 76 | # 北京甜橙世纪科技有限公司 77 | /leads\w{0,6}\./$important 78 | ||orange-tec.com^$important 79 | # ---------------------------------------- 80 | # 上海采拾信息科技有限公司 81 | ## 看起来倒闭了 82 | /icaishi/$important 83 | ||zhongddi.com^$important 84 | ||9liuda.com^$important 85 | ||7mah2.com^$important 86 | # ---------------------------------------- 87 | # 上海阅客信息科技有限公司 88 | ## 上海采拾信息科技有限公司母公司 89 | ||9yueke.com^$important 90 | ||mofeeds.com^$important 91 | ||9iwuli.com^$important 92 | ||9icaishi.com^$important 93 | ||wuliapi.com^$important 94 | # ---------------------------------------- 95 | # 杭州爆米花科技股份有限公司 96 | ## 垃圾视频广告等 97 | ||401191.com^$important 98 | ||29293.com^$important 99 | ||611892.com^$important 100 | ||045328.com^$important 101 | ||921346.com^$important 102 | ||gexings.com^$important 103 | ||171679.com^$important 104 | ||734122.com^$important 105 | ||pxtadmin.com^$important 106 | ||huahua18.com^$important 107 | ||489167.com^$important 108 | ||162681.com^$important 109 | ||251674.com^$important 110 | ||baomihua.com^$important 111 | ||pomoho.com.cn^$important 112 | ||pomoho.com^$important 113 | ||baomihua.cn^$important 114 | ||jinyaogeng.com^$important 115 | ||826103.com^$important 116 | # ---------------------------------------- 117 | # 杭州爆米花鹰眼科技有限责任公司 118 | ## 杭州爆米花科技股份有限公司关联公司 119 | ||yingyan2018.cn^$important 120 | ||souid.com^$important 121 | ||yingyan2018.com^$important 122 | ||tuiyes.com^$important 123 | ||yingyan2018.com.cn^$important 124 | ||yingyan2018.net^$important 125 | # ---------------------------------------- 126 | # 杭州播一播网络科技有限公司 127 | ## 杭州爆米花科技股份有限公司关联公司 128 | ||kktvshow.com^$important 129 | ||wenzhiji.com^$important 130 | ||17kuaikan.com^$important 131 | # ---------------------------------------- 132 | # 广东雨林木风计算机科技有限公司 133 | ## 也是时代的遗物了 134 | ||111g.com^$important 135 | ||114la.net^$important 136 | # ||ylmf.org^$important 137 | ||114la.com^$important 138 | ||114la.com.cn^$important 139 | ||114la.org^$important 140 | # ||ylmf.net^$important 141 | ||114la.cn^$important 142 | # ||ylmf.com^$important 143 | # ---------------------------------------- 144 | # 深圳市顺企网络科技有限公司 145 | ||shunqi.com^$important 146 | ||shunqiwang.com^$important 147 | ||qicou.com^$important 148 | ||11467.com^$important 149 | # ---------------------------------------- 150 | # 上海游光网络科技有限公司 151 | /11h5\./$important 152 | /h5\d{2,3}\./$important 153 | ||zwwla.com^$important 154 | ||wxavu.com^$important 155 | ||vutimes.com^$important 156 | # ---------------------------------------- 157 | # 泰德无限(北京)科技有限公司 158 | ||tdwxkj.com^$important 159 | ||7kqj.com^$important 160 | ||k4k8.com^$important 161 | ||exinyun.net^$important 162 | ||7k7.com.cn^$important 163 | ||123ch.cn^$important 164 | # ---------------------------------------- 165 | # 东阳市晴皓网络科技有限公司 166 | ## 非常垃圾广告, 短信也可加屏蔽词 167 | ||dafapiao.cn^$important 168 | ||12i.cn^$important 169 | ||915.im^$important 170 | ||54k.cn^$important 171 | # ---------------------------------------- 172 | # 浙江同花顺网络科技有限公司 173 | ||10jqka.com.cn^$important 174 | ||0033cas.cn^$important 175 | ||0033url.com^$important 176 | ||8tgame.com^$important 177 | ||kuaicha365.com^$important 178 | ||thsnetwork.com^$important 179 | ||ths-corp.com^$important 180 | ||thsi.cn^$important 181 | ||0033cas.com^$important 182 | ||8tgame.cn^$important 183 | ||8tgame.com.cn^$important 184 | # ---------------------------------------- 185 | # 杭州同花顺记财软件有限公司 186 | ||touzime.net^$important 187 | ||touzime.com.cn^$important 188 | # ---------------------------------------- 189 | # 浙江核新同花顺网络信息股份有限公司 190 | ||tonghuayun.com^$important 191 | ||tonghuayun.cn^$important 192 | ||300033.info^$important 193 | ||tonghuayun.com.cn^$important 194 | ||tonghuashun.com.cn^$important 195 | ||tonghuayun.net^$important 196 | # ---------------------------------------- 197 | # 长沙联晶网络科技有限公司 198 | ||dushuji.com^$important 199 | ||cslj.cn^$important 200 | ||9669.cn^$important 201 | ||chnw.cn^$important 202 | # ---------------------------------------- 203 | # 上海新数网络科技股份有限公司 204 | ||renwogo.com^$important 205 | ||wisedsp.net^$important 206 | ||wiseimp.com^$important 207 | ||woso100.com^$important 208 | ||youhow.net^$important 209 | ||wisemedia.cn^$important 210 | ||renwozhe.com^$important 211 | ||kejet.com^$important 212 | ||datamaster.cn^$important 213 | ||kejet.net^$important 214 | # ---------------------------------------- 215 | # 上海新数科技发展有限公司 216 | ## 上海新数网络科技股份有限公司关联 217 | ||wisemedia.com.cn^$important 218 | # ---------------------------------------- 219 | # 上海馨数软件技术有限公司 220 | ## 上海新数网络科技股份有限公司关联 221 | /adpolestar\./ 222 | # ---------------------------------------- 223 | # 上海谦隐网络科技有限公司 224 | ## 上海新数网络科技股份有限公司关联 225 | ||dyzapp.com^$important 226 | # ---------------------------------------- 227 | # 上海得词信息科技有限公司 228 | ||tagui.com.cn^$important 229 | ||decimob.com^$important 230 | ||rpapal.com^$important 231 | ||xiaoanzi.com^$important 232 | ||appying.com^$important 233 | ||wanmeiyuangong.com^$important 234 | ||r-p-a.com^$important 235 | ||iamworking.cn^$important 236 | # ---------------------------------------- 237 | # 杭州阿里巴巴广告有限公司 238 | ||laiwang.com^$important 239 | ||imwukong.com^$important 240 | ||mifenlife.com^$important 241 | ||mifenlife.cn^$important 242 | ||icbuscrm.com^$important 243 | ||lstyouxuan.com^$important 244 | ||mefenlife.com^$important 245 | ||mefenlife.com^$important 246 | # ---------------------------------------- 247 | # 248 | ## 249 | # ---------------------------------------- 250 | # 251 | ## 252 | -------------------------------------------------------------------------------- /Categories/Advertisement/kugao.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Advertisement 3 | ! Title: 酷告 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京快友世纪科技股份有限公司 12 | /lnk(mi|of)\./$important 13 | ||shenwawa.com^$important 14 | ||kuaiyou.com^$important 15 | # 天津快友世纪科技有限公司 16 | /adv(gbid|iew|tj)/$important 17 | # 北京木舟科技有限公司 18 | ||52muzhou.com^$important 19 | # 北京乐聚互娱科技有限公司 20 | /lejuhuyu/ 21 | # 广州奇顽科技有限公司 22 | ||qiwanyx.com^$important 23 | # 天津奇顽科技有限公司 24 | ||game174.com^$important 25 | # 武汉易游无限科技有限公司 26 | ||yywxgames.com^$important 27 | # 北京奇顽科技有限公司 28 | ||521qw.com^$important 29 | # 天津奇顽科技有限公司 30 | ||game174.com^$important -------------------------------------------------------------------------------- /Categories/Advertisement/talkingdata.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Advertisement 3 | ! Title: Talkingdata 4 | ! Update Time: 2023-02-25 23:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京腾云天下科技有限公司 12 | /talking(data|game)/$important 13 | /tend(data|cloud)/$important 14 | /lnk\d\./$important 15 | /brg0\./$important 16 | ||udrig.com^$important 17 | ||cpatrk.net^$important 18 | ||sportxuan.com^$important 19 | ||xdrig.com^$important 20 | ||tddmp.com^$important 21 | ||talkingdata.cn^$important 22 | ||appcpa.net^$important 23 | ||myzhongguojie.cn^$important 24 | ||3edc.cn^$important 25 | # 杭州决对信息科技有限公司 26 | /abssqr\./$important 27 | # 北京无限向溯科技有限公司 28 | /wifipix\./$important -------------------------------------------------------------------------------- /Categories/Advertisement/youmi.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Advertisement 3 | ! Title: 有米科技(youmi) 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | /umi?(api|mob|cdn|pay|plus|keji|life)/$important 12 | /y(ou)?((mi?)|(fo))(cdn|app)?/$important 13 | # 有米科技股份有限公司 14 | ||alertover.com^$important 15 | ||asogrow.net^$important 16 | ||91doujin.com^$important 17 | ||adxmi.com^$important 18 | ||91guanggao.com^$important 19 | # 有米有量(广州)科技有限公司 20 | ||abteb.top^$important 21 | ||ataraxiaday.xyz^$important 22 | ||windfallhome.top^$important 23 | ||petrichorlife.xyz^$important 24 | ||drizzle.site^$important 25 | ||lingqianshiwan.com^$important 26 | ||sz365.cn^$important 27 | ||mamihlapiatapai.xyz^$important 28 | ||eudemoniaday.top^$important 29 | ||eudemonia.xyz^$important 30 | ||petrichor.online^$important 31 | ||ataraxia.fun^$important 32 | ||zhuliya365.com^$important 33 | # 广州米慧信息科技有限公司 34 | /appsensor/$important 35 | /appgrow/$important 36 | /youcloud/$important 37 | /xiaohongdata/$important 38 | /kuaixp/$important 39 | ||goodspy.com^$important 40 | ||kuaixuanpin.com^$important 41 | ||appltv.cn^$important 42 | ||mihuiad.com^$important 43 | ||adguanjia.cn^$important 44 | ||marketbi.cn^$important 45 | ||aadata.cn^$important 46 | ||ccsight.cn^$important 47 | # 有米有数(广州)网络科技有限公司 48 | ||maimaiya.cn^$important 49 | # 上海直觉信息技术有限公司 50 | ||xyici.com^$important 51 | ||izhijue.com^$important 52 | # 深圳市人马互动科技有限公司 53 | ||centaurstech.com^$important 54 | ||qiwu.ai^$important 55 | ||chewrobot.com^$important 56 | # 广州米双创信息科技有限公司 57 | ||youmisc.cn^$important 58 | # 江苏米游信息科技有限公司 59 | ||sparkerarea.com^$important 60 | ||game12580.com^$important 61 | ||ufishbox.com^$important 62 | # 淮安有米信息科技有限公司 63 | /owyxcdn\./$important 64 | /ou?wan\./$important 65 | # 海南米丸互动信息科技有限公司 66 | ||vipyoumi.com^$important 67 | # 广州心乐互动信息科技有限公司 68 | ||xinleie.com^$important -------------------------------------------------------------------------------- /Categories/App/pcdn.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: App 3 | ! Title: PCDN Related 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 江西节点技术服务有限公司 12 | ||szbdyd.com^$important 13 | ||snv1.com^$important 14 | ||lbv1.com^$important 15 | ||snodehome.net^$important 16 | ||snodehome.cn^$important 17 | ||snodehome.com^$important 18 | ||pkoplink.com^$important 19 | ||xingyouc.com^$important 20 | ||xingyouyun.com^$important 21 | # 深圳市网心科技有限公司 22 | ||0101cdn.com^$important 23 | ||onethingtech.com.cn^$important 24 | ||wezhibo.tv^$important 25 | ||xunleioa.com^$important 26 | ||onethingtech.net^$important 27 | ||xycdn.net^$important 28 | ||xycloud.com^$important 29 | ||ionecloud.cn^$important 30 | ||seekr.com.cn^$important 31 | ||xylive.tv^$important 32 | ||xycdn.com^$important 33 | ||onethingpcs.com^$important 34 | ||uhabo.com^$important 35 | ||kuiniuca.com^$important 36 | ||hiveshared.com^$important 37 | ||onethingc.com^$important 38 | ||onethingd.com^$important 39 | ||wzhibo.tv^$important 40 | ||wezhibo.net^$important 41 | ||wzhibo.net^$important 42 | ||onethingn.com^$important 43 | ||onething.net^$important 44 | ||miuapp.com.cn^$important 45 | ||onethingcloud.com^$important 46 | ||onethingcloud.cn^$important 47 | ||walk-live.com^$important 48 | ||peiluyou.com^$important 49 | # 深圳聚网优速科技有限公司 50 | ||chinanetcdn.com^$important 51 | ||galaxyclouds.com.cn^$important 52 | ||galaxyclouds.net^$important 53 | ||galaxyclouds.cn^$important -------------------------------------------------------------------------------- /Categories/App/uc.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: App 3 | ! Title: UC 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 广州市动景计算机科技有限公司 12 | ||effirst.com^$important 13 | ||minippa.cn^$important 14 | ||uflowx.com^$important 15 | ||ubibibi.com^$important 16 | ||bhweapon.cn^$important 17 | ||effirst.cn^$important 18 | ||coolppa.cn^$important 19 | ||tinyppa.cn^$important 20 | ||tinypap.cn^$important 21 | ||tinya1.cn^$important 22 | ||ucfly.com^$important 23 | ||blovestorm.com^$important 24 | ||u-mob.cn^$important 25 | ||uc123.com^$important 26 | ||open-uc.cn^$important 27 | ||ucdesk.cn^$important 28 | ||myquark.cn^$important 29 | ||tinyap2.cn^$important 30 | ||uc.cn^$important 31 | ||uczhibo.cn^$important 32 | ||quark.cn^$important 33 | ||ucweb.com^$important 34 | ||ucweb.com.cn^$important 35 | ||yun.cn^$important 36 | ||ucweb.cn^$important 37 | ||quarkfly.cn^$important 38 | # 广州神马移动信息科技有限公司 39 | ||xiaoshuo1^$important-sm.com 40 | ||transcode.cn^$important 41 | ||alibabalabs.com^$important 42 | ||uczzd.com.cn^$important 43 | ||kkedulive.com^$important 44 | ||sm-tc.cn^$important 45 | ||uczzd.com^$important 46 | ||xiaoshuo2-sm.com^$important 47 | ||yisou.com^$important 48 | ||uczzd.cn^$important 49 | ||uczm.cn^$important 50 | ||sm.cn^$important 51 | ||uczzd.net^$important 52 | ||shenma-inc.com^$important 53 | ||kkentlive.com^$important 54 | # 深圳橙子互动股份有限公司 55 | ||orangegame.cn^$important 56 | ||msyuer.com^$important 57 | ||wiorange.com^$important 58 | ||cmi.ren^$important 59 | # 北京手游天下数字娱乐科技股份有限公司 60 | ||gamedog.cn^$important 61 | ||44937.com^$important 62 | # 深圳市乐合科技有限公司 63 | ||360wy.cn^$important 64 | # 深圳市乐讯科技有限公司 65 | ||lexungame.cn^$important 66 | ||lexunv.com^$important 67 | ||lexun.com^$important 68 | ||lxyes.net^$important 69 | ||lxyes.com^$important 70 | ||lexun.cn^$important 71 | ||6v.com^$important 72 | ||lxyes.cn^$important 73 | ||lexun.net^$important 74 | # 广州灵犀互娱信息技术有限公司 75 | ||996.com^$important 76 | ||996.com^$important 77 | ||25pp.com^$important 78 | ||pp.cn^$important -------------------------------------------------------------------------------- /Categories/JunkDomain/general_kuaishou.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Junk Domain General Block: 快手系列 3 | ! Title: General 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 四川快手互联网信息有限公司 12 | ||tvyigbft.com^$important 13 | ||cxikstaw.com^$important 14 | ||ovscpefz.com^$important 15 | ||iemiwrdm.com^$important 16 | ||qpiawvau.com^$important 17 | ||qvecivmq.com^$important 18 | ||tiypvctg.com^$important 19 | ||soqkwrhp.com^$important 20 | ||uzemqhd.com^$important 21 | ||stivrdto.com^$important 22 | ||zupixptt.com^$important 23 | ||rwvyozms.com^$important 24 | ||qxueabap.com^$important 25 | ||sqkvpzty.com^$important 26 | ||uwmvzkfg.com^$important 27 | ||gxkcobak.com^$important 28 | ||tvsuvppai.com^$important 29 | ||zkesqzfaq.com^$important 30 | ||gomyagdrg.com^$important 31 | ||mxtipmait.com^$important 32 | ||eprqsptas.com^$important 33 | ||ueptimbii.com^$important 34 | ||wpgsvpxto.com^$important 35 | ||ipxsiyfdz.com^$important 36 | ||iuyxoszcw.com^$important 37 | ||0f50q63079.com^$important 38 | ||ox3cd4b9b8.com^$important 39 | ||23gg67ff55.com^$important 40 | ||6gee1c40vz.com^$important 41 | ||4ens5509o1.com^$important 42 | ||gp98s94gq5.com^$important 43 | ||xrxgsrdg.com^$important 44 | ||aotivzec.com^$important 45 | ||zvzkwcdw.com^$important 46 | ||ixypkmrq.com^$important 47 | ||gvsqzdrz.com^$important 48 | ||mvawykdq.com^$important 49 | ||ztsvapmc.com^$important 50 | ||aqmskgkx.com^$important 51 | ||mtaorfxu.com^$important 52 | ||pouqsxikt.com^$important 53 | ||gpteazvmi.com^$important 54 | ||xsysaqkak.com^$important 55 | ||uctqogrdt.com^$important 56 | ||uztisrirw.com^$important 57 | ||48q7at6241.com^$important 58 | ||tsagieta.com^$important 59 | ||qczswmru.com^$important 60 | ||koxmtaru.com^$important 61 | ||73vpc44cp0.com^$important 62 | ||pwakgdgr.com^$important 63 | ||oprizxmo.com^$important 64 | ||mpcmupptw.com^$important 65 | ||xvesapedk.com^$important 66 | ||pcptmceat.com^$important 67 | ||zzuzrcdrs.com^$important 68 | ||qrgwxegxs.com^$important 69 | ||pmrmcuzxg.com^$important 70 | ||ptrgwyvkc.com^$important 71 | ||rgzctmbkq.com^$important 72 | ||wbsh05zm9q.com^$important 73 | ||9h0dzp1i8e.com^$important 74 | ||ewvaxpas.com^$important 75 | ||uvxpsxie.com^$important 76 | ||kpsmxhxz.com^$important 77 | ||iogpmmim.com^$important 78 | ||qzgizsdtv.com^$important 79 | ||srzpaybrt.com^$important 80 | ||zwqkepxzp.com^$important 81 | ||weguyihez.com^$important 82 | ||yrkszcbpe.com^$important 83 | ||qxrwekafg.com^$important 84 | ||tprtgqbgq.com^$important 85 | ||xkxqeztvc.com^$important 86 | ||vtzkrugeo.com^$important 87 | ||aezwgteau.com^$important 88 | ||zusmruxgk.com^$important 89 | ||ryiqtgava.com^$important 90 | ||v8co6m5y09.com^$important 91 | ||0g043jy38r.com^$important 92 | ||aauwovgx.com^$important 93 | ||qpxakiec.com^$important 94 | ||zciprmdm.com^$important 95 | ||vueyahit.com^$important 96 | ||vctyefmu.com^$important 97 | ||muityrvxs.com^$important 98 | ||escqerfca.com^$important 99 | ||oixkmetvk.com^$important 100 | ||oeigvqgam.com^$important 101 | ||akmztppit.com^$important 102 | ||yvzvyufzo.com^$important 103 | ||495jb6q72l.com^$important 104 | ||58yq1wq7k0.com^$important 105 | ||37z095t6d4.com^$important 106 | ||bti4ql58c6.com^$important 107 | ||ievaqpce.com^$important 108 | ||avoqgbvi.com^$important 109 | ||iyuactep.com^$important 110 | ||pwrizpbc.com^$important 111 | ||ragysrpa.com^$important 112 | ||eucoxmpa.com^$important 113 | ||rgwipfia.com^$important 114 | ||kgsvagrw.com^$important 115 | ||vzksidcr.com^$important 116 | ||pqgxwkdo.com^$important 117 | ||ypvkordgp.com^$important 118 | ||rzkmrqtmw.com^$important 119 | ||ktgwzyzpx.com^$important 120 | ||ooezwuzvg.com^$important 121 | ||xsvmutifx.com^$important 122 | ||yzewyzkmr.com^$important 123 | ||ykqgmrcau.com^$important 124 | ||xrakgtmhk.com^$important 125 | ||xmwtuogdz.com^$important 126 | ||kwgxikcho.com^$important 127 | ||ntcb2k68qy.com^$important 128 | ||5bf9120gwo.com^$important 129 | ||h5502i3z57.com^$important 130 | ||ja60zxsi62.com^$important 131 | ||ercsoavm.com^$important 132 | ||gpmrgmhu.com^$important 133 | ||xzkitzkw.com^$important 134 | ||wrcmathq.com^$important 135 | ||ytpqoeim.com^$important 136 | ||uzxrumag.com^$important 137 | ||zsvoekmdp.com^$important 138 | ||cvospkzhi.com^$important 139 | ||kavupxvzg.com^$important 140 | ||mvompvgtt.com^$important 141 | ||veavpmxas.com^$important 142 | ||u7qekzm2eo.com^$important 143 | ||ft50ngjfkz.com^$important 144 | ||qyc0y3w075.com^$important 145 | ||477o686h32.com^$important 146 | ||xguqypct.com^$important 147 | ||oqowcrcq.com^$important 148 | ||gwkiuivk.com^$important 149 | ||xoigupea.com^$important 150 | ||gppsqvhmo.com^$important 151 | ||qurviqpia.com^$important 152 | ||ivgqeprgy.com^$important 153 | ||eivqrairk.com^$important 154 | ||vszksckgt.com^$important 155 | ||epasrwfbm.com^$important 156 | ||zzpxotfzs.com^$important 157 | ||qygzqraxm.com^$important 158 | ||ttwuctdik.com^$important 159 | ||hnt400d49b.com^$important 160 | ||usiscozbx.com^$important 161 | ||cc3y5l9cau.com^$important 162 | ||9189ff1wr3.com^$important 163 | ||p7ec6jv22l.com^$important 164 | ||88643s8ilu.com^$important 165 | ||raextzdw.com^$important 166 | ||ssoqckrg.com^$important 167 | ||tgycmuvbg.com^$important 168 | ||ymvropmxo.com^$important 169 | ||movgzsrfq.com^$important 170 | ||sqwxpatmt.com^$important 171 | ||ewgyeivru.com^$important 172 | ||opuyoekao.com^$important 173 | ||zqvemrfha.com^$important 174 | ||uswayrmvt.com^$important 175 | ||sktugoeau.com^$important 176 | ||oocoqvgdo.com^$important 177 | ||8886503w77.com^$important 178 | ||wsa75b1b0h.com^$important 179 | ||lo5cp9v31h.com^$important 180 | ||o5474l92ld.com^$important 181 | ||trpkmdem.com^$important 182 | ||qsuaehcv.com^$important 183 | ||qtscifbz.com^$important 184 | ||aaxcgfzc.com^$important 185 | ||wqmkwzko.com^$important 186 | ||vkwzcmhdt.com^$important 187 | ||ykzixsxrr.com^$important 188 | ||scsuyqxbv.com^$important 189 | ||cropuvrdm.com^$important 190 | ||oascephcq.com^$important 191 | ||moqctarbr.com^$important 192 | ||7b6i1zgs3p.com^$important 193 | ||007z8gu0wl.com^$important 194 | ||406xl717j9.com^$important 195 | ||5z96c8kvi0.com^$important 196 | ||vh77w1w3g5.com^$important 197 | ||ztrxgkbp.com^$important 198 | ||xrkgaizq.com^$important 199 | ||cmagtbxc.com^$important 200 | ||zeirogkg.com^$important 201 | ||izoqvhag.com^$important 202 | ||crukzhki.com^$important 203 | ||wxsemfkv.com^$important 204 | ||wuiepdig.com^$important 205 | ||cwmveeaw.com^$important 206 | ||okwoidet.com^$important 207 | ||quveztfry.com^$important 208 | ||tqczeortm.com^$important 209 | ||zawcogaci.com^$important 210 | ||vaopuyzkv.com^$important 211 | ||qiekpobku.com^$important 212 | ||rtaugotzt.com^$important 213 | ||gcsqeavrm.com^$important 214 | ||kaprvgezm.com^$important 215 | ||rqksaomka.com^$important 216 | ||41nz3m483k.com^$important 217 | # 北京快悠然科技有限公司 218 | ||qicwzrxey.com^$important 219 | ||upsivwxgg.com^$important 220 | ||eaugwamxp.com^$important 221 | ||eaayqghic.com^$important 222 | ||emicmshck.com^$important 223 | ||gwmvxbti.com^$important 224 | ||wqrpksbts.com^$important 225 | ||qpiwvtrw.com^$important 226 | ||ckgqztdka.com^$important 227 | ||rwoycsazr.com^$important 228 | ||tyrpiagtu.com^$important 229 | ||mavpqyzaw.com^$important 230 | ||gauqivzvg.com^$important 231 | ||rgwekoehg.com^$important 232 | ||yoximkzet.com^$important 233 | ||oootqagim.com^$important 234 | ||isspqvzag.com^$important 235 | ||ysvgopeto.com^$important 236 | ||vuagtmkpo.com^$important 237 | ||xuqcvmta.com^$important 238 | ||yqcmpcgx.com^$important 239 | ||mayckcgg.com^$important 240 | ||ouecumhvk.com^$important 241 | ||wzmwvzpax.com^$important 242 | ||zrezrwgax.com^$important 243 | ||vquzswmtp.com^$important 244 | ||qapvcmrzx.com^$important 245 | ||zycgryrme.com^$important 246 | ||oiemqtziq.com^$important 247 | ||avraswftv.com^$important 248 | ||itascivp.com^$important 249 | ||ayeovwgem.com^$important 250 | ||wizrixatx.com^$important 251 | ||awvxmeam.com^$important 252 | ||orimwbze.com^$important 253 | ||ezxcwava.com^$important 254 | ||agmkrsdra.com^$important 255 | ||eckzctabw.com^$important 256 | ||wtwguabhx.com^$important 257 | ||wqqcoukdr.com^$important 258 | ||txricstev.com^$important 259 | ||ickgqudvt.com^$important 260 | ||usvozqvpc.com^$important 261 | ||uaymtkxbo.com^$important 262 | ||gsisyrebg.com^$important 263 | ||wvopzbhs.com^$important 264 | ||aorqaekr.com^$important 265 | ||aymwkpzm.com^$important 266 | ||kavukgmi.com^$important 267 | ||qximpzco.com^$important 268 | ||vcwygfrp.com^$important 269 | ||keramvmtk.com^$important 270 | ||iatpqgkzc.com^$important 271 | ||crxzpiepq.com^$important 272 | ||vkaizqixi.com^$important 273 | ||yciasucrr.com^$important 274 | ||itkmetzpu.com^$important 275 | ||vayzvmxho.com^$important 276 | ||omocyapcm.com^$important 277 | ||zruwxiivz.com^$important 278 | ||cugeqceo.com^$important 279 | ||wxoviepr.com^$important 280 | ||yvkpxpkk.com^$important 281 | ||swqkxytri.com^$important 282 | ||myeysvhtu.com^$important 283 | ||zuzocxebx.com^$important 284 | ||kuuikztis.com^$important 285 | ||azkwggxq.com^$important 286 | ||xmqmyetdk.com^$important 287 | ||uweiqofdp.com^$important 288 | ||soopwszva.com^$important 289 | ||rscoghkw.com^$important 290 | ||cqqamgipt.com^$important 291 | ||xumpvwxbm.com^$important 292 | ||vzoxgtdfv.com^$important 293 | ||vmoatppfu.com^$important 294 | ||eztxyaeft.com^$important 295 | ||rretpocrq.com^$important 296 | ||stixuzxw.com^$important 297 | ||kygcavka.com^$important 298 | ||viomrbtz.com^$important 299 | ||revmixpc.com^$important 300 | ||tkqsaizgu.com^$important 301 | ||auaxqoxfu.com^$important 302 | ||tygotabeo.com^$important 303 | ||aqarmtpig.com^$important 304 | ||vcuswehvz.com^$important 305 | ||emxgtefzk.com^$important 306 | ||uqmwrpphq.com^$important 307 | ||qpmcwoefo.com^$important 308 | ||pgimutrkr.com^$important 309 | ||wzepwstic.com^$important 310 | ||ytcyomvtk.com^$important 311 | ||evgomkvz.com^$important 312 | ||yiqgxivce.com^$important 313 | ||rcymeaifo.com^$important 314 | ||gazcxtveq.com^$important 315 | ||vticvedct.com^$important 316 | ||wuopwcapc.com^$important 317 | ||ayemyrzkg.com^$important 318 | ||yzorugzva.com^$important 319 | ||skvsaoxpz.com^$important 320 | ||qzpgwgmv.com^$important 321 | ||wvyerait.com^$important 322 | ||ktavukfra.com^$important 323 | ||yarkcuzft.com^$important 324 | ||swmquamq.com^$important 325 | ||cszysortg.com^$important 326 | ||cycyipimt.com^$important 327 | ||sksymmiy.com^$important 328 | ||aizwxsdbg.com^$important 329 | ||zisgxuvas.com^$important 330 | ||iexmwxci.com^$important 331 | ||pqgresrbi.com^$important 332 | ||swtsyzxcs.com^$important 333 | ||uxirvyfip.com^$important 334 | ||zmzapcteu.com^$important 335 | ||aqzxosafz.com^$important 336 | ||viptzicee.com^$important 337 | ||ovctwohti.com^$important 338 | ||criumicr.com^$important 339 | ||imerkdhw.com^$important 340 | ||vryevofxg.com^$important 341 | ||qrmgrwfku.com^$important 342 | ||yvxvyezdo.com^$important 343 | ||izpmkriv.com^$important 344 | ||qckpswhkt.com^$important 345 | ||eukpyvzfw.com^$important 346 | ||mriopmabg.com^$important 347 | ||gwogycka.com^$important 348 | ||gsiacszxg.com^$important 349 | ||egxuoqpkm.com^$important 350 | ||govmqwdhg.com^$important 351 | ||tiuwsozio.com^$important 352 | ||xstywegfv.com^$important 353 | ||iprvcspmc.com^$important 354 | ||mqvcpfmy.com^$important 355 | ||acatepra.com^$important 356 | ||ramesrges.com^$important 357 | ||mkwaptxpr.com^$important 358 | ||wzpeixzex.com^$important 359 | ||axucxrxeu.com^$important 360 | ||zitqxsfbp.com^$important 361 | ||ugzoercdz.com^$important 362 | ||xspiqvgbm.com^$important 363 | ||popwseraq.com^$important 364 | ||pszwizcs.com^$important 365 | ||gcuyrvzm.com^$important 366 | ||xqxmormw.com^$important 367 | ||pqiwxzmp.com^$important 368 | ||tarmwikgw.com^$important 369 | ||pisutozmz.com^$important 370 | ||kvcosempx.com^$important 371 | ||gyxepabev.com^$important 372 | ||tgzmvmxx.com^$important 373 | ||kviruypec.com^$important 374 | ||utsteihtt.com^$important 375 | ||qesvqyfmv.com^$important 376 | ||yzxvcepkw.com^$important 377 | ||ikpuiocvc.com^$important 378 | ||krrvgizbr.com^$important 379 | ||itgeumkaw.com^$important 380 | ||icparcxha.com^$important 381 | ||vatixadpk.com^$important 382 | ||qymepzevx.com^$important 383 | ||iugivabxc.com^$important 384 | ||xrastytfz.com^$important 385 | ||egqozgbq.com^$important 386 | ||kxpuedke.com^$important 387 | ||oacywacs.com^$important 388 | ||amuisfxx.com^$important 389 | ||mwpxquvzs.com^$important 390 | ||gwcarvfke.com^$important 391 | ||vpckyacvw.com^$important 392 | ||qgruczfze.com^$important 393 | ||uzctgxhip.com^$important 394 | ||uxctumgt.com^$important 395 | ||etgvqurms.com^$important 396 | ||iscqworpy.com^$important 397 | ||gaqmirkaw.com^$important 398 | ||eyokqgtez.com^$important 399 | ||oeokrxemg.com^$important 400 | ||qscvyodew.com^$important 401 | ||woasgixdy.com^$important 402 | ||szugogrp.com^$important 403 | ||oirzqvre.com^$important 404 | ||tutakfhe.com^$important 405 | ||xvcuxgee.com^$important 406 | ||isspeigta.com^$important 407 | ||gyxkcifbp.com^$important 408 | # 北京快星空科技有限公司 409 | ||wktxerxdi.com^$important 410 | ||uxmovzepv.com^$important 411 | ||zkxqgzmz.com^$important 412 | ||tyozvaivv.com^$important 413 | ||rpkrcgzis.com^$important 414 | ||wyyktprza.com^$important 415 | ||ckceivpp.com^$important 416 | ||ervqsppgv.com^$important 417 | ||qwpmipev.com^$important 418 | ||ivetgezo.com^$important 419 | ||mweivwxke.com^$important 420 | ||kxsgpmbs.com^$important 421 | ||kmwtabvu.com^$important 422 | ||ywmqihfm.com^$important 423 | ||tpkzywrbv.com^$important 424 | ||sogzcwiac.com^$important 425 | ||mvgmyqhio.com^$important 426 | ||yxmzrwpre.com^$important 427 | ||tzusgofdp.com^$important 428 | ||xrqxmifp.com^$important 429 | ||cirsvipa.com^$important 430 | ||eycwotgw.com^$important 431 | ||kpqcgefm.com^$important 432 | ||vzgkufav.com^$important 433 | ||vavpyszve.com^$important 434 | ||ztipqedzk.com^$important 435 | ||eigcsqcgu.com^$important 436 | ||erecvmpeu.com^$important 437 | ||guwmxqfbz.com^$important 438 | ||pmvtkazfr.com^$important 439 | ||ztzvycdts.com^$important 440 | ||ywkqpxmpe.com^$important 441 | ||wvikzdme.com^$important 442 | ||eoirauhrw.com^$important 443 | ||ocwaivbrc.com^$important 444 | ||cukyagdza.com^$important 445 | ||zoaemudgi.com^$important 446 | ||koygrxxks.com^$important 447 | ||kmciqebkx.com^$important 448 | ||wzpamvvbz.com^$important 449 | ||xxitzykap.com^$important 450 | ||wxswabze.com^$important 451 | ||sqarcxeq.com^$important 452 | ||crvxsptau.com^$important 453 | ||qmxrawevi.com^$important 454 | ||tzaytiko.com^$important 455 | ||erkmxqfrm.com^$important 456 | ||ygqwxrac.com^$important 457 | ||kupxaqmee.com^$important 458 | ||wzsgrergm.com^$important 459 | ||qmaxvshfp.com^$important 460 | ||wayreohck.com^$important 461 | ||mmgywzzxt.com^$important 462 | ||azvsyombr.com^$important 463 | ||yawkstaxm.com^$important 464 | ||zyiktugcp.com^$important 465 | ||vswtrahfq.com^$important 466 | ||kzpmyzitx.com^$important 467 | ||isuegtdk.com^$important 468 | ||qisemhgx.com^$important 469 | ||okwatxvc.com^$important 470 | ||zkrmczecw.com^$important 471 | ||reayoxzpk.com^$important 472 | ||yuqkvuzmi.com^$important 473 | ||rcqvuktdm.com^$important 474 | ||vkwvxepu.com^$important 475 | ||smkrzqvis.com^$important 476 | ||qkziyuzcm.com^$important 477 | ||tuzrkskrv.com^$important 478 | ||gacwkozae.com^$important 479 | ||trvapiizg.com^$important 480 | ||ekiuregmq.com^$important 481 | ||vmswigerw.com^$important 482 | ||usvamxgas.com^$important 483 | ||petuvyxdr.com^$important 484 | ||uawxvofmr.com^$important 485 | ||sgzqtuatu.com^$important 486 | ||ivoquszem.com^$important 487 | ||upsaxgia.com^$important 488 | ||wkpezbxg.com^$important 489 | ||wwawrigkw.com^$important 490 | ||eircxidzm.com^$important 491 | ||uuqgpahcu.com^$important 492 | ||scaksoivo.com^$important 493 | ||sayvqhmv.com^$important 494 | ||kzreuxmhz.com^$important 495 | ||pvvoeaibi.com^$important 496 | ||ovtmrgavw.com^$important 497 | ||ruuowtizt.com^$important 498 | ||yteczsdcv.com^$important 499 | ||mawxsykvx.com^$important 500 | ||zaiagvkza.com^$important 501 | ||uxcwxtxgt.com^$important 502 | ||siortxdce.com^$important 503 | ||vaakstzdy.com^$important 504 | ||tveqygzxv.com^$important 505 | ||zatrsxxry.com^$important 506 | ||qggqukazu.com^$important 507 | ||ysgztrhp.com^$important 508 | ||pwtrusmkw.com^$important 509 | ||pvepvgcxx.com^$important 510 | ||qtgucacr.com^$important 511 | ||vtiwagxs.com^$important 512 | ||zzsktgfz.com^$important 513 | ||ayegqzas.com^$important 514 | ||tuusgaafw.com^$important 515 | ||vkmkxaabo.com^$important 516 | ||xwogvrizs.com^$important 517 | ||yikmrccre.com^$important 518 | ||xvtcryzxe.com^$important 519 | ||wgpiskrz.com^$important 520 | ||rwpvuitcg.com^$important 521 | ||qcxzapbas.com^$important 522 | ||iisoaqkmp.com^$important 523 | ||giauqkxcw.com^$important 524 | ||sqkegrixi.com^$important 525 | ||amsxrirgr.com^$important 526 | ||wzecowhae.com^$important 527 | ||ikizwtktc.com^$important 528 | ||mtgiqpvpe.com^$important 529 | ||mkarqxtr.com^$important 530 | ||imgsktzs.com^$important 531 | ||sptegevo.com^$important 532 | ||vupkiumco.com^$important 533 | ||iayvawrhi.com^$important 534 | ||mykcyedzp.com^$important 535 | ||rqvsqerig.com^$important 536 | ||qrioescby.com^$important 537 | ||mviweovzz.com^$important 538 | ||mgtrmrzi.com^$important 539 | ||caziqpby.com^$important 540 | ||tcoxixzo.com^$important 541 | ||ruasitmk.com^$important 542 | ||veoruhtm.com^$important 543 | ||gzcuqeerg.com^$important 544 | ||umkyczers.com^$important 545 | ||kciezqchy.com^$important 546 | ||exokxyrxu.com^$important 547 | ||xeagcqtkk.com^$important 548 | ||ymiskgfo.com^$important 549 | ||qokrxqitv.com^$important 550 | ||scuypizq.com^$important 551 | ||ryaoixrs.com^$important 552 | ||vaxgtcifk.com^$important 553 | ||ciakomvxm.com^$important 554 | ||rxmagtpxw.com^$important 555 | ||ekwrpxfvz.com^$important 556 | ||ppxvogpdt.com^$important 557 | ||uvparmhee.com^$important 558 | ||cupqoadhc.com^$important 559 | ||qsgqzvirs.com^$important 560 | ||gaxrwpdvk.com^$important 561 | ||rrkwctpq.com^$important 562 | ||vgtiekcw.com^$important 563 | ||oezmwtpy.com^$important 564 | ||pgywpufis.com^$important 565 | ||routietkm.com^$important 566 | ||rvacvzhru.com^$important 567 | ||zuovzgagr.com^$important 568 | ||qppioqitv.com^$important 569 | # 北京快晴空科技有限公司 570 | ||ekaizmakq.com^$important 571 | ||esprvtcga.com^$important 572 | ||amoxizbai.com^$important 573 | ||uxiyezzkq.com^$important 574 | ||meaepcvmm.com^$important 575 | ||owvorqxrw.com^$important 576 | ||miipvkrax.com^$important 577 | ||etpuxckt.com^$important 578 | ||wtyzcfbg.com^$important 579 | ||wiwgmicw.com^$important 580 | ||aztayizv.com^$important 581 | ||kmweyabx.com^$important 582 | ||aktrcdgz.com^$important 583 | ||sztykxkzu.com^$important 584 | ||pugutotcp.com^$important 585 | ||upzywtami.com^$important 586 | ||smeigzgg.com^$important 587 | ||myzkegcq.com^$important 588 | ||ugpactthm.com^$important 589 | ||etyksubmg.com^$important 590 | ||rksxazmgy.com^$important 591 | ||qzaiokigw.com^$important 592 | ||wzkoseae.com^$important 593 | ||rtexvdzq.com^$important 594 | ||cyakrxii.com^$important 595 | ||txxwsqkpo.com^$important 596 | ||eyarxzpz.com^$important 597 | ||zvwgecmps.com^$important 598 | ||kszwvqzdt.com^$important 599 | ||iooykqhxw.com^$important 600 | ||totmecegv.com^$important 601 | ||uisazqbpv.com^$important 602 | ||kogpautve.com^$important 603 | ||zmasywchg.com^$important 604 | ||rwcetkxc.com^$important 605 | ||tqwvpmtkk.com^$important 606 | ||vuekqeiu.com^$important 607 | ||mroegwtfp.com^$important 608 | ||tgqrizzdv.com^$important 609 | ||gxxktgzkm.com^$important 610 | ||spxszemat.com^$important 611 | ||pkrxeidhx.com^$important 612 | ||icvgortxy.com^$important 613 | ||xztoxqaet.com^$important 614 | ||sqkiaekgx.com^$important 615 | ||wgezptpzo.com^$important 616 | ||vwcsmktdx.com^$important 617 | ||czqoiyafu.com^$important 618 | ||kuyxsvfv.com^$important 619 | ||txizqmpu.com^$important 620 | ||irriytmac.com^$important 621 | ||esvuprfri.com^$important 622 | ||ywseikhpk.com^$important 623 | ||yvsmiemas.com^$important 624 | ||qxerkukcy.com^$important 625 | ||eaxuktiva.com^$important 626 | ||iqxzwmzk.com^$important 627 | ||uqcpazfzi.com^$important 628 | ||wykqwccac.com^$important 629 | ||crmzoqmfm.com^$important 630 | ||xxveirikr.com^$important 631 | ||wsvzpykgi.com^$important 632 | ||miptvmhxg.com^$important 633 | ||exvpxohrq.com^$important 634 | ||ikgmuhtu.com^$important 635 | ||wvrtzcvp.com^$important 636 | ||sucqxgxr.com^$important 637 | ||cmxipvms.com^$important 638 | ||iycirefhi.com^$important 639 | ||qvutgxvgw.com^$important 640 | ||wwuyqipky.com^$important 641 | ||veoygzprq.com^$important 642 | ||gzqukmkdm.com^$important 643 | ||akvgpzcvm.com^$important 644 | ||qcvktcfmv.com^$important 645 | ||moxmagrze.com^$important 646 | ||rakmuatq.com^$important 647 | ||uxioexfcs.com^$important 648 | ||ssogqufpa.com^$important 649 | ||ivawuktgy.com^$important 650 | ||zptsuyfzk.com^$important 651 | ||aegmsqmim.com^$important 652 | ||xgtvzehtu.com^$important 653 | ||qtxrekzcc.com^$important 654 | ||rziwgahie.com^$important 655 | ||zckstbhs.com^$important 656 | ||xvagkxgw.com^$important 657 | ||mmeqrceca.com^$important 658 | ||wkyemzpex.com^$important 659 | ||irpkarkep.com^$important 660 | ||uarupiaxw.com^$important 661 | ||eaqrivprr.com^$important 662 | ||wapumcvpz.com^$important 663 | ||yuctywefm.com^$important 664 | ||gtegaivtc.com^$important 665 | ||yoiwpatgk.com^$important 666 | ||ixsyvwfcz.com^$important 667 | ||ozvowtfms.com^$important 668 | ||wqeuomvie.com^$important 669 | ||iyaigozfy.com^$important 670 | ||ewcsrfzu.com^$important 671 | ||kumawzczx.com^$important 672 | ||tivtyzip.com^$important 673 | ||ewpackegr.com^$important 674 | ||tziktwpty.com^$important 675 | ||xopqesezs.com^$important 676 | ||rqkpwgpo.com^$important 677 | ||mvawxfxz.com^$important 678 | ||zkieubfc.com^$important 679 | ||grrzievkm.com^$important 680 | ||crtgpzemk.com^$important 681 | ||riurkxibx.com^$important 682 | ||mgzwmsmxu.com^$important 683 | ||zmqtwzhbm.com^$important 684 | ||xwsmxoxkw.com^$important 685 | ||tysxkybpk.com^$important 686 | ||kryazexiu.com^$important 687 | ||ksxopbmc.com^$important 688 | ||pmzmpiafq.com^$important 689 | ||yotscrzbs.com^$important 690 | ||rpukyicdc.com^$important 691 | ||aazxirpfc.com^$important 692 | ||gcoqmveiv.com^$important 693 | ||owtmpcazy.com^$important 694 | ||aauwtsbhu.com^$important 695 | ||qpoamicbe.com^$important 696 | ||vsokvgvhp.com^$important 697 | ||mqtweavbe.com^$important 698 | ||ivtpvmpka.com^$important 699 | ||usxzemrzx.com^$important 700 | ||ooemcwcaw.com^$important 701 | ||sgtzksdpa.com^$important 702 | ||tvqykzieu.com^$important 703 | ||trskzabto.com^$important 704 | ||uqcopmgi.com^$important 705 | ||sqeckemg.com^$important 706 | ||optxqiec.com^$important 707 | ||vwzrwxmky.com^$important 708 | ||iceaukgfe.com^$important 709 | ||uuswirmam.com^$important 710 | ||xwopryefq.com^$important 711 | ||yzzpewfkq.com^$important 712 | ||emqsgdpp.com^$important 713 | ||wqupkpew.com^$important 714 | ||ougzmepo.com^$important 715 | ||zgeaoykiq.com^$important 716 | # 河北雄安快手科技有限公司 717 | ||tgtmprp.com^$important 718 | ||agtrpvk.com^$important 719 | ||xkwai.cn^$important 720 | ||viuasta.com^$important 721 | ||xkwai.com^$important -------------------------------------------------------------------------------- /Categories/JunkDomain/general_xiamen_weixun.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Junk Domain General Block: 厦门微讯信息科技有限公司 3 | ! Title: General 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 厦门微讯信息科技有限公司 12 | ||3abbabb.com^$important 13 | ||4fhf9.com^$important 14 | ||ik8ry.com^$important 15 | ||8yph87.com^$important 16 | ||f52f6m.com^$important 17 | ||tjn5ox.com^$important 18 | ||90d3i.com^$important 19 | ||fcb6e84.com^$important 20 | ||2mftu.com^$important 21 | ||cs2iqn.com^$important 22 | ||b5kga5.com^$important 23 | ||51kj19.com^$important 24 | ||70b9qq.com^$important 25 | ||kb85m.com^$important 26 | ||u042zj.com^$important 27 | ||2i2b5c.com^$important 28 | ||2greud3.com^$important 29 | ||6t0q9.com^$important 30 | ||inuu6.com^$important 31 | ||0qit4.com^$important 32 | ||7rdok0.com^$important 33 | ||mlay9l.com^$important 34 | ||m5bn.com^$important 35 | ||s8ywpd.com^$important 36 | ||cp80tg.com^$important 37 | ||63fi4v.com^$important 38 | ||drss2.com^$important 39 | ||20hof.com^$important 40 | ||dwnlc6.com^$important 41 | ||sj3lqk.com^$important 42 | ||x4rt7.com^$important 43 | ||hehe17173.com^$important 44 | ||e3930cc.com^$important 45 | ||a544bb8.com^$important 46 | ||t7kagq.com^$important 47 | ||06zmw.com^$important 48 | ||lb2bhs.com^$important 49 | ||umt7v.com^$important 50 | ||a0jgqg.com^$important 51 | ||cjlw6.com^$important 52 | ||vpe856.com^$important 53 | ||z9rhpj.com^$important 54 | ||feitian001.com^$important 55 | ||tintinz.com^$important 56 | ||twcczhu.com^$important 57 | ||f3sy3.com^$important 58 | ||k5ldy.com^$important 59 | ||r6e2fe.com^$important 60 | ||pwvg9h.com^$important 61 | ||zsy93.com^$important 62 | ||jwo39.com^$important 63 | ||29kziy.com^$important 64 | ||ej5ha3.com^$important 65 | ||3lwxt.com^$important 66 | ||8ndeml.com^$important 67 | ||77lqe.com^$important 68 | ||cv8738.com^$important 69 | ||4r2h1p.com^$important 70 | ||qrsc8.com^$important 71 | ||zmz6or.com^$important 72 | ||e8n7zg.com^$important 73 | ||jwdzgol.com^$important 74 | ||dcmk17.com^$important 75 | ||99mssj.com^$important 76 | ||w4z8s5.com^$important 77 | ||wts97.com^$important 78 | ||t5doy.com^$important 79 | ||dep9cc.com^$important 80 | ||uqntb1.com^$important 81 | ||f4ztx.com^$important 82 | ||nxko5.com^$important 83 | ||dd1zi6.com^$important 84 | ||zp1133.com^$important 85 | ||4oidne.com^$important 86 | ||qq66699.com^$important 87 | ||w961ceh.com^$important 88 | ||6sfg.com^$important 89 | ||lalawan67.net^$important 90 | ||90vkif.com^$important 91 | ||d2kdi2ss.com^$important 92 | ||14yaa.com^$important 93 | ||t93d3d.com^$important 94 | ||qingmingzhuan.com^$important 95 | ||youle55.net^$important 96 | ||jmt76.com^$important 97 | ||0930h.com^$important 98 | ||isxwjs.com^$important 99 | ||00tera.com^$important 100 | ||6s54.com^$important 101 | ||oc8287.com^$important 102 | ||02kdid.com^$important 103 | ||wszzl001.com^$important 104 | ||o37o.net^$important 105 | ||niuxgame77.net^$important 106 | ||n2u20n.com^$important 107 | ||17uc.net^$important 108 | ||ecwan77.net^$important 109 | ||peb22.com^$important 110 | ||kd23kasd.com^$important 111 | ||17wan7.com^$important 112 | ||wkwl7.com^$important 113 | ||longwenzhanyu.com^$important 114 | ||yaowanba56.com^$important 115 | ||youle55.com^$important 116 | ||youwan178.com^$important 117 | ||qnt127.com^$important 118 | ||f2zd.com^$important 119 | ||178ugame.com^$important 120 | ||ewwqac.com^$important 121 | ||ieeod0.com^$important 122 | ||00lol00.com^$important 123 | ||rzsgui8.com^$important 124 | ||fd7c.com^$important 125 | ||9509215.com^$important 126 | ||9jeyeq.com^$important 127 | ||w9usw9.com^$important 128 | ||fghi34.com^$important 129 | ||1470237.com^$important 130 | ||f11w.com^$important 131 | ||6s65cf1.com^$important 132 | ||6d4g.com^$important 133 | ||h3ue2s.com^$important 134 | ||rvfdp.com^$important 135 | ||u2j2ha.com^$important 136 | ||dtszj2016.com^$important 137 | ||rzsg008.com^$important 138 | ||fim34s.com^$important 139 | ||d1f8.com^$important 140 | ||fe83647.com^$important 141 | ||ns8d.com^$important 142 | ||s5df.com^$important 143 | ||d03jd.com^$important 144 | ||zjhx520.com^$important 145 | ||11fldxn.com^$important 146 | ||v4dwkcv.com^$important 147 | ||a7779e6.com^$important 148 | ||f5gh.com^$important 149 | ||45io.com^$important 150 | ||uk6sq.com^$important 151 | ||404hso.com^$important 152 | ||7y8ihxs.com^$important 153 | ||24u7tos.com^$important 154 | ||dwrvftf.com^$important 155 | ||3hw3wq5.com^$important 156 | ||2412w91.com^$important 157 | ||0neoi5.com^$important 158 | ||0wd9d.com^$important 159 | ||29n83d.com^$important 160 | ||39h83s.com^$important 161 | ||383ni8.com^$important 162 | ||949ejd.com^$important 163 | ||bbe37.com^$important 164 | ||98dwd.com^$important 165 | ||gglg4by.com^$important 166 | ||qosqz.com^$important 167 | ||0c09wd.com^$important 168 | ||9wjc9w.com^$important 169 | ||29vag9l3.com^$important 170 | ||39dj9e.com^$important 171 | ||74b47d.com^$important 172 | ||093nd9.com^$important 173 | ||303b8d.com^$important 174 | ||494j84.com^$important 175 | ||494nm8.com^$important 176 | ||933n3i.com^$important 177 | ||ind9ed.com^$important 178 | ||wejesc.com^$important 179 | ||09ewnc.com^$important 180 | ||83h87d.com^$important 181 | ||93njf0.com^$important 182 | ||gametechopen.com^$important 183 | ||hlrm6.com^$important 184 | ||ee9f1w.com^$important 185 | ||co6h7u.com^$important 186 | ||6b7t0.com^$important 187 | ||icoj3.com^$important 188 | ||wj0ldf.com^$important 189 | ||8ed9dn.com^$important 190 | ||93kdjp.com^$important 191 | ||9uty4r.com^$important 192 | ||ggmm777.com^$important 193 | ||ic76n.com^$important 194 | ||he43e.com^$important 195 | ||hpy2y.com^$important 196 | ||8na98.com^$important 197 | ||pnz8em.com^$important 198 | ||93jd9e.com^$important 199 | ||e9kjc.com^$important 200 | ||f6fr2e.com^$important 201 | ||fe12c08.com^$important 202 | ||d93jd.com^$important 203 | ||91s9q.com^$important 204 | ||r6kyuh.com^$important 205 | ||r3egn5.com^$important 206 | ||hfnh5.com^$important 207 | ||bnw0ug.com^$important 208 | ||dj92d.com^$important 209 | ||l7115.com^$important 210 | ||w23135.com^$important 211 | ||e9cic.com^$important 212 | ||o7t9u.com^$important 213 | ||bh6g.com^$important 214 | ||i55733.com^$important 215 | ||tcl37.net^$important 216 | ||hhoka1.com^$important 217 | ||n3deeq.com^$important 218 | ||v99pve.com^$important 219 | ||2lkxh.com^$important 220 | ||6vj7z0.com^$important 221 | ||gmfgda.com^$important 222 | ||ihfvds.com^$important 223 | ||0ekdu.com^$important 224 | ||jsidb.com^$important 225 | ||cqby2016.com^$important 226 | ||33564db.com^$important 227 | ||6778f20.com^$important 228 | ||g1c5.com^$important 229 | ||jklxuk.com^$important 230 | ||zhuoxunnet.com^$important 231 | ||9om0t.com^$important 232 | ||youyou234.net^$important 233 | ||dfdrbv.com^$important 234 | ||5f41xxua.com^$important 235 | ||c3xc.com^$important 236 | ||gq3z8.com^$important 237 | ||5ajhf.com^$important 238 | ||ucwan87.com^$important 239 | ||xihawan8.com^$important 240 | ||hzs786.com^$important 241 | ||jd0932.com^$important 242 | ||09dkf.com^$important 243 | ||f46mot.com^$important 244 | ||gu3875.com^$important 245 | ||d23b684.com^$important 246 | ||9mvhg.com^$important 247 | ||33yaowan.com^$important 248 | ||aiwanma99.net^$important 249 | ||sanguoqingyuan.com^$important 250 | ||65cd5ws.com^$important 251 | ||3dwwwgame.com^$important 252 | ||g1f5.com^$important 253 | ||gh8s.com^$important 254 | ||jf9p.com^$important 255 | ||dhyjaqa.com^$important 256 | ||nxrrvmy.com^$important 257 | ||7a31jmf.com^$important 258 | ||r4qwg15.com^$important 259 | ||0rh37e.com^$important 260 | ||28s92w.com^$important 261 | ||0d09n.com^$important 262 | ||02kd84.com^$important 263 | ||9wjd07.com^$important 264 | ||29wjns.com^$important 265 | ||30f94d.com^$important 266 | ||iwni9s.com^$important 267 | ||qo9sn.com^$important 268 | ||04n9r0.com^$important 269 | ||39dh93.com^$important 270 | ||39ej83.com^$important 271 | ||945n48.com^$important 272 | ||c1d25.com^$important 273 | ||e9j98e.com^$important 274 | ||74b8dk.com^$important 275 | ||75n474.com^$important 276 | ||95n9f4.com^$important 277 | ||387h38.com^$important 278 | ||d9quw.com^$important 279 | ||e5e2ff.com^$important 280 | ||dnsyun.com^$important 281 | ||17kuxun.com^$important 282 | ||e9h2d5.com^$important 283 | ||7q79ba.com^$important 284 | ||xcl76.com^$important 285 | ||6x7e9.com^$important 286 | ||oevi23.com^$important 287 | ||9ejdie.com^$important 288 | ||r9r2f5.com^$important 289 | ||9djec.com^$important 290 | ||8c4ff81.com^$important 291 | ||3ndksd.com^$important 292 | ||041ae187.com^$important 293 | ||393h33.com^$important 294 | ||980cje.com^$important 295 | ||2m2kne.com^$important 296 | ||c65c629.com^$important 297 | ||5yk183.com^$important 298 | ||bo4di.com^$important 299 | ||q0ddji.com^$important 300 | ||dky66.com^$important 301 | ||5s0uig.com^$important 302 | ||8dtdi.com^$important 303 | ||jz7ht.com^$important 304 | ||vvh4h.com^$important 305 | ||mgp526.com^$important 306 | ||xdvk12.com^$important 307 | ||29dnue.com^$important 308 | ||33bh3.com^$important 309 | ||k4jfj3.com^$important 310 | ||65mhxy.com^$important 311 | ||3777u.com^$important 312 | ||50qyy.com^$important 313 | ||nvshenlianmeng.com^$important 314 | ||n23212.com^$important 315 | ||or617.com^$important 316 | ||5d2ede2.com^$important 317 | ||y2x3lm.com^$important 318 | ||lscs444.com^$important 319 | ||t1y4.com^$important 320 | ||d22txf.com^$important 321 | ||ugame177.com^$important 322 | ||zhanzhenghuiji2.com^$important 323 | ||2keoi.com^$important 324 | ||37vs4399.com^$important 325 | ||goodwebgame.com^$important 326 | ||kj6kh2.com^$important 327 | ||ecuc123.com^$important 328 | ||ecwan77.com^$important 329 | ||trw81.com^$important 330 | ||if1000.com^$important 331 | ||3kqp5b.com^$important 332 | ||laigame7.net^$important 333 | ||93hdw9.com^$important 334 | ||000dn.com^$important 335 | ||37xyx.com^$important 336 | ||178ugame.net^$important 337 | ||vrgame01.com^$important 338 | ||szdn1ms.com^$important 339 | ||s8x1.com^$important 340 | ||v48lmp.com^$important 341 | ||65enc.com^$important 342 | ||p8wpfh.com^$important 343 | ||wffafn.com^$important 344 | ||wanyouxi7.com^$important 345 | ||ns5n.com^$important 346 | ||ds6df25.com^$important 347 | ||mv3rx8.com^$important 348 | ||37wangame.com^$important 349 | ||f1s5.com^$important 350 | ||mim6dw.com^$important 351 | ||b0g5uz.com^$important 352 | ||youyou234.com^$important 353 | ||580game.com^$important 354 | ||fhu2f.com^$important 355 | ||gtouqiang.com^$important 356 | ||zwdzjs00.com^$important 357 | ||001jzwl.com^$important 358 | ||cyhx98.com^$important 359 | ||sxuyr2nx.com^$important 360 | ||ngh6.com^$important 361 | ||woskj2.com^$important 362 | ||haofan005.com^$important 363 | ||hdzy003.com^$important 364 | ||9renzsg.com^$important 365 | ||ynb2dca.com^$important 366 | ||f1zd.com^$important 367 | ||wq96f9.com^$important 368 | ||dxasus.com^$important 369 | ||sjzyj2016.com^$important 370 | ||a5s8.com^$important 371 | ||909wb.com^$important 372 | ||93jd3.com^$important 373 | ||50zera.com^$important 374 | ||c037a3c.com^$important 375 | ||6g5fd1a.com^$important 376 | ||tdaui8.com^$important 377 | ||uth227.com^$important 378 | ||7nla6.com^$important 379 | ||t3ierx.com^$important 380 | ||d0352.com^$important 381 | ||e6zbj.com^$important 382 | ||jvkt51.com^$important 383 | ||w3v21e.com^$important 384 | ||dxcyys8.com^$important 385 | ||41dhg5.com^$important 386 | ||qu9y7e.com^$important 387 | ||la3q1.com^$important 388 | ||efkr11.com^$important 389 | ||hsdsca.com^$important 390 | ||0eji8.com^$important 391 | ||8ce7e81.com^$important 392 | ||ef3abd.com^$important 393 | ||wzql9.com^$important 394 | ||i3nf9h.com^$important 395 | ||pry58.com^$important 396 | ||r147emh.com^$important 397 | ||9wm9s0.com^$important 398 | ||rkp388.com^$important 399 | ||ey1xuw.com^$important 400 | ||tm2hy3.com^$important 401 | ||vreg1.com^$important 402 | ||f41g.com^$important 403 | ||bbdp21.com^$important 404 | ||qdytfs.com^$important 405 | ||q1qfc323.com^$important 406 | ||olii6.com^$important 407 | ||6tdiix.com^$important 408 | ||a2oz5.com^$important 409 | ||lmyb3w.com^$important 410 | ||tkl77.com^$important 411 | ||jvo5m5.com^$important 412 | -------------------------------------------------------------------------------- /Categories/JunkGame/general.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Junk Game 3 | ! Title: General 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 上海益世界信息技术集团有限公司(及其关联公司) 12 | ## 上海益世界信息技术集团有限公司 13 | /(e|1)wan(sdk|game|box)?\./$important 14 | /(y|1)(i|-)(wangame|world|haowanjia|shijie)\./$important 15 | ||23you.net^$important 16 | ||u6.cn^$important 17 | ||cwmob.com^$important 18 | ||17papapa.com^$important 19 | ||1gamer.cn^$important 20 | ||92xixi.com^$important 21 | ||123cw.cn^$important 22 | ||sd2410.com^$important 23 | ||rd0152.com^$important 24 | ||3gu6.com^$important 25 | ## 芜湖易玩网络科技有限公司 26 | /(youliang|qiliang)2018\./$important 27 | ||nnsms.net^$important 28 | ||cwmob.cn^$important 29 | ## 芜湖益梦网络科技有限公司 30 | ||1wdream.cn^$important 31 | ## 芜湖益炫网络科技有限公司 32 | ||whyxuan.cn^$important 33 | ## 芜湖百游网络科技有限公司 34 | /yulingshi/$important 35 | /wuhubaiyou/$important 36 | ## 广州益势网络科技有限公司 37 | ||gzeshi.cn^$important 38 | ## 芜湖快游网络科技有限公司 39 | /qi(meng|hang)game\./ 40 | ||kuaiyouya.com^$important 41 | ||ikuaiyou.cn^$important 42 | ## 海南益量网络科技有限公司 43 | ||kanahat.com^$important 44 | ||lehoadge.com^$important 45 | ||inneam.com^$important 46 | ||serdukrao.com^$important 47 | ||bostril.com^$important 48 | ||docluin.com^$important 49 | ||jigatious.com^$important 50 | ||kifiek.com^$important 51 | ||gethgua.com^$important 52 | ||dulheable.com^$important 53 | ||othcam.com^$important 54 | ||eufut.com^$important 55 | ||astrilan.com^$important 56 | ||rukold.com^$important 57 | ||tagucud.com^$important 58 | ||ubbebbok.com^$important 59 | ||gidthpuce.com^$important 60 | ||ocurdge.com^$important 61 | ||qubbalk.com^$important 62 | ||captcel.com^$important 63 | ||giakuem.com^$important 64 | ||yecre.com^$important 65 | ||virumam.com^$important 66 | ||sulcrelat.com^$important 67 | ||ublese.com^$important 68 | ||ceipord.com^$important 69 | ||ocuayoik.com^$important 70 | ||rapiuct.com^$important 71 | ||mupepaek.com^$important 72 | ||pebesh.com^$important 73 | ||heenaiked.com^$important 74 | ||clukewaz.com^$important 75 | ||iyocekre.com^$important 76 | ||xaslin.com^$important 77 | ||laitbun.com^$important 78 | ||takonin.com^$important 79 | ||kungeqi.com^$important 80 | ||surodrian.com^$important 81 | ||scilllau.com^$important 82 | ||sruhi.com^$important 83 | ||guabiu.com^$important 84 | ||nanitot.com^$important 85 | ||demhuty.com^$important 86 | ||wrilese.com^$important 87 | ||sqakrosh.com^$important 88 | ||akoul.com^$important 89 | ||meeduclid.com^$important 90 | ||oswil.com^$important 91 | ||takucuge.com^$important 92 | ||oltolyith.com^$important 93 | ||carusot.com^$important 94 | ||uzzotogh.com^$important 95 | ||slubez.com^$important 96 | ||piution.com^$important 97 | ## 芜湖智健达网络科技有限公司 98 | ||zhijd.com^$important 99 | ## 益世界网络科技(上海)有限公司 100 | ## 广州益玩网络科技有限公司 101 | ||gzchangwan.com^$important 102 | ||taskirty.com^$important 103 | ||gzchangwan.cn^$important 104 | ||dippial.com^$important 105 | ||mepird.com^$important 106 | ## 益世界网络科技(广东)有限公司 107 | ||worldfun.cn^$important 108 | ||worldfun.com^$important 109 | ## 上海石榴网络科技有限公司 110 | ||myshiliu.com^$important 111 | ||bestshiliu.com^$important 112 | ||shiliugame.cn^$important 113 | -------------------------------------------------------------------------------- /Categories/Malware/2345_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: 2345 Series 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | /.*\.?2345\w{0,}\..*/$important 12 | # 上海二三四五网络科技有限公司 13 | ||777ge.com^$important 14 | ||tongcha.com^$important 15 | ||50bang.org^$important 16 | ||6781.com^$important 17 | ||k986.com^$important 18 | ||555k.net^$important 19 | ||wzeh.com^$important 20 | ||cc62.com^$important 21 | ||hao184.com^$important 22 | /(cycyongh)|(banmyonghu)/ 23 | ||kzdh.com^$important 24 | ||yl234.cn^$important 25 | ||222i.net^$important 26 | ||4585.com^$important 27 | ||yl234.com^$important 28 | /xinxiliusdk/$important 29 | ||hao774.com^$important 30 | ||ab365.com^$important 31 | ||77816.com^$important 32 | ||50bangzh.com^$important 33 | /cztxyh/$important 34 | ||kuku2.com^$important 35 | /kabasiji/$important 36 | ||5599.net^$important 37 | ||haozip.com^$important 38 | ||9991.com^$important 39 | ||zhangyu.com^$important 40 | ||ruichuang.net^$important 41 | # 上海二三四五移动科技有限公司 42 | /ciwei\w{0,}/$important 43 | ||cycyh.wang^$important 44 | ||xinglm.cn^$important 45 | ||shanhu99.com^$important 46 | /eternalland/$important 47 | ||caomeiyhu.com^$important 48 | ||game6677.com^$important 49 | ||haishun.org^$important 50 | /qnchrome/ 51 | # 宁波坤达智能科技有限公司 52 | ||to128.com^$important 53 | ||yes115.com^$important 54 | # 上海芯翌智能科技有限公司 55 | /keansoft/$important 56 | # 上海芯翌智能科技有限公司 57 | /xforwardai/$important 58 | # 广东鑫锘影视文化传播有限公司 59 | ||contentchina.com^$important -------------------------------------------------------------------------------- /Categories/Malware/37_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: 37 Series 4 | ! Update Time: 2023-02-25 20:35:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 三七文娱(广州)网络科技有限公司 12 | ||37wenyu.com^$important 13 | # 三七互娱(上海)科技有限公司 14 | /37wan\w{0,4}\./ 15 | ||my62you.com^$important 16 | ||my95k.com^$important 17 | # 上海硬通网络科技有限公司 18 | /osqwsf\d\d\./$important 19 | /^.*37(api|gam|ops|wan).*\.(com|cn|net)$/$important 20 | ||2op9.net^$important 21 | ||37.com^$important 22 | ||39on.com^$important 23 | ||3mtw.com^$important 24 | ||3pwg.com^$important 25 | ||3qxy.com^$important 26 | ||3ylm.com^$important 27 | ||52d5d.com^$important 28 | ||5dfsd2.com^$important 29 | ||5jli.com^$important 30 | ||5ooq.com^$important 31 | ||5ypy.com^$important 32 | ||5zmp.com^$important 33 | ||60hx.com^$important 34 | ||60ou.com^$important 35 | ||62youapi.com^$important 36 | ||6711api.com^$important 37 | ||6d4d5.com^$important 38 | ||6ght.com^$important 39 | ||6wtx.com^$important 40 | ||915pk.com^$important 41 | ||993h.com^$important 42 | ||996a.com^$important 43 | ||api6711.com^$important 44 | ||as3f.com^$important 45 | ||g89n.com^$important 46 | ||gamepk37.com^$important 47 | ||jh8k.com^$important 48 | ||jk3a.com^$important 49 | ||x5cv.com^$important 50 | ||ytongnet.com^$important 51 | ||z7xz.com^$important 52 | ||zuihi.com^$important 53 | # 海南连弘网络科技有限公司 54 | ||app6687.com^$important 55 | ||fdd73.com^$important 56 | ||n5782.com^$important 57 | ||sy1681.com^$important 58 | ||xccf12.com^$important 59 | ||elk20.com^$important 60 | ||iwy23.com^$important 61 | ||lian-hong.cn^$important 62 | ||oajj08.com^$important 63 | ||qss558.com^$important 64 | # 江苏智铭网络技术有限公司 65 | ||own75.com^$important 66 | ||yev242.com^$important 67 | ||un726.com^$important 68 | ||zhi-ming.com^$important 69 | ||o13214.com^$important 70 | ||vhk83.com^$important 71 | ||uvd43.com^$important 72 | ||sanqiyx.com^$important 73 | ||oxz135.com^$important 74 | ||ny3002.com^$important 75 | ||zwuy52.com^$important 76 | # 安徽尚趣玩网络科技有限公司 77 | /37\w{2,3}\./$important 78 | ||isdl5f.com^$important 79 | ||6711.com^$important 80 | ||j3837d.com^$important 81 | ||6711img.com^$important 82 | ||2ed5d.com^$important 83 | ||96f2d.com^$important 84 | ||cdwenbei.com^$important 85 | ||9jd83d.com^$important 86 | ||37.com.cn^$important 87 | # 北京时术网络科技有限公司 88 | ||sh3k.cn^$important 89 | # 上海咚巴啦网络科技有限公司 90 | /dobala\./$important 91 | # 上海冠航网络科技有限公司 92 | /s\d\d(c|f)/$important 93 | ||guan-hang.com^$important 94 | # 安徽逐胜网络科技有限公司 95 | ||zhu-sheng.com^$important 96 | # 安徽嘉尚网络科技有限公司 97 | ||yxi3344.com^$important 98 | ||ps2s92ow.com^$important 99 | ||applesitunes.com^$important 100 | ||jia-shang.cn^$important 101 | ||apps668.com^$important 102 | ||iphoneitunes.com^$important 103 | ||37zhaopin.com^$important 104 | # 海南惠莱网络科技有限公司 105 | /hui-?lai(\w{2,8})?\./ 106 | ||wxbolo.com^$important 107 | ||ohk36.com^$important 108 | # 广州楚门网络科技有限公司 109 | ||gzjfgame.com^$important 110 | # 厦门延趣网络科技有限公司 111 | ||xmyanqu.com^$important 112 | ||jwdzg.com^$important 113 | # 厦门市有梦互娱科技有限公司 114 | ||xmyoumeng.com^$important 115 | ||youmenghuyu.net^$important 116 | # 成都星合互娱科技有限公司 117 | ||staruniongame.com^$important 118 | ||unionallstar.com^$important 119 | # 成都星铭互娱科技有限公司 120 | ||starinscribe.com^$important 121 | # 重庆星耀互娱科技有限公司 122 | ||starhonorgame.com^$important 123 | # 海南海口星懿互娱科技有限公司 124 | ||shonegame.com^$important 125 | # 安徽沁玩网络科技有限公司 126 | ||qin-wan.com^$important 127 | # 广州盈风网络科技有限公司 128 | ||kvps85.com^$important 129 | # 安徽冠宇文化传媒有限公司 130 | ||guan-yu.com.cn^$important 131 | # 安徽旭宏信息技术有限公司 132 | ||qyp615.com^$important 133 | ||xuhongtech.com^$important 134 | ||lda02.com^$important 135 | ||pt675.com^$important 136 | ||xu-hong.com.cn^$important 137 | ||xuhongnet.com^$important 138 | ||ahxuhong.com^$important 139 | # 海南尚轩网络科技有限公司 140 | ||bjgjt38.com^$important 141 | ||shang-xuan.cn^$important 142 | ||hnshangxuan.com^$important 143 | ||jwdzgsy.com^$important 144 | ||techshx.com^$important 145 | ||a381735.com^$important 146 | ||foar33.com^$important 147 | ||pnyzj.com^$important 148 | ||hcu838.com^$important 149 | ||zqk588.com^$important 150 | ||ngty556.com^$important 151 | ||shxnetwork.com^$important 152 | ||thaliasetsail.com^$important 153 | # 广州三七网络科技有限公司 154 | ||37huimei.com^$important 155 | ||akbkgame.com^$important 156 | ||453e.com^$important 157 | ||37huoshanhu.com^$important 158 | # 江苏嘉趣网络科技有限公司 159 | ||jia-qu.cn^$important 160 | # 芜湖锐虎网络科技有限公司 161 | ||whruihu-tech.com^$important 162 | ||rui-hu.cn^$important 163 | # 安徽三七网络科技有限公司 164 | ||95k.com^$important 165 | ||bawfer.com^$important 166 | ||sedunt.com^$important 167 | ||lansors.com^$important 168 | ||deament.com^$important 169 | ||nuction.com^$important 170 | ||san-qi.cn^$important 171 | ||dealker.com^$important 172 | # 广州趣虎网络科技有限公司 173 | ||qu-hu.cn^$important 174 | ||0jlfvm.com^$important 175 | ||7necyl.com^$important 176 | ||9fe6d.com^$important 177 | ||gzquhu.com^$important 178 | # 广州逸虎网络科技有限公司 179 | ||yihuyihu.cn^$important 180 | # 海南智虎网络科技有限公司 181 | ||pzq8toew.com^$important 182 | ||cvoyoy0e.com^$important 183 | ||usdbbvl7.com^$important 184 | ||0j2i25.com^$important 185 | ||zhi-hu.cn^$important 186 | ||r6ajactz.com^$important 187 | ||uv1oxjrf.com^$important 188 | ||fn1zd3kv.com^$important 189 | ||3jd93d.com^$important 190 | ||ast8kbdc.com^$important 191 | ||gx8i64mc.com^$important 192 | ||hawlunger.com^$important 193 | ||itunestore.vip^$important 194 | ||haclaczi.com^$important 195 | ||8nq8ztb6.com^$important 196 | ||7wuzoe0s.com^$important 197 | ||8s9kt0qv.com^$important 198 | ||4ivyrmej.com^$important 199 | ||pb1771hp.com^$important 200 | ||02d93d.com^$important 201 | ||94j0r5.com^$important 202 | ||ozkheitn.com^$important 203 | ||930djd.com^$important 204 | # 上海羽厚亦网络科技有限公司 205 | ||yaohaiyou.com^$important 206 | ||10001wan.com^$important 207 | ||mapforlove.online^$important 208 | # 广州旭扬网络科技有限公司 209 | ||hello65.com^$important 210 | ||zhy162088.com^$important 211 | ||ttlewan.com^$important 212 | ||ggxx.net^$important 213 | ||liuwuyouxi.com^$important 214 | ||zhy161088.com^$important 215 | ||ggxx.com^$important 216 | # 海南日常网络科技有限公司 217 | ||0898richang.com^$important 218 | ||hiphip.cn^$important 219 | ||hipihapi.com^$important 220 | ||020richang.com^$important 221 | ||50pk.com^$important 222 | ||hapihapi.cn^$important 223 | # 巨枫互动信息科技(广州)有限公司 224 | ||giantfun168.com^$important 225 | # 江苏梦想互娱网络科技有限公司 226 | ||19193.com^$important 227 | # 深圳市异游科技有限公司 228 | ||difgame.com^$important 229 | # 广州放肆游网络科技有限公司 230 | ||funsyou.com^$important 231 | # 北京燧木科技有限公司 232 | ||suimugame.cn^$important 233 | # 安徽玩虎信息技术有限公司 234 | ||wan-hu.cn^$important 235 | # 安徽雷虎网络科技有限公司 236 | ||lei-hu-tech.com^$important 237 | ||lei-hu.com^$important 238 | ||lei-hu.cn^$important 239 | # 广州火山湖信息技术有限公司 240 | ||huo-shan-hu.com^$important 241 | # 北京尚恒嘉天网络科技有限公司 242 | ||shang-heng.com^$important 243 | # 上海手游天下数字科技有限公司 244 | ||mukormow.com^$important 245 | ||tarnace.com^$important 246 | ||rekcd.com^$important 247 | ||windvaday.com^$important 248 | ||akbing.com^$important 249 | ||teehekor.com^$important 250 | ||loozir.com^$important 251 | ||taymean.com^$important 252 | ||burmealay.com^$important 253 | ||vunlautay.com^$important 254 | ||nofeba.com^$important 255 | ||sytx-games.com^$important 256 | ||toceaby.com^$important 257 | ||fordawtech.com^$important 258 | ||tgcome.com^$important 259 | ||taynay.com^$important 260 | # 海南游虎网络科技有限公司 261 | ||youhutech.com^$important 262 | ||9rnfi4.com^$important 263 | ||8dbkz595.com^$important 264 | ||osqwsf39.com^$important 265 | ||osqwsf26.com^$important 266 | ||osqwsf40.com^$important 267 | ||8enmdi.com^$important 268 | ||d9wnd.com^$important 269 | ||osqwsf38.com^$important 270 | ||i8wnd0.com^$important 271 | ||osqwsf27.com^$important 272 | ||mt4h4.com^$important 273 | ||404oir.com^$important 274 | ||93jd83.com^$important 275 | ||8shd0.com^$important 276 | ||osqwsf24.com^$important 277 | ||9nd32.com^$important 278 | ||iqd40bsn.com^$important 279 | ||37game.cc^$important 280 | ||49ij943.com^$important 281 | # 霍尔果斯智圣网络科技有限公司 282 | ||zs-zhisheng.cn^$important 283 | ||zs-zhisheng.com^$important 284 | # 霍尔果斯智凡网络科技有限公司 285 | ||sanqi-zhiyu.cn^$important 286 | # 上海通虎网络科技有限公司 287 | ||a5g90til.com^$important 288 | ||92nde.com^$important 289 | ||u4didd.com^$important 290 | ||30dj92.com^$important 291 | ||92hd83.com^$important 292 | ||38dh9.com^$important 293 | ||vfad5msw.com^$important 294 | ||i48dje.com^$important 295 | ||38ejed.com^$important 296 | ||8rn4u.com^$important 297 | ||094j35.com^$important 298 | ||44hier.com^$important 299 | ||4j40jd.com^$important 300 | ||6ib5h.com^$important 301 | ||50fkj4.com^$important 302 | ||49rj04.com^$important 303 | ||92d02d.com^$important 304 | ||8il8eo8i.com^$important 305 | ||xvin7vbp.com^$important 306 | ||3jd8edc.com^$important 307 | ||39ej7e.com^$important 308 | ||j4i9dh.com^$important 309 | ||e98dkj.com^$important 310 | ||0jd83s.com^$important 311 | ||92u93e.com^$important 312 | ||gw1lnkzm.com^$important 313 | ||odchqpto.com^$important 314 | ||zmye5vly.com^$important 315 | ||hapeenor.com^$important 316 | ||9dj93d.com^$important 317 | ||74byd.com^$important 318 | ||95h4yw.com^$important 319 | ||98ren8.com^$important 320 | # 上海涅虎网络科技有限公司 321 | ||oiwq3.com^$important 322 | ||9dswi.com^$important 323 | ||y2m2hc1l.com^$important 324 | ||osqwsf41.com^$important 325 | ||j1cpiq56.com^$important 326 | ||winoiq.com^$important 327 | ||0wjns.com^$important 328 | ||9hsiu.com^$important 329 | ||iwnw3.com^$important 330 | ||7a7xiyy4.com^$important 331 | ||11xotn7p.com^$important 332 | ||osqwsf22.com^$important 333 | ||b2fyzdw2.com^$important 334 | ||2hdd3.com^$important 335 | ||9qu2n.com^$important 336 | ||29dn8.com^$important 337 | ||0d2idn.com^$important 338 | ||ygc711iq.com^$important 339 | ||xfke1y1j.com^$important 340 | ||sxjwlz7c.com^$important 341 | ||91mhmcmz.com^$important 342 | ||osqwsf48.com^$important 343 | # 芜湖佳亮网络科技有限公司 344 | ||sepaker.com^$important 345 | ||jia-liang.com^$important 346 | ||jltging.com^$important 347 | ||galannet.com^$important 348 | # 海南乐歌网络科技有限公司 349 | ||hnlege.cn^$important 350 | # 上海傲庭网络科技有限公司 351 | ||odingame.cn^$important 352 | ||odinie.com^$important -------------------------------------------------------------------------------- /Categories/Malware/6789_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: 6789 Series 4 | ! Update Time: 2023-02-25 20:35:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京华网智讯软件有限公司 12 | ||office123456.cn^$important 13 | ||newhao123.net^$important 14 | ||6789.com^$important 15 | ||chinasoft365.com^$important 16 | ||office123456.com^$important 17 | ||newtab123.cn^$important 18 | ||newhao123.cn^$important 19 | ||newtab123.com^$important 20 | # 全民黄金(北京)科技有限公司 21 | ||qmhj.com^$important -------------------------------------------------------------------------------- /Categories/Malware/7654_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: 7654 Series 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | /(7654|9973))\w{0,}\./ 12 | /hao\d\d\d/ 13 | # 上海嵩恒网络科技股份有限公司 14 | ||dfxwdc.com^$important 15 | ||tantao.com^$important 16 | ||vip-dns-vip.com^$important 17 | ||shwlops.com^$important 18 | ||wnwb.com^$important 19 | ||xwdsp.com^$important 20 | ||dftoutiao.com^$important 21 | ||tianqikb.com^$important 22 | ||admamax.com^$important 23 | ||dfrili.com^$important 24 | ||dfshurufa.com^$important 25 | ||zoububao.com^$important 26 | ||songhengnet.com^$important 27 | ||pigdai.com^$important 28 | ||dftianqi.com^$important 29 | ||wubi.com^$important 30 | ||wn51.com^$important 31 | ||chachawenshu.com^$important 32 | ||wnyxh.cn^$important 33 | ||wenshuchacha.com^$important 34 | # 上海高欣计算机系统有限公司 35 | ||dyjgj.com^$important 36 | ||moban.com^$important 37 | ||nonglirili.net^$important 38 | ||shoushu120.com^$important 39 | ||admama.com^$important 40 | ||laohuangli365.com^$important 41 | ||duiduikan.com^$important 42 | ||mobanos.com^$important 43 | ||shgaoxin.net^$important 44 | ||haov2.com^$important 45 | ||wannianli365.com^$important 46 | ||joymms.com^$important 47 | # 上海展盟网络科技有限公司 48 | /heinote/$important 49 | ||bghr4g.xyz^$important 50 | ||nmfge.xyz^$important 51 | ||sjpojq.top^$important 52 | ||kuaizipcn.com^$important 53 | ||fytui.xyz^$important 54 | ||wannengzj.com^$important 55 | ||yangguangxia.top^$important 56 | ||nsubpp.top^$important 57 | ||znnsluphh.cn^$important 58 | ||smallbell.cn^$important 59 | ||ngzhh.wang^$important 60 | ||itnmg.xyz^$important 61 | ||hzxihulongjing.com^$important 62 | ||chenxiangpuer.xyz^$important 63 | ||kzchaoren.xyz^$important 64 | ||yangxinshenghuo.com^$important 65 | ||biantiaozhi.top^$important 66 | ||chanpinguige.top^$important 67 | ||dianhualiuyan.top^$important 68 | ||fangdiutieshi.top^$important 69 | ||rknjh86.top^$important 70 | ||qklfh13.top^$important 71 | ||ruswib.top^$important 72 | ||chenxiangpuer.com^$important 73 | ||mujinhua.xyz^$important 74 | ||uchiha.ltd^$important 75 | ||ubtt.cn^$important 76 | ||4qs9g0z.wang^$important 77 | ||kkdownload.com^$important 78 | ||xiaoheizj.com^$important 79 | ||officeschool.top^$important 80 | ||youshitie.top^$important 81 | ||kthws1y.top^$important 82 | ||vfpzmg.cn^$important 83 | ||zkrjh91.top^$important 84 | ||bkyth95.top^$important 85 | ||nknzre.top^$important 86 | ||dtymzm.net^$important 87 | ||jiawutishi.top^$important 88 | ||uxiake.com^$important 89 | ||hunpan.top^$important 90 | ||moxiangpuer.xyz^$important 91 | ||beidema.xyz^$important 92 | ||whooyan.com^$important 93 | ||guobaocainice.wang^$important 94 | ||qitabeifen.top^$important 95 | ||rrnbqq.top^$important 96 | ||cyun.wang^$important 97 | ||axtieguanying.xyz^$important 98 | ||ynpuertea.xyz^$important 99 | ||obito.ltd^$important 100 | ||gotofangjia.top^$important 101 | ||shengxialusix.wang^$important 102 | ||wthjs9d.top^$important 103 | ||kuaizipen.com^$important 104 | ||chunpan.top^$important 105 | ||gsinob.top^$important 106 | ||vrek.cn^$important 107 | ||dtymzm.cn^$important 108 | ||toutiaobashi.com^$important 109 | ||axtieguanying.com^$important 110 | ||nxsanpaotai.xyz^$important 111 | ||zenmeban.wang^$important 112 | ||shzhanmeng.com^$important 113 | ||d21.wang^$important 114 | ||ftpfjqn.cn^$important 115 | ||dtymzm.com^$important 116 | ||yiranwupin.top^$important 117 | ||18g.wang^$important 118 | ||zkwph62.top^$important 119 | ||bestxiazai.com^$important 120 | ||gyun.wang^$important 121 | ||efep.cn^$important 122 | ||aiwurenji.xyz^$important 123 | ||dalibaotc.com^$important 124 | ||rybqvbf.cn^$important 125 | ||wkbjh72.top^$important 126 | ||koutuo.top^$important 127 | ||ffght.wang^$important 128 | ||yyfht.wang^$important 129 | ||kxiazai.com^$important 130 | ||umzf.cn^$important 131 | ||bghr4g.top^$important 132 | ||naruto.red^$important 133 | ||aikanshuxuexi.top^$important 134 | ||mengdequandui.wang^$important 135 | # 上海睦欣网络科技有限公司 136 | /(dtymx)|(muxin)|(mxage)/$important 137 | /mx\w{3,4}\./$important 138 | ||698283.vip^$important 139 | ||bbkb.wang^$important 140 | ||rgozhm.cn^$important 141 | ||angwo.top^$important 142 | ||peoplec.wang^$important 143 | ||mengche.top^$important 144 | ||onnpsg.top^$important 145 | ||muwrg.top^$important 146 | ||grth.xyz^$important 147 | ||bedbdh.cn^$important 148 | ||neiyao.top^$important 149 | ||jjnxnb8.top^$important 150 | ||fnafgv.top^$important 151 | ||neitan.top^$important 152 | ||f9296.xyz^$important 153 | ||zthns8d.top^$important 154 | ||jwfun.com^$important 155 | ||dxgnnb2.top^$important 156 | ||aerger.icu^$important 157 | ||maodu10.xyz^$important 158 | # 上海泊燃网络科技有限公司 159 | /shhboran/$important 160 | # 上海以兮网络科技有限公司 161 | /ssyixi/$important 162 | # 上海圆识网络科技有限公司 163 | /(xingfu)?zoulu/$important 164 | ||vqvefx.wang^$important 165 | ||vcder.top^$important 166 | ||xfzl.icu^$important 167 | ||ganjiu.top^$important 168 | # 上海巳月网络科技有限公司 169 | /(shsysy)|(shsiyue)|(qmct)/$important 170 | # 上海广乐网络科技有限公司 171 | ||hwt7wz.fun^$important 172 | ||kuaizip.com^$important 173 | ||bnpp.wang^$important 174 | ||glzip.com^$important 175 | ||hjhhhb7.top^$important 176 | ||xxwuka.wang^$important 177 | ||oorrzz.com^$important 178 | ||mmmudb3.top^$important 179 | ||wfvrz.top^$important 180 | ||glzip.cn^$important 181 | ||glzip.net^$important 182 | ||tt6jeb.fun^$important 183 | ||hjuuub5.top^$important 184 | ||ytnscr.wang^$important 185 | ||hwsj.xyz^$important 186 | ||kpzip.cn^$important 187 | ||kpzip.net^$important 188 | ||xxfwpb1.top^$important 189 | ||ssgf.fun^$important 190 | ||abckantu.com^$important 191 | ||toutiaobus.com^$important 192 | ||mtsyzm.fun^$important 193 | ||bbbz.wang^$important 194 | ||kpzip.com^$important 195 | ||kpzip.com.cn^$important 196 | ||txpaf.top^$important 197 | ||udashi.pro^$important 198 | ||ohb2zg.fun^$important 199 | ||c0zpmk.fun^$important 200 | ||ytprrb4.top^$important 201 | ||hhrspb7.top^$important 202 | ||hwhdym.icu^$important 203 | ||hjojob1.top^$important 204 | ||newgp.fun^$important 205 | ||hwcp.wang^$important 206 | ||btiiny.fun^$important 207 | ||hwdi.cn^$important 208 | # 上海青茑网络科技有限公司 209 | /shqingqing/ 210 | # 上海烟燃网络科技有限公司 211 | /shyanran/ 212 | # 上海展鸣教育科技有限公司 213 | ||duoduoqimeng.com 214 | # 武汉巨博优科技有限公司 215 | ||down123.cc^$important 216 | ||udsdown.xyz^$important 217 | ||udashi.com^$important 218 | ||down123.ren^$important 219 | ||uqd123.cn^$important 220 | ||360uqd.com^$important 221 | ||360uds.com^$important 222 | ||down123.me^$important 223 | ||uqd123.com^$important 224 | ||udsdown.com^$important 225 | # 上海合梦网络科技有限公司 226 | ||otjkjyp.top^$important 227 | ||njpaxao.top^$important 228 | ||enoofyu.top^$important 229 | ||wifipal.top^$important 230 | ||hemeng.ltd^$important 231 | ||zsrckcg.xyz^$important 232 | ||ybzvbvt.site^$important 233 | ||tyftgtu.xyz^$important 234 | ||zfrpith.cn^$important 235 | ||yiqiwitv.icu^$important 236 | ||uivntlf.icu^$important 237 | # 上海苋見网络科技有限公司 238 | /^\w{0,}(xianjian)|(zoulu)\w{0,}\.\w{2,6}$/$important 239 | ||mmzl.top^$important 240 | ||miaomiaozl.top^$important 241 | # 上海霁栎网络科技有限公司 242 | /^\w{0,}jiyue\w{0,}\.\w{2,6}$/$important 243 | # 上海桔柚网络科技有限公司 244 | /^\w{0,}juyou\w{0,}\.\w{2,6}$/$important -------------------------------------------------------------------------------- /Categories/Malware/README.md: -------------------------------------------------------------------------------- 1 | # 恶意软件/流氓软件 2 | 3 | ## 类别 4 | 5 | + 37全家桶 6 | + 2345全家桶 7 | + 6789全家桶 8 | + 7654全家桶 9 | + 猎豹全家桶 10 | + 毒霸全家桶 11 | + P2P下崽器 12 | -------------------------------------------------------------------------------- /Categories/Malware/duba_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: duba Series 4 | ! Update Time: 2023-02-25 20:35:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京金山数字娱乐科技有限公司 12 | /^.*aida(no|tr|kg).*\.com$/$important 13 | /^.*king(soft|gate).*\.$/$important 14 | ||aidakg.com^$important 15 | ||aidatrans.com^$important 16 | ||fatherai.com^$important 17 | ||aidanote.com^$important 18 | # 成都金山数字娱乐科技有限公司 19 | # 珠海心游科技股份有限公司 20 | /ixinyou/$important 21 | ||xiaoyaojianghu.com^$important 22 | # 北京心游科技有限公司 23 | /pmsdk\./$import 24 | # 珠海弥天互娱技术有限公司 25 | ||mitianvr.com^$important 26 | # 珠海海鸟科技有限公司 27 | /^.*jinshan.*\.(com|cn|top)$/$important 28 | ||91duba.com^$important 29 | ||dfgjk.top^$important 30 | ||kingpdf.cn^$important 31 | ||jinshanapi.com^$important 32 | ||duba.net^$important 33 | ||drivergenius.com^$important 34 | ||jinshantip.com^$important 35 | ||zhhainiao.com^$important 36 | ||duba.com^$important 37 | ||jinshan3.cn^$important 38 | ||kpdf.cn^$important 39 | ||liebao.cn^$important 40 | ||ijinshan.com^$important 41 | ||pc120.com^$important 42 | ||jgpdf.cn^$important 43 | # 海南豹趣科技有限公司 44 | ||tipyuanqidesk.com^$important 45 | ||baoqu.fun^$important 46 | ||cheetahfun.com^$important 47 | ||cheetahfun.net^$important 48 | ||yuanqidesk.com^$important 49 | ||cheetahfun.cn^$important 50 | ||apiyuanqidesk.com^$important 51 | ||keniu.com^$important 52 | # 海南驰豹科技有限公司 53 | ||hnchibao.com^$important 54 | # 深圳图大师科技有限公司 55 | ||tuku10.com^$important 56 | # 珠海名亭科技有限公司 57 | ## 反病毒软件相关 58 | ||mingting.cn^$important -------------------------------------------------------------------------------- /Categories/Malware/general.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: General 4 | ! Update Time: 2023-02-25 21:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京奥格威网络科技有限公司 12 | officedownload.cn 13 | # 重庆重橙网络科技有限公司 14 | ## 垃圾Flash 15 | ||izhongcheng.cn^$important 16 | ||zhongcheng818.com^$important 17 | ||fftoutiao.com^$important 18 | ||ffzixun.com^$important 19 | ||ffcool.cn^$important 20 | ||ffzww.com^$important 21 | ||1234ff.com^$important 22 | ||ffnews.cn^$important 23 | ||flash.cn^$important 24 | # 上海重岂网络科技有限公司 25 | ## 重庆重橙网络科技有限公司关联 26 | ||xnwallpaper.com^$important 27 | ||flashoffice.cn^$important 28 | # 深圳市重诚知随科技有限公司 29 | ## 重庆重橙网络科技有限公司关联 30 | ||kfollow.com^$important 31 | ||flash16.com^$important 32 | # 苏州迅龙信息技术有限公司 33 | ||xunlong.tech^$important -------------------------------------------------------------------------------- /Categories/Malware/leopard_series.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: leopard Series 4 | ! Update Time: 2023-02-25 20:15:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京猎豹网络科技有限公司 12 | ||cmcmcdn.com^$important 13 | ||ileopard.com^$important 14 | ||baofoods.com^$important 15 | ||kshwtj.com^$important 16 | ||ksmobile.net^$important 17 | ||cmcmiot.com^$important 18 | ||3drating.com^$important 19 | ||dachufood.com^$important 20 | ||cheetahmobile.com^$important 21 | ||cmcm.com^$important 22 | ||cheetahgames.com^$important 23 | ||baochef.com^$important 24 | ||quandduo.com^$important 25 | ||baodachu.cn^$important 26 | ||ksmobile.com^$important 27 | # 海南猎豹网络科技有限公司 28 | ||cheetahmobile.cn^$important 29 | ||lbmobi.cn^$important 30 | # 北京安兔兔科技有限公司 31 | ||qudongtianshi.com^$important 32 | # 北京猎鹰安全科技有限公司 33 | ||timeon.com.cn^$important 34 | ||ejinshan.net^$important 35 | # 南京超吉科技有限公司 36 | ||1xkq.com^$important 37 | # 上海智向信息科技有限公司 38 | ||beacool.com^$important 39 | # 上海光爪网络科技有限公司 40 | ||lightpaw.cn^$important 41 | # 海南雍淼网络科技有限公司 42 | ||playslg.com^$important 43 | # 北京安趣科技股份有限公司 44 | ||anqu.com^$important 45 | ||anqu.cn^$important 46 | # 南京擎盾信息科技有限公司 47 | ||zhifa-ai.com^$important 48 | ||yu-qing.com^$important 49 | ||xiaofa-ai.cn^$important 50 | ||shilvlaw.cn^$important 51 | ||fasoso.cn^$important 52 | ||sense.law^$important 53 | ||ai-risk.cn^$important 54 | ||aegis-data.cn^$important 55 | ||fasoso.net^$important 56 | ||xiaofa.cc^$important 57 | ||seeklawyer.cn^$important 58 | ||aegis-info.com^$important 59 | ||xiaofa-app.cn^$important 60 | -------------------------------------------------------------------------------- /Categories/Malware/p2p.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Malware 3 | ! Title: P2P Downloader Related 4 | ! Update Time: 2023-02-25 19:35:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 黄旭峰 12 | ||pc6a.com^$important 13 | ||yangmao.info^$important 14 | # 朱晓君 15 | ||yxdown.cn^$important 16 | ||anxiu.com^$important 17 | # 广东风起科技有限公司 18 | ||fqydread.com^$important 19 | ||fqwzdown.com^$important 20 | ||gdfqrjxz.com^$important 21 | ||gdfqdown.com^$important 22 | ||ydfqload.com^$important 23 | ||fqydrjxiazai.com^$important 24 | ||fqwztf.com^$important 25 | ||ydfqdown.com^$important 26 | ||ydfqsoftdown.com^$important 27 | ||gdfqware.com^$important 28 | ||ydsoftdown.com^$important 29 | ||gdfqyun.com^$important 30 | ||ydxiazai.com^$important 31 | ||gdfqkj.com^$important 32 | # 合肥听风雨网络科技有限公司 33 | ||tfyxz.com^$important 34 | ||fengbf.cn^$important 35 | # 上海润吉网络科技有限公司 36 | ||duote.com^$important 37 | ||ie31.com^$important 38 | ||xp666.com^$important 39 | ||ghost64.com^$important 40 | ||7255.com^$important 41 | ||duote.com^$important 42 | ||9xinli.com^$important 43 | ||aiqianxq.com^$important 44 | ||ppt818.com^$important 45 | ||chw818.com^$important 46 | ||niantiantang.com^$important 47 | ||tiantianjiri.com^$important 48 | ||adgoo.cn^$important 49 | ||dh818.com^$important 50 | ||77yunshi.com^$important 51 | ||duote.com.cn^$important 52 | ||tiku818.com^$important 53 | ||qiaoqiaomuyu.com^$important 54 | # 宁波润吉网络科技有限公司 55 | ||tiantianjili.com^$important 56 | ||taibai001.com^$important 57 | ||runjiapp.com^$important 58 | ||77tianqi.com^$important 59 | ||duotebox.com^$important 60 | # 茉柏枘(上海)软件科技有限公司 61 | ||52pcfree.com^$important 62 | # 上海永楚网络科技有限公司 63 | /fengyun\w{0,6}\./$important 64 | /fysoft\d{0,2}\./$important 65 | ||quxiu55.com^$important 66 | ||zjzzmm.com^$important 67 | ||kaobeitu.com^$important 68 | # 上海剑姬网络科技有限公司 69 | /\d\d\dintn\./$important 70 | /pdf\d{2,3}/$important 71 | ||doumai.com^$important 72 | ||bscrt.com^$important 73 | ||uxiaobai.cn^$important 74 | ||cad111.com^$important 75 | ||tgjkbx.cn^$important 76 | ||doumaibiji.cn^$important 77 | ||bsrdt.com^$important 78 | ||jlbtcg.cn^$important 79 | ||cfcpe.com.cn^$important 80 | ||mathplus.com.cn^$important 81 | ||ppt118.com^$important 82 | ||fengyunzhice.cn^$important 83 | ||bsrbt.com^$important 84 | ||bskrt.com^$important 85 | ||weiyinwang.cn^$important 86 | ||feiyurili.com.cn^$important 87 | ||doumaibiji.com^$important 88 | # 上海茵寇网络科技有限公司 89 | ||yywzzh.com^$important 90 | ||in3721.cn^$important 91 | ||smwocr.com^$important 92 | ||caihongbox.cn^$important 93 | ||shyinkou.com^$important 94 | ||caihongoffice.cn^$important 95 | ||caihongoffice.com^$important 96 | # 成都奇鲁科技有限公司 97 | ||monidashi.com.cn^$important 98 | ||ludashi.cn^$important 99 | ||superlitetech.com^$important 100 | ||easyclean.fun^$important 101 | ||ludan.cn^$important 102 | ||dualspace.com^$important 103 | ||taojike.cn^$important 104 | ||dualspacetech.com^$important 105 | ||monidashi.cn^$important 106 | ||ludashi.com^$important 107 | # 上海黑桃互动网络科技股份有限公司 108 | /51(img\d{0,2})?\./ 109 | /((heitao)|(ht))\d{0,4}/ 110 | /ccsakura/ 111 | /datealive/ 112 | ||17sowan.com^$important 113 | ||17wwba.com^$important 114 | ||321uuu.com^$important 115 | ||321ux.com^$important 116 | ||361yx.cn^$important 117 | ||37xyxy.com^$important 118 | ||5151yx.com^$important 119 | ||51yoyoyo.com^$important 120 | ||51znb.com^$important 121 | ||5251game.com^$important 122 | ||5251yx.com^$important 123 | ||5399vr.com^$important 124 | ||61wanwan.com^$important 125 | ||99laiwan.com^$important 126 | ||catchner.com^$important 127 | ||entenforce.com^$important 128 | ||eva001.com^$important 129 | ||fallocate.com^$important 130 | ||ledctl.com^$important 131 | ||qq8.com.cn^$important 132 | ||qweol.com^$important 133 | ||rngtest.com^$important 134 | ||setfacl.com^$important 135 | ||sowan8.com^$important 136 | ||spadesdk.com^$important 137 | ||zneder.com^$important 138 | ||zuiwumo.com^$important 139 | # 上海幻界信息科技有限公司 140 | ## 上海黑桃互动网络科技股份有限公司关联 141 | ||51phanta.com^$important 142 | # 上海月球漫步游戏网络有限公司 143 | ## 上海黑桃互动网络科技股份有限公司关联 144 | ||yqmb001.com^$important 145 | ||jyqxz2015.com^$important 146 | # 上海研游网络科技有限公司 147 | ## 上海黑桃互动网络科技股份有限公司关联 148 | ||vspknet.com^$important 149 | # 上海银月网络科技有限公司 150 | ## 上海黑桃互动网络科技股份有限公司关联 151 | ||yymoon.com^$important 152 | ||vrcool88.com^$important 153 | ||vrcool100.com^$important 154 | # 上海迅鱼网络科技有限公司 155 | ## 上海黑桃互动网络科技股份有限公司关联 156 | ||speedyfish.cn^$important 157 | # 上海月螺信息技术有限公司 158 | ## 上海黑桃互动网络科技股份有限公司关联 159 | ||lunara.net^$important 160 | # 上海熊猫客网络科技有限公司 161 | ## 上海黑桃互动网络科技股份有限公司关联 162 | ||wuming.com^$important 163 | ||dabaitu.com^$important 164 | ||4dwan.com^$important 165 | ||179.com^$important 166 | # 深圳扑雷猫网络科技有限公司 167 | ## 上海黑桃互动网络科技股份有限公司关联 168 | ||phantagame.com^$important 169 | # 杭州/武汉诸相网络科技有限公司 170 | /xubei.*\.$/$important 171 | /stmaide\./$important 172 | ||hezuge.com^$important 173 | # 武汉游侠互娱科技有限公司 174 | ## 武汉诸相网络科技有限公司关联 175 | ||ffffgame.com^$important 176 | ||steamym.com^$important 177 | # 杭州竹柳科技有限公司 178 | ## 杭州诸相网络科技有限公司关联 179 | ||maigehao.com^$important 180 | ||douyinup.com^$important 181 | ||stmlist.com^$important 182 | # 杭州创哈网络科技有限公司 183 | ## 杭州诸相网络科技有限公司关联 184 | ||zuyige.com^$important 185 | ||ugjsq.com^$important 186 | ||gameuuuu.com^$important 187 | ||zugehao.com^$important 188 | ||baizuhao.com^$important 189 | # 上海莎纪网络科技有限公司 190 | ||ahhxwavi.cn^$important 191 | # 马鞍山微光网络科技有限公司 192 | ||7x7n.com^$important 193 | ||dataangel.cn^$important 194 | ||wuseng.net^$important 195 | ||nanweng.cn^$important 196 | ||fengax.cn^$important 197 | ||zhongguohao123.com^$important 198 | ||k70k.com^$important 199 | ||ibaizhu.cn^$important 200 | ||nstkz.com^$important 201 | ||08an.com^$important 202 | ||fengcv.cn^$important 203 | ||fengck.cn^$important 204 | ||fengdb.cn^$important 205 | ||mdown.net^$important 206 | ||shuancen.com^$important 207 | ||fengbp.cn^$important 208 | ||bingap.cn^$important 209 | ||choujue.net^$important 210 | ||tieguai.cn^$important 211 | ||ibaizhu.com^$important 212 | # 马鞍山圣秦网络科技有限公司 213 | ## 马鞍山微光网络科技有限公司关联 214 | ||fengak.cn^$important 215 | ||bzyinxiao3.com^$important 216 | ||fengbt.cn^$important 217 | ||bzyinxiao7.com^$important 218 | ||chuinou.com^$important 219 | ||sengzai.com^$important 220 | # 221 | 222 | 223 | 224 | -------------------------------------------------------------------------------- /Categories/Privacy/51la.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Privacy 3 | ! Title: 51la 4 | ! Update Time: 2023-02-25 19:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 广东万丈金数信息技术股份有限公司 12 | ||aicheren.com^$important 13 | ||infinitesend.com^$important 14 | ||e-dmp.com^$important 15 | ||vcrm.com.cn^$important 16 | ||cf.cn^$important 17 | ||kxz.com^$important 18 | ||cbclub.com.cn^$important 19 | ||3361.com^$important 20 | ||om.com.cn^$important 21 | ||pv.com.cn^$important 22 | ||zaobang.com^$important 23 | ||yolish.net^$important 24 | ||kxz.cn^$important 25 | ||infinite.net.cn^$important 26 | ||shijiala.com^$important 27 | ||vrm.cn^$important 28 | ||huikefu.com^$important 29 | ||yolitv.cn^$important 30 | ||yolish.cn^$important 31 | ||yo.com.cn^$important 32 | # 广州巍峨信息科技有限公司 33 | ||dutan.com^$important 34 | ||weirenfumu.com^$important 35 | ||weiekeji.com^$important 36 | ||yi114.com^$important 37 | ||quan.mx^$important 38 | ||dangfumu.com^$important 39 | ||ruiche.com^$important 40 | ||vrm2020.cn^$important 41 | # 广州有啦网络科技有限公司 42 | /51\w?\./$important 43 | /youla(cloud|yun|ai)/$important 44 | ||cfinfo.net^$important 45 | ||useredu.com^$important 46 | ||bxuser.net^$important 47 | ||ylyzn.cn^$important 48 | ||bankuser.net^$important 49 | ||sentcloud.net^$important 50 | ||gz51la.com^$important 51 | ||shsent.net^$important 52 | ||ulyzn.com^$important 53 | ||bankmsg.com^$important 54 | ||bxpost.net^$important 55 | ||cfuser.net^$important 56 | ||publishmail.net^$important 57 | ||ulyzn.cn^$important -------------------------------------------------------------------------------- /Categories/Privacy/getui.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Privacy 3 | ! Title: 个推(getui) 4 | ! Update Time: 2023-02-25 19:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 每日互动股份有限公司 12 | ||gepush.com^$important 13 | ||applk.cn^$important 14 | ||igehuo.com^$important 15 | ||gepush.com^$important 16 | ||igetui.com^$important 17 | ||acloud.com^$important 18 | ||pusure.com^$important 19 | ||lmmindex.com^$important 20 | ||cooltui.com^$important 21 | ||viyouhui.com^$important 22 | ||abeacon.com^$important 23 | ||getui.com^$important 24 | ||fangyi.cn^$important 25 | ||huadan.in^$important 26 | ||geatmap.com^$important 27 | ||geindex.com^$important 28 | ||abeacon.cn^$important 29 | ||getui.net^$important 30 | ||ge.cn^$important 31 | ||igexin.com^$important 32 | ||12322app.com^$important 33 | ||getui.cn^$important 34 | ||baywest.ac^$important 35 | # 上海蓝豹数据科技有限公司 36 | ||longbow.com^$important 37 | # 深圳市爱易讯数据有限公司 38 | ||ieasycon.com^$important 39 | ||ottindexs.com^$important 40 | ||ott-indexs.com^$important 41 | ||ottindex.com^$important 42 | ||ott-index.com^$important 43 | ||vinsondata.com^$important 44 | ## 浙江有数数字科技有限公司 45 | ||youshu.com.cn^$important 46 | ||hsjdata.com^$important 47 | ||youhaodata.com^$important 48 | ||guanmingpian.com^$important 49 | ## 浙江有数数智科技有限公司 50 | ||ccbydt.com^$important 51 | ||yscredit.com^$important -------------------------------------------------------------------------------- /Categories/Privacy/umeng.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Privacy 3 | ! Title: 友盟(umeng) 4 | ! Update Time: 2023-02-25 19:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 北京锐讯灵通科技有限公司 12 | ||wrating.com^ 13 | ||puata.info^ 14 | ||dratio.com^ 15 | ||uyunad.com^ 16 | ||eshiqi.com^ 17 | ||mobmore.com^ 18 | /^.*umeng.*$/ 19 | /^.*\.?umv?(\d){0,}\..*$/$important 20 | /^.*\.?umtrack(\d){0,}\..*$/$important 21 | # 杭州好风科技有限公司 22 | ||d.design 23 | ||u.design 24 | ||duidui.design -------------------------------------------------------------------------------- /Categories/Privacy/uni_ad.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Privacy 3 | ! Title: uni-AD 4 | ! Update Time: 2023-02-25 19:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | 11 | # 数字天堂(北京)网络技术有限公司 12 | /dcad\d\d/ 13 | ||dcloud.net.cn^$important 14 | ||mhtml5.org^$important 15 | ||mobile3w.org^$important 16 | ||m3w.cn^$important 17 | ||liuyingyong.cn^$important -------------------------------------------------------------------------------- /Categories/Spam/general.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Category: Spam 3 | ! Title: General 4 | ! Update Time: 2023-02-25 19:30:00 5 | ! Ver.: 1.0 6 | ! Update Details 7 | !! -------------------- 8 | !! Init 9 | !! -------------------- 10 | ### REGEX: (^(\w{0,}\.?){0,6}\w) -> ||$1^$important 11 | 12 | # 北京深演智能科技股份有限公司 13 | ||ideepzero.com^$important 14 | ||rtbinchina.com^$important 15 | ||dspinchina.com^$important 16 | ||deepzero.com^$important 17 | ||openap.cn^$important 18 | ||audiencechina.com^$important 19 | ||fangkezhaohui.com^$important 20 | ||programmaticbuy.cn^$important 21 | ||userback.cn^$important 22 | ||audiencetargeting.cn^$important 23 | ||folo8.com^$important 24 | ||pinyouad.com^$important 25 | ||ipinyou.com^$important 26 | ||shishijingjia.com^$important 27 | ||programmaticbuy.com^$important 28 | ||folo8.cn^$important 29 | ||audiencetargeting.com.cn^$important 30 | ||userback.com.cn^$important 31 | ||jiceyun.com^$important 32 | ||deepzero.com.cn^$important 33 | ||chinadsp.com.cn^$important 34 | ||chinartb.cn^$important 35 | ||userprofile.cn^$important 36 | ||folo8.com.cn^$important 37 | ||p0y.cn^$important 38 | ||ipinyou.com.cn^$important 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AdGuard-Rules 2 | 3 | AdGuard适用规则(自用补充收集) 4 | 5 | ## 食用方法 6 | 7 | AdGuardHome那个是给AdGuardHome用的。AdGuard那个是AdGuard客户端补充用的,使用客户端的两个都得订阅,效果最佳。 8 | 9 | 欢迎大家提issue/PR。一定要注明发现广告域名的方法,如查看AdGuardHome日志等。不确定也可以提issue。有误拦截的欢迎提issue,pr。 10 | 11 | 破坏性更新完毕. 这份规则主要是对现有规则的补充, 所以只会在发现漏杀的时候更新 12 | 13 | [推荐配合使用的拦截库](https://github.com/cxw620/AdGuard-Rules/issues/9#issuecomment-1050508451) 14 | 15 | 渴求任何恶意网址/广告网址的投稿! 16 | 17 | 推荐设置拦截返回地址`23.91.98.132` 18 | 19 | ## 更新日志 20 | 21 | **2023/02/26** 通过企查查和ICP备案更新大批域名. 仍在处理. 详情查看 `Categories` 文件夹 22 | 23 | ## TODO 24 | 25 | - [ ] 分析米盟广告域名 26 | - [ ] 完善分类 27 | 28 | ## 致谢 29 | 30 | - [wongzeon/ICP-Checker](https://github.com/wongzeon/ICP-Checker) 31 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | # 原始域名信息收集/RAW DATA 2 | 3 | ## 采集方案/My Solutions on collecting AD domains 4 | 5 | + ICP备案批量查询 + 天眼查确定公司关联 + 人工核实 6 | + 热门APP抓包 7 | 8 | ## 类别/Types 9 | 10 | + P2P下崽器家族(P2P Downloader Related) 11 | + 数据收集家族(Sensitive or Privacy Data collection Related) 12 | -------------------------------------------------------------------------------- /src/advertisement/general.md: -------------------------------------------------------------------------------- 1 | # 小公司 2 | 3 | ## 广东欢太科技有限公司 4 | 5 | ```txt 6 | # 广东欢太科技有限公司 7 | heytapimage.com 8 | andes.tech 9 | keke.cn 10 | heytapcloud.com 11 | oppomobile.com 12 | ibreeno.com 13 | heytap.cn 14 | oppopay.com 15 | wanyol.com 16 | heytapmobi.com 17 | oplustrust.com 18 | vayol.com 19 | heytap.com 20 | familyincloud.com 21 | breenomeet.cc 22 | heytapugc.com 23 | ortc.cc 24 | omeet.cc 25 | oppoer.me 26 | oppo.mobi 27 | aibreeno.com 28 | xiaobool.com 29 | nearme.com.cn 30 | heytapdownload.com 31 | heytapcs.com 32 | heytapcloud.cn 33 | # 深圳市白鹰网络科技有限公司 34 | hey-game.com 35 | hey-games.com 36 | ``` 37 | 38 | ## 北京小香食品科技股份有限公司 39 | 40 | ```txt 41 | # 北京小香食品科技股份有限公司 42 | limei.com 43 | xiaoxiangmei.com 44 | # 上海力竞广告有限公司 45 | ljrtb.cn 46 | # 北京丹枫科技有限公司 47 | adxing.com 48 | ``` -------------------------------------------------------------------------------- /src/advertisement/kugao.md: -------------------------------------------------------------------------------- 1 | # 酷告 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京快友世纪科技股份有限公司 8 | ![ICP](https://img.shields.io/badge/ICP-粤ICP备11022409号-green) 9 | + 有米有量(广州)科技有限公司 10 | + 广州米慧信息科技有限公司 11 | + 有米有数(广州)网络科技有限公司 12 | + 广州光年新媒体投资合伙企业(有限合伙) 13 | + 上海直觉信息技术有限公司 14 | + 深圳市人马互动科技有限公司 15 | + 知易时光(北京)科技有限公司 16 | + 广州米双创信息科技有限公司 17 | + 江苏米游信息科技有限公司 18 | + 淮安有米信息科技有限公司 19 | + 海南米丸互动信息科技有限公司 20 | + 广州心乐互动信息科技有限公司 21 | 22 | ## 域名收集 23 | 24 | ```txt 25 | # 北京快友世纪科技股份有限公司 26 | lnkmi.cn 27 | shenwawa.com 28 | lnkof.cn 29 | kuaiyou.com 30 | lnkmi.com 31 | lnkof.com 32 | # 天津快友世纪科技有限公司 33 | advgbid.com 34 | adview.cn 35 | adview.com 36 | advtj.cn 37 | # 北京木舟科技有限公司 38 | 52muzhou.com 39 | # 北京乐聚互娱科技有限公司 40 | lejuhuyu.com 41 | lejuhuyu.cn 42 | # 广州奇顽科技有限公司 43 | qiwanyx.com 44 | # 天津奇顽科技有限公司 45 | game174.com 46 | # 武汉易游无限科技有限公司 47 | yywxgames.com 48 | # 北京奇顽科技有限公司 49 | 521qw.com 50 | # 天津奇顽科技有限公司 51 | game174.com 52 | ``` 53 | 54 | ## 规则 55 | 56 | ### Adblock-style syntax 57 | 58 | ```txt 59 | # 北京快友世纪科技股份有限公司 60 | /lnk(mi|of)\./$important 61 | ||shenwawa.com^$important 62 | ||kuaiyou.com^$important 63 | # 天津快友世纪科技有限公司 64 | /adv(gbid|iew|tj)/$important 65 | # 北京木舟科技有限公司 66 | ||52muzhou.com^$important 67 | # 北京乐聚互娱科技有限公司 68 | /lejuhuyu/ 69 | # 广州奇顽科技有限公司 70 | ||qiwanyx.com^$important 71 | # 天津奇顽科技有限公司 72 | ||game174.com^$important 73 | # 武汉易游无限科技有限公司 74 | ||yywxgames.com^$important 75 | # 北京奇顽科技有限公司 76 | ||521qw.com^$important 77 | # 天津奇顽科技有限公司 78 | ||game174.com^$important 79 | ``` 80 | -------------------------------------------------------------------------------- /src/advertisement/talkingdata.md: -------------------------------------------------------------------------------- 1 | # TalkingData 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京腾云天下科技有限公司 8 | ![ICP](https://img.shields.io/badge/ICP-京ICP备12005794号-green) 9 | + 杭州决对信息科技有限公司 10 | + 北京无限向溯科技有限公司 11 | 12 | ## 域名收集 13 | 14 | ```txt 15 | # 北京腾云天下科技有限公司 16 | tendcloud.com 17 | talkingnews.net 18 | udrig.com 19 | cpatrk.net 20 | tenddata.cn 21 | talkingdata.com.cn 22 | sportxuan.com 23 | brg0.com 24 | lnk8.cn 25 | xdrig.com 26 | tddmp.com 27 | talkingdata.com 28 | tendcloud.cn 29 | tenddata.com.cn 30 | talkingdata.cn 31 | edutalkingdata.com 32 | appcpa.net 33 | brg0.cn 34 | lnk0.com 35 | myzhongguojie.cn 36 | 3edc.cn 37 | talkinggame.com 38 | tenddata.com 39 | tenddata.net 40 | talkingdata.net 41 | # 杭州决对信息科技有限公司 42 | abssqr.com 43 | abssqr.cn 44 | # 北京无限向溯科技有限公司 45 | wifipix.com 46 | wifipix.cn 47 | ``` 48 | 49 | ## 规则 50 | 51 | ### Adblock-style syntax 52 | 53 | ```txt 54 | # 北京腾云天下科技有限公司 55 | /talking(data|game)/$important 56 | /tend(data|cloud)/$important 57 | /lnk\d\./$important 58 | /brg0\./$important 59 | ||udrig.com^$important 60 | ||cpatrk.net^$important 61 | ||sportxuan.com^$important 62 | ||xdrig.com^$important 63 | ||tddmp.com^$important 64 | ||talkingdata.cn^$important 65 | ||appcpa.net^$important 66 | ||myzhongguojie.cn^$important 67 | ||3edc.cn^$important 68 | # 杭州决对信息科技有限公司 69 | /abssqr\./$important 70 | # 北京无限向溯科技有限公司 71 | /wifipix\./$important 72 | ``` 73 | -------------------------------------------------------------------------------- /src/advertisement/youmi.md: -------------------------------------------------------------------------------- 1 | # 有米科技 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 有米科技股份有限公司 8 | ![ICP](https://img.shields.io/badge/ICP-粤ICP备11022409号-green) 9 | + 有米有量(广州)科技有限公司 10 | + 广州米慧信息科技有限公司 11 | + 有米有数(广州)网络科技有限公司 12 | + 广州光年新媒体投资合伙企业(有限合伙) 13 | + 上海直觉信息技术有限公司 14 | + 深圳市人马互动科技有限公司 15 | + 知易时光(北京)科技有限公司 16 | + 广州米双创信息科技有限公司 17 | + 江苏米游信息科技有限公司 18 | + 淮安有米信息科技有限公司 19 | + 海南米丸互动信息科技有限公司 20 | + 广州心乐互动信息科技有限公司 21 | 22 | ## 域名收集 23 | 24 | ```txt 25 | # 有米科技股份有限公司 26 | umapi.com.cn 27 | umiplus.net 28 | youmikeji.cn 29 | umlife.com 30 | umiplus.com 31 | umapi.cn 32 | ymcdn.cn 33 | alertover.com 34 | asogrow.net 35 | youmi.net 36 | youmiad.com 37 | youfo.cn 38 | umiplus.cn 39 | 91doujin.com 40 | umiplus.org 41 | umiplus.com.cn 42 | adxmi.com 43 | umplus.cn 44 | ymcdn.net 45 | 91guanggao.com 46 | umlife.net 47 | ummob.com 48 | ymapp.com 49 | # 有米有量(广州)科技有限公司 50 | abteb.top 51 | ataraxiaday.xyz 52 | windfallhome.top 53 | petrichorlife.xyz 54 | drizzle.site 55 | lingqianshiwan.com 56 | sz365.cn 57 | mamihlapiatapai.xyz 58 | eudemoniaday.top 59 | eudemonia.xyz 60 | petrichor.online 61 | ataraxia.fun 62 | zhuliya365.com 63 | # 广州米慧信息科技有限公司 64 | kuaixp.net 65 | xiaohongdata.cn 66 | appgrowing.cn 67 | youcloudcdn.com 68 | youcloud.com 69 | goodspy.com 70 | umcdn.cn 71 | appgrowing-global.com 72 | kuaixuanpin.com 73 | kuaixp.cn 74 | appltv.cn 75 | mihuiad.com 76 | adguanjia.cn 77 | appgrow.cn 78 | kuaixp.com 79 | marketbi.cn 80 | appsensor.com 81 | aadata.cn 82 | xiaohongdata.com 83 | ccsight.cn 84 | appgrowing.net 85 | # 有米有数(广州)网络科技有限公司 86 | maimaiya.cn 87 | # 上海直觉信息技术有限公司 88 | xyici.com 89 | izhijue.com 90 | # 深圳市人马互动科技有限公司 91 | centaurstech.com 92 | qiwu.ai 93 | chewrobot.com 94 | # 广州米双创信息科技有限公司 95 | youmisc.cn 96 | # 江苏米游信息科技有限公司 97 | sparkerarea.com 98 | game12580.com 99 | ufishbox.com 100 | # 淮安有米信息科技有限公司 101 | ouwan.cn 102 | owyxcdn.cn 103 | ouwan.com 104 | owan.mobi 105 | owyxcdn.com 106 | umipay.com 107 | # 海南米丸互动信息科技有限公司 108 | vipyoumi.com 109 | # 广州心乐互动信息科技有限公司 110 | xinleie.com 111 | ``` 112 | 113 | ## 规则 114 | 115 | ### Adblock-style syntax 116 | 117 | ```txt 118 | /umi?(api|mob|cdn|pay|plus|keji|life)/$important 119 | /y(ou)?((mi?)|(fo))(cdn|app)?/$important 120 | # 有米科技股份有限公司 121 | ||alertover.com^$important 122 | ||asogrow.net^$important 123 | ||91doujin.com^$important 124 | ||adxmi.com^$important 125 | ||91guanggao.com^$important 126 | # 有米有量(广州)科技有限公司 127 | ||abteb.top^$important 128 | ||ataraxiaday.xyz^$important 129 | ||windfallhome.top^$important 130 | ||petrichorlife.xyz^$important 131 | ||drizzle.site^$important 132 | ||lingqianshiwan.com^$important 133 | ||sz365.cn^$important 134 | ||mamihlapiatapai.xyz^$important 135 | ||eudemoniaday.top^$important 136 | ||eudemonia.xyz^$important 137 | ||petrichor.online^$important 138 | ||ataraxia.fun^$important 139 | ||zhuliya365.com^$important 140 | # 广州米慧信息科技有限公司 141 | /appsensor/$important 142 | /appgrow/$important 143 | /youcloud/$important 144 | /xiaohongdata/$important 145 | /kuaixp/$important 146 | ||goodspy.com^$important 147 | ||kuaixuanpin.com^$important 148 | ||appltv.cn^$important 149 | ||mihuiad.com^$important 150 | ||adguanjia.cn^$important 151 | ||marketbi.cn^$important 152 | ||aadata.cn^$important 153 | ||ccsight.cn^$important 154 | # 有米有数(广州)网络科技有限公司 155 | ||maimaiya.cn^$important 156 | # 上海直觉信息技术有限公司 157 | ||xyici.com^$important 158 | ||izhijue.com^$important 159 | # 深圳市人马互动科技有限公司 160 | ||centaurstech.com^$important 161 | ||qiwu.ai^$important 162 | ||chewrobot.com^$important 163 | # 广州米双创信息科技有限公司 164 | ||youmisc.cn^$important 165 | # 江苏米游信息科技有限公司 166 | ||sparkerarea.com^$important 167 | ||game12580.com^$important 168 | ||ufishbox.com^$important 169 | # 淮安有米信息科技有限公司 170 | /owyxcdn\./$important 171 | /ou?wan\./$important 172 | # 海南米丸互动信息科技有限公司 173 | ||vipyoumi.com^$important 174 | # 广州心乐互动信息科技有限公司 175 | ||xinleie.com^$important 176 | ``` 177 | -------------------------------------------------------------------------------- /src/app_related/jd.md: -------------------------------------------------------------------------------- 1 | # JD系 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | -------------------------------------------------------------------------------- /src/app_related/kuaishou.md: -------------------------------------------------------------------------------- 1 | # 快手系 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 域名收集 6 | 7 | ```txt 8 | kwai.xyz 9 | yuncheapp.cn 10 | woaiyt.com 11 | kwailala.com 12 | kwailala.cn 13 | rawpic.cn 14 | kwaiying.com 15 | kuai-ying.cn 16 | kuaishougroup.com 17 | kuaishou.cn 18 | kuaishou.com 19 | kwai.com 20 | 506u5nf5j5.com 21 | dianmiao.cn 22 | 52yitian.com 23 | kuai666bjs3gsymi6v4h5pz.com 24 | 4000066666.com 25 | diyiyt.com 26 | kwaiying.cn 27 | ikuaiying.cn 28 | kwai-group.com 29 | mvmaster.com 30 | originpic.com 31 | kwai.net 32 | kstv.com 33 | kwaigroup.com 34 | wodeyt.com 35 | kuaizhaogong.com 36 | kuai666bjeve6ks43qyw4vc8.com 37 | kuai666bj7tu65rkdz82.com 38 | kuai-ying.com 39 | kuaizhaogong.cn 40 | qicwzrxey.com 41 | upsivwxgg.com 42 | eaugwamxp.com 43 | eaayqghic.com 44 | emicmshck.com 45 | gwmvxbti.com 46 | wqrpksbts.com 47 | qpiwvtrw.com 48 | ckgqztdka.com 49 | rwoycsazr.com 50 | tyrpiagtu.com 51 | mavpqyzaw.com 52 | gauqivzvg.com 53 | rgwekoehg.com 54 | yoximkzet.com 55 | oootqagim.com 56 | isspqvzag.com 57 | ysvgopeto.com 58 | vuagtmkpo.com 59 | xuqcvmta.com 60 | yqcmpcgx.com 61 | mayckcgg.com 62 | ouecumhvk.com 63 | wzmwvzpax.com 64 | zrezrwgax.com 65 | vquzswmtp.com 66 | qapvcmrzx.com 67 | zycgryrme.com 68 | oiemqtziq.com 69 | avraswftv.com 70 | itascivp.com 71 | ayeovwgem.com 72 | wizrixatx.com 73 | awvxmeam.com 74 | orimwbze.com 75 | ezxcwava.com 76 | agmkrsdra.com 77 | eckzctabw.com 78 | wtwguabhx.com 79 | wqqcoukdr.com 80 | txricstev.com 81 | ickgqudvt.com 82 | usvozqvpc.com 83 | uaymtkxbo.com 84 | gsisyrebg.com 85 | wvopzbhs.com 86 | aorqaekr.com 87 | aymwkpzm.com 88 | kavukgmi.com 89 | qximpzco.com 90 | vcwygfrp.com 91 | keramvmtk.com 92 | iatpqgkzc.com 93 | crxzpiepq.com 94 | vkaizqixi.com 95 | yciasucrr.com 96 | itkmetzpu.com 97 | vayzvmxho.com 98 | omocyapcm.com 99 | zruwxiivz.com 100 | cugeqceo.com 101 | wxoviepr.com 102 | yvkpxpkk.com 103 | swqkxytri.com 104 | myeysvhtu.com 105 | zuzocxebx.com 106 | kuuikztis.com 107 | azkwggxq.com 108 | xmqmyetdk.com 109 | uweiqofdp.com 110 | soopwszva.com 111 | rscoghkw.com 112 | cqqamgipt.com 113 | xumpvwxbm.com 114 | vzoxgtdfv.com 115 | vmoatppfu.com 116 | eztxyaeft.com 117 | rretpocrq.com 118 | stixuzxw.com 119 | kygcavka.com 120 | viomrbtz.com 121 | revmixpc.com 122 | tkqsaizgu.com 123 | auaxqoxfu.com 124 | tygotabeo.com 125 | aqarmtpig.com 126 | vcuswehvz.com 127 | emxgtefzk.com 128 | uqmwrpphq.com 129 | qpmcwoefo.com 130 | pgimutrkr.com 131 | wzepwstic.com 132 | ytcyomvtk.com 133 | evgomkvz.com 134 | yiqgxivce.com 135 | rcymeaifo.com 136 | gazcxtveq.com 137 | vticvedct.com 138 | wuopwcapc.com 139 | ayemyrzkg.com 140 | yzorugzva.com 141 | skvsaoxpz.com 142 | qzpgwgmv.com 143 | wvyerait.com 144 | ktavukfra.com 145 | yarkcuzft.com 146 | swmquamq.com 147 | cszysortg.com 148 | cycyipimt.com 149 | sksymmiy.com 150 | aizwxsdbg.com 151 | zisgxuvas.com 152 | iexmwxci.com 153 | pqgresrbi.com 154 | swtsyzxcs.com 155 | uxirvyfip.com 156 | zmzapcteu.com 157 | aqzxosafz.com 158 | viptzicee.com 159 | ovctwohti.com 160 | criumicr.com 161 | imerkdhw.com 162 | vryevofxg.com 163 | qrmgrwfku.com 164 | yvxvyezdo.com 165 | izpmkriv.com 166 | qckpswhkt.com 167 | eukpyvzfw.com 168 | mriopmabg.com 169 | gwogycka.com 170 | gsiacszxg.com 171 | egxuoqpkm.com 172 | govmqwdhg.com 173 | tiuwsozio.com 174 | xstywegfv.com 175 | iprvcspmc.com 176 | mqvcpfmy.com 177 | acatepra.com 178 | ramesrges.com 179 | mkwaptxpr.com 180 | wzpeixzex.com 181 | axucxrxeu.com 182 | zitqxsfbp.com 183 | ugzoercdz.com 184 | xspiqvgbm.com 185 | popwseraq.com 186 | pszwizcs.com 187 | gcuyrvzm.com 188 | xqxmormw.com 189 | pqiwxzmp.com 190 | tarmwikgw.com 191 | pisutozmz.com 192 | kvcosempx.com 193 | gyxepabev.com 194 | tgzmvmxx.com 195 | kviruypec.com 196 | utsteihtt.com 197 | qesvqyfmv.com 198 | yzxvcepkw.com 199 | ikpuiocvc.com 200 | krrvgizbr.com 201 | itgeumkaw.com 202 | icparcxha.com 203 | vatixadpk.com 204 | qymepzevx.com 205 | iugivabxc.com 206 | xrastytfz.com 207 | egqozgbq.com 208 | kxpuedke.com 209 | oacywacs.com 210 | amuisfxx.com 211 | mwpxquvzs.com 212 | gwcarvfke.com 213 | vpckyacvw.com 214 | qgruczfze.com 215 | uzctgxhip.com 216 | uxctumgt.com 217 | etgvqurms.com 218 | iscqworpy.com 219 | gaqmirkaw.com 220 | eyokqgtez.com 221 | oeokrxemg.com 222 | qscvyodew.com 223 | woasgixdy.com 224 | szugogrp.com 225 | oirzqvre.com 226 | tutakfhe.com 227 | xvcuxgee.com 228 | isspeigta.com 229 | gyxkcifbp.com 230 | exokxyrxu.com 231 | xeagcqtkk.com 232 | ymiskgfo.com 233 | qokrxqitv.com 234 | scuypizq.com 235 | ryaoixrs.com 236 | vaxgtcifk.com 237 | ciakomvxm.com 238 | rxmagtpxw.com 239 | ekwrpxfvz.com 240 | ppxvogpdt.com 241 | uvparmhee.com 242 | cupqoadhc.com 243 | qsgqzvirs.com 244 | gaxrwpdvk.com 245 | rrkwctpq.com 246 | vgtiekcw.com 247 | oezmwtpy.com 248 | pgywpufis.com 249 | routietkm.com 250 | rvacvzhru.com 251 | zuovzgagr.com 252 | qppioqitv.com 253 | opayeqazx.com 254 | weqatghrw.com 255 | rqkmuidxg.com 256 | vezsvpdre.com 257 | xaqgpckxt.com 258 | siqzavaxw.com 259 | cietzgzq.com 260 | ctiwvzvy.com 261 | atuwmstdm.com 262 | mkcstzmv.com 263 | ckowsgdxw.com 264 | cxcuxwvhe.com 265 | vqvseyhxg.com 266 | srqayzgmr.com 267 | uiragpzax.com 268 | ovgqtyehr.com 269 | ymkyuerit.com 270 | xxitzykap.com 271 | wxswabze.com 272 | sqarcxeq.com 273 | crvxsptau.com 274 | qmxrawevi.com 275 | tzaytiko.com 276 | erkmxqfrm.com 277 | ygqwxrac.com 278 | kupxaqmee.com 279 | wzsgrergm.com 280 | qmaxvshfp.com 281 | wayreohck.com 282 | mmgywzzxt.com 283 | azvsyombr.com 284 | yawkstaxm.com 285 | zyiktugcp.com 286 | vswtrahfq.com 287 | kzpmyzitx.com 288 | isuegtdk.com 289 | qisemhgx.com 290 | okwatxvc.com 291 | zkrmczecw.com 292 | reayoxzpk.com 293 | yuqkvuzmi.com 294 | rcqvuktdm.com 295 | vkwvxepu.com 296 | smkrzqvis.com 297 | qkziyuzcm.com 298 | tuzrkskrv.com 299 | gacwkozae.com 300 | trvapiizg.com 301 | ekiuregmq.com 302 | vmswigerw.com 303 | usvamxgas.com 304 | petuvyxdr.com 305 | uawxvofmr.com 306 | sgzqtuatu.com 307 | ivoquszem.com 308 | upsaxgia.com 309 | wkpezbxg.com 310 | wwawrigkw.com 311 | eircxidzm.com 312 | uuqgpahcu.com 313 | scaksoivo.com 314 | sayvqhmv.com 315 | kzreuxmhz.com 316 | pvvoeaibi.com 317 | ovtmrgavw.com 318 | ruuowtizt.com 319 | yteczsdcv.com 320 | mawxsykvx.com 321 | zaiagvkza.com 322 | uxcwxtxgt.com 323 | siortxdce.com 324 | vaakstzdy.com 325 | tveqygzxv.com 326 | zatrsxxry.com 327 | qggqukazu.com 328 | ysgztrhp.com 329 | pwtrusmkw.com 330 | pvepvgcxx.com 331 | qtgucacr.com 332 | vtiwagxs.com 333 | zzsktgfz.com 334 | ayegqzas.com 335 | tuusgaafw.com 336 | vkmkxaabo.com 337 | xwogvrizs.com 338 | yikmrccre.com 339 | xvtcryzxe.com 340 | wgpiskrz.com 341 | rwpvuitcg.com 342 | qcxzapbas.com 343 | iisoaqkmp.com 344 | giauqkxcw.com 345 | sqkegrixi.com 346 | amsxrirgr.com 347 | wzecowhae.com 348 | ikizwtktc.com 349 | mtgiqpvpe.com 350 | mkarqxtr.com 351 | imgsktzs.com 352 | sptegevo.com 353 | vupkiumco.com 354 | iayvawrhi.com 355 | mykcyedzp.com 356 | rqvsqerig.com 357 | qrioescby.com 358 | mviweovzz.com 359 | mgtrmrzi.com 360 | caziqpby.com 361 | tcoxixzo.com 362 | ruasitmk.com 363 | veoruhtm.com 364 | gzcuqeerg.com 365 | umkyczers.com 366 | kciezqchy.com 367 | iiuvpcvza.com 368 | yupcswktm.com 369 | ptmcuafex.com 370 | kmmiscico.com 371 | qopovapcc.com 372 | qqxezmvq.com 373 | spgmahdi.com 374 | taazmgvgk.com 375 | yaqgpckfk.com 376 | yqpczyxrr.com 377 | rtcpghrz.com 378 | zkokpsdip.com 379 | ctmeuaafp.com 380 | ekaizmakq.com 381 | esprvtcga.com 382 | amoxizbai.com 383 | uxiyezzkq.com 384 | meaepcvmm.com 385 | owvorqxrw.com 386 | miipvkrax.com 387 | etpuxckt.com 388 | wtyzcfbg.com 389 | wiwgmicw.com 390 | aztayizv.com 391 | kmweyabx.com 392 | aktrcdgz.com 393 | sztykxkzu.com 394 | pugutotcp.com 395 | upzywtami.com 396 | smeigzgg.com 397 | myzkegcq.com 398 | ugpactthm.com 399 | etyksubmg.com 400 | rksxazmgy.com 401 | qzaiokigw.com 402 | wzkoseae.com 403 | rtexvdzq.com 404 | cyakrxii.com 405 | txxwsqkpo.com 406 | eyarxzpz.com 407 | zvwgecmps.com 408 | kszwvqzdt.com 409 | iooykqhxw.com 410 | totmecegv.com 411 | uisazqbpv.com 412 | kogpautve.com 413 | zmasywchg.com 414 | rwcetkxc.com 415 | tqwvpmtkk.com 416 | vuekqeiu.com 417 | mroegwtfp.com 418 | tgqrizzdv.com 419 | gxxktgzkm.com 420 | spxszemat.com 421 | pkrxeidhx.com 422 | icvgortxy.com 423 | xztoxqaet.com 424 | sqkiaekgx.com 425 | wgezptpzo.com 426 | vwcsmktdx.com 427 | czqoiyafu.com 428 | kuyxsvfv.com 429 | txizqmpu.com 430 | irriytmac.com 431 | esvuprfri.com 432 | ywseikhpk.com 433 | yvsmiemas.com 434 | qxerkukcy.com 435 | eaxuktiva.com 436 | koirzyitx.com 437 | uyovszgbi.com 438 | tcoswudxp.com 439 | yporqvzdi.com 440 | uprgxprmk.com 441 | mcmvrigru.com 442 | pkiacsxiu.com 443 | erzrkpzci.com 444 | ayqeaizrr.com 445 | emwyomir.com 446 | wsmrxgbaa.com 447 | oorptvztt.com 448 | qsmreytpe.com 449 | aukacqkzr.com 450 | qccaiwiaa.com 451 | ttrmiykhc.com 452 | vsxqwtei.com 453 | cqrmwhpa.com 454 | takptdhc.com 455 | zwukrzaeo.com 456 | xqszcqbru.com 457 | ugturchzz.com 458 | mxqvmymdg.com 459 | ioeawimzr.com 460 | xwsmxoxkw.com 461 | tysxkybpk.com 462 | kryazexiu.com 463 | ksxopbmc.com 464 | pmzmpiafq.com 465 | yotscrzbs.com 466 | rpukyicdc.com 467 | aazxirpfc.com 468 | gcoqmveiv.com 469 | owtmpcazy.com 470 | aauwtsbhu.com 471 | qpoamicbe.com 472 | vsokvgvhp.com 473 | mqtweavbe.com 474 | ivtpvmpka.com 475 | usxzemrzx.com 476 | ooemcwcaw.com 477 | sgtzksdpa.com 478 | tvqykzieu.com 479 | trskzabto.com 480 | uqcopmgi.com 481 | sqeckemg.com 482 | optxqiec.com 483 | vwzrwxmky.com 484 | iceaukgfe.com 485 | uuswirmam.com 486 | xwopryefq.com 487 | yzzpewfkq.com 488 | emqsgdpp.com 489 | wqupkpew.com 490 | ougzmepo.com 491 | zgeaoykiq.com 492 | zptsuyfzk.com 493 | aegmsqmim.com 494 | xgtvzehtu.com 495 | qtxrekzcc.com 496 | rziwgahie.com 497 | zckstbhs.com 498 | xvagkxgw.com 499 | mmeqrceca.com 500 | wkyemzpex.com 501 | irpkarkep.com 502 | uarupiaxw.com 503 | eaqrivprr.com 504 | wapumcvpz.com 505 | yuctywefm.com 506 | gtegaivtc.com 507 | yoiwpatgk.com 508 | ixsyvwfcz.com 509 | ozvowtfms.com 510 | wqeuomvie.com 511 | iyaigozfy.com 512 | ewcsrfzu.com 513 | kumawzczx.com 514 | tivtyzip.com 515 | ewpackegr.com 516 | tgtmprp.com 517 | agtrpvk.com 518 | xkwai.cn 519 | viuasta.com 520 | xkwai.com 521 | aauwovgx.com 522 | qpxakiec.com 523 | zciprmdm.com 524 | vueyahit.com 525 | vctyefmu.com 526 | gozqxcdg.com 527 | a2980mp2v6.com 528 | tpvaoxzg.com 529 | yureivbw.com 530 | oqtupizs.com 531 | mqgvogrs.com 532 | pwmavthi.com 533 | apwkefer.com 534 | ugrkwrau.com 535 | kgpkqgrm.com 536 | qutgrfg.com 537 | zvqtmkve.com 538 | pmigqpdp.com 539 | toavtkim.com 540 | qivocghc.com 541 | uxgquvirp.com 542 | sztwcptao.com 543 | xvigsxicw.com 544 | okcqixkvc.com 545 | kkxwrogds.com 546 | zwyqmtcdo.com 547 | kwkauipfp.com 548 | 7f8olpdu92.com 549 | xw2132r35w.com 550 | 8oxye9xqef.com 551 | giqgmgem.com 552 | ivqwxhri.com 553 | gtyizxtc.com 554 | tcvegfpo.com 555 | wzewkaew.com 556 | ciqzcrea.com 557 | vmczefxs.com 558 | aziqufmy.com 559 | rsimuvrs.com 560 | oraushfm.com 561 | h5502i3z57.com 562 | ja60zxsi62.com 563 | ercsoavm.com 564 | gpmrgmhu.com 565 | xzkitzkw.com 566 | wrcmathq.com 567 | ytpqoeim.com 568 | uzxrumag.com 569 | uoywidka.com 570 | icmsqrkx.com 571 | crqmyrag.com 572 | aoeiawkpt.com 573 | tgosrxcap.com 574 | kpiskeavt.com 575 | 09n8rg87hx.com 576 | jwiludyga5.com 577 | 922yvz2j06.com 578 | u4o4uw4pd2.com 579 | 48q7at6241.com 580 | tsagieta.com 581 | qczswmru.com 582 | koxmtaru.com 583 | 73vpc44cp0.com 584 | pwakgdgr.com 585 | oprizxmo.com 586 | mpcmupptw.com 587 | xvesapedk.com 588 | pcptmceat.com 589 | zzuzrcdrs.com 590 | qrgwxegxs.com 591 | pmrmcuzxg.com 592 | ptrgwyvkc.com 593 | rgzctmbkq.com 594 | wbsh05zm9q.com 595 | 9h0dzp1i8e.com 596 | o5474l92ld.com 597 | trpkmdem.com 598 | qsuaehcv.com 599 | qtscifbz.com 600 | aaxcgfzc.com 601 | muityrvxs.com 602 | escqerfca.com 603 | oixkmetvk.com 604 | oeigvqgam.com 605 | akmztppit.com 606 | yvzvyufzo.com 607 | 495jb6q72l.com 608 | 58yq1wq7k0.com 609 | 37z095t6d4.com 610 | bti4ql58c6.com 611 | ievaqpce.com 612 | avoqgbvi.com 613 | iyuactep.com 614 | pwrizpbc.com 615 | ragysrpa.com 616 | eucoxmpa.com 617 | rgwipfia.com 618 | kgsvagrw.com 619 | vzksidcr.com 620 | pqgxwkdo.com 621 | ypvkordgp.com 622 | rzkmrqtmw.com 623 | ktgwzyzpx.com 624 | ooezwuzvg.com 625 | xsvmutifx.com 626 | yzewyzkmr.com 627 | ykqgmrcau.com 628 | xrakgtmhk.com 629 | xmwtuogdz.com 630 | kwgxikcho.com 631 | ntcb2k68qy.com 632 | 5bf9120gwo.com 633 | ewvaxpas.com 634 | uvxpsxie.com 635 | kpsmxhxz.com 636 | iogpmmim.com 637 | qzgizsdtv.com 638 | srzpaybrt.com 639 | zwqkepxzp.com 640 | weguyihez.com 641 | yrkszcbpe.com 642 | qxrwekafg.com 643 | tprtgqbgq.com 644 | 9189ff1wr3.com 645 | p7ec6jv22l.com 646 | 88643s8ilu.com 647 | raextzdw.com 648 | ssoqckrg.com 649 | tgycmuvbg.com 650 | ymvropmxo.com 651 | movgzsrfq.com 652 | sqwxpatmt.com 653 | ewgyeivru.com 654 | opuyoekao.com 655 | zqvemrfha.com 656 | uswayrmvt.com 657 | sktugoeau.com 658 | oocoqvgdo.com 659 | 89tgp2q6tf.com 660 | o82r01mh5h.com 661 | lq424427oh.com 662 | pb6bg9p0v6.com 663 | i11bkjaor0.com 664 | noc3d43ew5.com 665 | nujrox7yi5.com 666 | aqmskgkx.com 667 | mtaorfxu.com 668 | pouqsxikt.com 669 | gpteazvmi.com 670 | xsysaqkak.com 671 | uctqogrdt.com 672 | uztisrirw.com 673 | cropuvrdm.com 674 | oascephcq.com 675 | moqctarbr.com 676 | 7b6i1zgs3p.com 677 | 007z8gu0wl.com 678 | 406xl717j9.com 679 | 5z96c8kvi0.com 680 | vh77w1w3g5.com 681 | ztrxgkbp.com 682 | xrkgaizq.com 683 | cmagtbxc.com 684 | zeirogkg.com 685 | izoqvhag.com 686 | crukzhki.com 687 | wxsemfkv.com 688 | wuiepdig.com 689 | cwmveeaw.com 690 | okwoidet.com 691 | quveztfry.com 692 | tqczeortm.com 693 | zawcogaci.com 694 | vaopuyzkv.com 695 | qiekpobku.com 696 | rtaugotzt.com 697 | gcsqeavrm.com 698 | kaprvgezm.com 699 | rqksaomka.com 700 | 41nz3m483k.com 701 | 8886503w77.com 702 | wsa75b1b0h.com 703 | lo5cp9v31h.com 704 | iztsvxt.com 705 | gegokkm.com 706 | ``` 707 | -------------------------------------------------------------------------------- /src/app_related/pcdn.md: -------------------------------------------------------------------------------- 1 | # PCDN相关 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 域名收集 6 | 7 | ```txt 8 | # 江西节点技术服务有限公司 9 | szbdyd.com 10 | snv1.com 11 | lbv1.com 12 | snodehome.net 13 | snodehome.cn 14 | snodehome.com 15 | pkoplink.com 16 | xingyouc.com 17 | xingyouyun.com 18 | # 深圳市网心科技有限公司 19 | 0101cdn.com 20 | onethingtech.com.cn 21 | wezhibo.tv 22 | xunleioa.com 23 | onethingtech.net 24 | xycdn.net 25 | xycloud.com 26 | ionecloud.cn 27 | seekr.com.cn 28 | xylive.tv 29 | xycdn.com 30 | onethingpcs.com 31 | uhabo.com 32 | kuiniuca.com 33 | hiveshared.com 34 | onethingc.com 35 | onethingd.com 36 | wzhibo.tv 37 | wezhibo.net 38 | wzhibo.net 39 | onethingn.com 40 | onething.net 41 | miuapp.com.cn 42 | onethingcloud.com 43 | onethingcloud.cn 44 | walk-live.com 45 | peiluyou.com 46 | # 深圳聚网优速科技有限公司 47 | chinanetcdn.com 48 | galaxyclouds.com.cn 49 | galaxyclouds.net 50 | galaxyclouds.cn 51 | 52 | ``` -------------------------------------------------------------------------------- /src/app_related/sogou.md: -------------------------------------------------------------------------------- 1 | # 搜狗系 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 域名收集 6 | 7 | ```txt 8 | # 北京搜狗信息服务有限公司 9 | sogou-inc.com 10 | sogou-op.org 11 | sogou.net 12 | sogouimecdn.com 13 | xinyan.cn 14 | sgyeyou.com 15 | yidianliulan.cn 16 | ggowan.com 17 | soso.com 18 | soso.com.cn 19 | ggoplay.com 20 | sgyouxi.com 21 | sogoucdn.com 22 | sogou.com 23 | sogou.com.cn 24 | go2map.com 25 | binglianhuajianzhan.com 26 | yuweikuijianzhan.com 27 | xiangrikuisite.com 28 | sgtmos.com 29 | xiangrikuijianzhan.com 30 | sososnap.com 31 | sogou.cn 32 | sogo.com 33 | qd.ink 34 | sogoucdndl.com 35 | wannianqingjianzhan.com 36 | yeyousg.com 37 | pinyin.cn 38 | teemo.cn 39 | sg.cn 40 | yidianliulan.com 41 | # 成都吉易付科技有限公司 42 | yidianfenqi.cn 43 | yidianfenqi.net 44 | yidianjieqian.com 45 | yidianfenqi.com 46 | yidianfenqi.com.cn 47 | ``` -------------------------------------------------------------------------------- /src/app_related/uc.md: -------------------------------------------------------------------------------- 1 | # UC系 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 域名收集 6 | 7 | ```txt 8 | # 广州市动景计算机科技有限公司 9 | effirst.com 10 | minippa.cn 11 | uflowx.com 12 | ubibibi.com 13 | bhweapon.cn 14 | effirst.cn 15 | coolppa.cn 16 | tinyppa.cn 17 | tinypap.cn 18 | tinya1.cn 19 | ucfly.com 20 | blovestorm.com 21 | u-mob.cn 22 | uc123.com 23 | open-uc.cn 24 | ucdesk.cn 25 | myquark.cn 26 | tinyap2.cn 27 | uc.cn 28 | uczhibo.cn 29 | quark.cn 30 | ucweb.com 31 | ucweb.com.cn 32 | yun.cn 33 | ucweb.cn 34 | quarkfly.cn 35 | # 广州神马移动信息科技有限公司 36 | xiaoshuo1-sm.com 37 | transcode.cn 38 | alibabalabs.com 39 | uczzd.com.cn 40 | kkedulive.com 41 | sm-tc.cn 42 | uczzd.com 43 | xiaoshuo2-sm.com 44 | yisou.com 45 | uczzd.cn 46 | uczm.cn 47 | sm.cn 48 | uczzd.net 49 | shenma-inc.com 50 | kkentlive.com 51 | # 深圳橙子互动股份有限公司 52 | orangegame.cn 53 | msyuer.com 54 | wiorange.com 55 | cmi.ren 56 | # 北京手游天下数字娱乐科技股份有限公司 57 | gamedog.cn 58 | 44937.com 59 | # 深圳市乐合科技有限公司 60 | 360wy.cn 61 | # 深圳市乐讯科技有限公司 62 | lexungame.cn 63 | lexunv.com 64 | lexun.com 65 | lxyes.net 66 | lxyes.com 67 | lexun.cn 68 | 6v.com 69 | lxyes.cn 70 | lexun.net 71 | # 广州灵犀互娱信息技术有限公司 72 | 996.com 73 | 996.com 74 | 25pp.com 75 | pp.cn 76 | ``` 77 | -------------------------------------------------------------------------------- /src/general/general.md: -------------------------------------------------------------------------------- 1 | # 各类小型广告公司/垃圾信息公司 2 | 3 | ## 恩游(上海)网络科技有限公司 4 | 5 | ```txt 6 | toutiaoyule.com 7 | 5300000.cn 8 | ``` 9 | -------------------------------------------------------------------------------- /src/malware_related/2345.md: -------------------------------------------------------------------------------- 1 | # 2345大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 上海二三四五网络科技有限公司 ![ICP](https://img.shields.io/badge/ICP-沪ICP备12023051号-green) 8 | + 股东: 上海二三四五网络控股集团股份有限公司 9 | + 上海洪昇智能科技有限公司 10 | + 上海芯翌智能科技有限公司 11 | + 上海二三四五移动科技有限公司 12 | + 宁波坤达智能科技有限公司 13 | + 上海刻岸网络科技有限公司 14 | + 广东鑫锘影视文化传播有限公司 15 | 16 | ## 域名收集 17 | 18 | ```txt 19 | # 上海二三四五网络科技有限公司 20 | 2345.com 21 | 777ge.com 22 | tongcha.com 23 | 50bang.org 24 | 6781.com 25 | k986.com 26 | 555k.net 27 | wzeh.com 28 | cc62.com 29 | hao184.com 30 | cycyongh.com 31 | cycyongh.cn 32 | banmyonghu.cn 33 | 2345.com.cn 34 | 2345.com 35 | 2345soso.com 36 | kzdh.com 37 | yl234.cn 38 | 222i.net 39 | 4585.com 40 | 2345cdn.net 41 | yl234.com 42 | xinxiliusdk.cn 43 | hao774.com 44 | ab365.com 45 | 77816.com 46 | 2345inc.cn 47 | 2345inc.com 48 | 2345inc.com.cn 49 | 50bangzh.com 50 | cztxyh.cn 51 | cztxyh.com 52 | kuku2.com 53 | kabasiji.com 54 | 5599.net 55 | haozip.com 56 | 9991.com 57 | zhangyu.com 58 | xinxiliusdk.wang 59 | 2345cdn.com 60 | ruichuang.net 61 | xinxiliusdk.cn 62 | hao774.com 63 | ab365.com 64 | 77816.com 65 | 2345inc.cn 66 | 2345inc.com 67 | 2345inc.com.cn 68 | 50bangzh.com 69 | cztxyh.cn 70 | cztxyh.com 71 | kuku2.com 72 | kabasiji.com 73 | 5599.net 74 | # 上海二三四五移动科技有限公司 75 | ciweiyh.cn 76 | 2345.cc 77 | cycyh.wang 78 | xinglm.cn 79 | ciweiyh.wang 80 | shanhu99.com 81 | 2345download.com 82 | 2345mbrowser.com 83 | eternalland.cn 84 | eternalland.net 85 | caomeiyhu.com 86 | game6677.com 87 | haishun.org 88 | 2345.cn 89 | qnchrome.com 90 | qnchrome.cn 91 | # 宁波坤达智能科技有限公司 92 | to128.com 93 | yes115.com 94 | # 上海刻岸网络科技有限公司 95 | keansoft.cc 96 | keansoft.cn 97 | # 上海洪昇智能科技有限公司 98 | hh361.com 99 | # 上海芯翌智能科技有限公司 100 | xforwardai.com.cn 101 | xforwardai.com 102 | # 广东鑫锘影视文化传播有限公司 103 | contentchina.com 104 | ``` 105 | 106 | ## 规则 107 | 108 | ### Adblock-style syntax 109 | 110 | ```txt 111 | /.*\.?2345\w{0,}\..*/$important 112 | # 上海二三四五网络科技有限公司 113 | ||777ge.com^$important 114 | ||tongcha.com^$important 115 | ||50bang.org^$important 116 | ||6781.com^$important 117 | ||k986.com^$important 118 | ||555k.net^$important 119 | ||wzeh.com^$important 120 | ||cc62.com^$important 121 | ||hao184.com^$important 122 | /(cycyongh)|(banmyonghu)/ 123 | ||kzdh.com^$important 124 | ||yl234.cn^$important 125 | ||222i.net^$important 126 | ||4585.com^$important 127 | ||yl234.com^$important 128 | /xinxiliusdk/$important 129 | ||hao774.com^$important 130 | ||ab365.com^$important 131 | ||77816.com^$important 132 | ||50bangzh.com^$important 133 | /cztxyh/$important 134 | ||kuku2.com^$important 135 | /kabasiji/$important 136 | ||5599.net^$important 137 | ||haozip.com^$important 138 | ||9991.com^$important 139 | ||zhangyu.com^$important 140 | ||ruichuang.net^$important 141 | # 上海二三四五移动科技有限公司 142 | /ciwei\w{0,}/$important 143 | ||cycyh.wang^$important 144 | ||xinglm.cn^$important 145 | ||shanhu99.com^$important 146 | /eternalland/$important 147 | ||caomeiyhu.com^$important 148 | ||game6677.com^$important 149 | ||haishun.org^$important 150 | /qnchrome/ 151 | # 宁波坤达智能科技有限公司 152 | ||to128.com^$important 153 | ||yes115.com^$important 154 | # 上海芯翌智能科技有限公司 155 | /keansoft/$important 156 | # 上海芯翌智能科技有限公司 157 | /xforwardai/$important 158 | # 广东鑫锘影视文化传播有限公司 159 | ||contentchina.com^$important 160 | ``` 161 | -------------------------------------------------------------------------------- /src/malware_related/360.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/malware_related/37.md: -------------------------------------------------------------------------------- 1 | # 37大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 三七文娱(广州)网络科技有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备19017583号-green) 8 | + 三七互娱(上海)科技有限公司 9 | + 上海硬通网络科技有限公司 10 | + 上海志仁文化传媒有限公司 11 | + 海南连弘网络科技有限公司 12 | + 江苏智铭网络技术有限公司 13 | + 安徽尚趣玩网络科技有限公司 14 | + 北京时术网络科技有限公司 15 | + 上海咚巴啦网络科技有限公司 16 | + 上海冠航网络科技有限公司 17 | + 安徽逐胜网络科技有限公司 18 | + 安徽嘉尚网络科技有限公司 19 | + 海南惠莱网络科技有限公司 20 | + 芜湖泰通商业运营管理有限公司 21 | + 广州楚门网络科技有限公司 22 | + 厦门延趣网络科技有限公司 23 | + 厦门市有梦互娱科技有限公司 24 | + 安徽泰运投资管理有限公司 25 | + 成都星合互娱科技有限公司 26 | + 成都星铭互娱科技有限公司 27 | + 重庆星耀互娱科技有限公司 28 | + 海南海口星懿互娱科技有限公司 29 | + 安徽沁玩网络科技有限公司 30 | + 广州盈风网络科技有限公司 31 | + 安徽冠宇文化传媒有限公司 32 | + 安徽旭宏信息技术有限公司 33 | + 海南尚轩网络科技有限公司 34 | + 广州三七网络科技有限公司 35 | + 江苏嘉趣网络科技有限公司 36 | + 芜湖锐虎网络科技有限公司 37 | + 安徽三七网络科技有限公司 38 | + 广州趣虎网络科技有限公司 39 | + 广州逸虎网络科技有限公司 40 | + 海南智虎网络科技有限公司 41 | + 上海羽厚亦网络科技有限公司 42 | + 广州旭扬网络科技有限公司 43 | + 海南日常网络科技有限公司 44 | + 巨枫互动信息科技(广州)有限公司 45 | + 靖江智慧云谷互联网有限公司 46 | + 江苏梦想互娱网络科技有限公司 47 | + 深圳市异游科技有限公司 48 | + 广州放肆游网络科技有限公司 49 | + 北京燧木科技有限公司 50 | + 安徽玩虎信息技术有限公司 51 | + 安徽雷虎网络科技有限公司 52 | + 广州火山湖信息技术有限公司 53 | + 北京尚恒嘉天网络科技有限公司 54 | + 上海手游天下数字科技有限公司 55 | + 海南游虎网络科技有限公司 56 | + 霍尔果斯智圣网络科技有限公司 57 | + 霍尔果斯智凡网络科技有限公司 58 | + 上海通虎网络科技有限公司 59 | + 上海涅虎网络科技有限公司 60 | + 芜湖佳亮网络科技有限公司 61 | + 海南乐歌网络科技有限公司 62 | + 上海傲庭网络科技有限公司 63 | 64 | ## 域名收集 65 | 66 | ```txt 67 | # 三七文娱(广州)网络科技有限公司 68 | 37wenyu.com 69 | # 三七互娱(上海)科技有限公司 70 | 37wan.net 71 | www37wan.net 72 | my62you.com 73 | 37wanmm.com 74 | 37wan.com 75 | 37wanimg.com 76 | 37wangg.com 77 | my95k.com 78 | i37wan.net 79 | 37wanyy.net 80 | 37wangm.com 81 | my37wan.com 82 | # 上海硬通网络科技有限公司 83 | osqwsf04.com 84 | osqwsf06.com 85 | 6ght.com 86 | 3ylm.com 87 | 3mtw.com 88 | 60hx.com 89 | 60ou.com 90 | 5ypy.com 91 | 37.com 92 | 6711api.com 93 | 37wanyouxi.com 94 | zuihi.com 95 | z7xz.com 96 | jh8k.com 97 | gamepk37.com 98 | 37ops.com 99 | osqwsf10.com 100 | osqwsf03.com 101 | osqwsf05.com 102 | osqwsf08.com 103 | 993h.com 104 | 2op9.net 105 | 39on.com 106 | 996a.com 107 | 5jli.com 108 | 5ooq.com 109 | 52d5d.com 110 | 62youapi.com 111 | 6d4d5.com 112 | jk3a.com 113 | 37game2.com 114 | 915pk.com 115 | osqwsf01.com 116 | osqwsf02.com 117 | osqwsf07.com 118 | osqwsf09.com 119 | 3pwg.com 120 | 3qxy.com 121 | 6wtx.com 122 | 5zmp.com 123 | ytongnet.com 124 | api6711.com 125 | 5dfsd2.com 126 | x5cv.com 127 | g89n.com 128 | as3f.com 129 | 37wanyy.cn 130 | 37api.net 131 | # 海南连弘网络科技有限公司 132 | app6687.com 133 | fdd73.com 134 | n5782.com 135 | sy1681.com 136 | xccf12.com 137 | elk20.com 138 | iwy23.com 139 | lian-hong.cn 140 | oajj08.com 141 | qss558.com 142 | # 江苏智铭网络技术有限公司 143 | own75.com 144 | yev242.com 145 | un726.com 146 | zhi-ming.com 147 | o13214.com 148 | vhk83.com 149 | uvd43.com 150 | sanqiyx.com 151 | oxz135.com 152 | ny3002.com 153 | zwuy52.com 154 | # 安徽尚趣玩网络科技有限公司 155 | 37vcc.com 156 | cd37wan.com 157 | isdl5f.com 158 | 6711.com 159 | 37tgy.com 160 | j3837d.com 161 | 6711img.com 162 | 2ed5d.com 163 | 96f2d.com 164 | 37wan.com.cn 165 | 37ldy.com 166 | 37nqy.com 167 | cdwenbei.com 168 | 9jd83d.com 169 | 37.com.cn 170 | # 北京时术网络科技有限公司 171 | sh3k.cn 172 | # 上海咚巴啦网络科技有限公司 173 | dobala.net 174 | dobala.cn 175 | # 上海冠航网络科技有限公司 176 | s72c.com 177 | s70c.com 178 | guan-hang.com 179 | s78c.com 180 | s76f.com 181 | s77f.com 182 | s73c.com 183 | s71c.com 184 | s75c.com 185 | s74c.com 186 | # 安徽逐胜网络科技有限公司 187 | zhu-sheng.com 188 | # 安徽嘉尚网络科技有限公司 189 | yxi3344.com 190 | ps2s92ow.com 191 | applesitunes.com 192 | jia-shang.cn 193 | 37api.com 194 | 37api.cn 195 | apps668.com 196 | iphoneitunes.com 197 | 37zhaopin.com 198 | # 海南惠莱网络科技有限公司 199 | huilainetwork.com 200 | huilaihn.com 201 | hui-lai.cn 202 | huilai99.com 203 | wxbolo.com 204 | ohk36.com 205 | # 广州楚门网络科技有限公司 206 | gzjfgame.com 207 | # 厦门延趣网络科技有限公司 208 | xmyanqu.com 209 | jwdzg.com 210 | # 厦门市有梦互娱科技有限公司 211 | xmyoumeng.com 212 | youmenghuyu.net 213 | # 成都星合互娱科技有限公司 214 | staruniongame.com 215 | unionallstar.com 216 | # 成都星铭互娱科技有限公司 217 | starinscribe.com 218 | # 重庆星耀互娱科技有限公司 219 | starhonorgame.com 220 | # 海南海口星懿互娱科技有限公司 221 | shonegame.com 222 | # 安徽沁玩网络科技有限公司 223 | qin-wan.com 224 | # 广州盈风网络科技有限公司 225 | kvps85.com 226 | # 安徽冠宇文化传媒有限公司 227 | 37cs.com 228 | guan-yu.com.cn 229 | 37cs.com.cn 230 | # 安徽旭宏信息技术有限公司 231 | qyp615.com 232 | xuhongtech.com 233 | lda02.com 234 | pt675.com 235 | xu-hong.com.cn 236 | xuhongnet.com 237 | ahxuhong.com 238 | # 海南尚轩网络科技有限公司 239 | bjgjt38.com 240 | shang-xuan.cn 241 | hnshangxuan.com 242 | jwdzgsy.com 243 | techshx.com 244 | a381735.com 245 | foar33.com 246 | pnyzj.com 247 | hcu838.com 248 | zqk588.com 249 | ngty556.com 250 | shxnetwork.com 251 | thaliasetsail.com 252 | # 广州三七网络科技有限公司 253 | 37sdk.cn 254 | 37huimei.com 255 | akbkgame.com 256 | 37sdk.com 257 | 453e.com 258 | 37huoshanhu.com 259 | 37wan.cn 260 | 37sdk.net 261 | # 江苏嘉趣网络科技有限公司 262 | jia-qu.cn 263 | # 芜湖锐虎网络科技有限公司 264 | whruihu-tech.com 265 | rui-hu.cn 266 | # 安徽三七网络科技有限公司 267 | 37sy.com.cn 268 | 37shouyou.cn 269 | 95k.com 270 | bawfer.com 271 | sedunt.com 272 | lansors.com 273 | deament.com 274 | nuction.com 275 | san-qi.cn 276 | dealker.com 277 | # 广州趣虎网络科技有限公司 278 | qu-hu.cn 279 | 0jlfvm.com 280 | 7necyl.com 281 | 9fe6d.com 282 | gzquhu.com 283 | # 广州逸虎网络科技有限公司 284 | yihuyihu.cn 285 | # 海南智虎网络科技有限公司 286 | pzq8toew.com 287 | cvoyoy0e.com 288 | usdbbvl7.com 289 | 0j2i25.com 290 | zhi-hu.cn 291 | r6ajactz.com 292 | uv1oxjrf.com 293 | fn1zd3kv.com 294 | 3jd93d.com 295 | ast8kbdc.com 296 | gx8i64mc.com 297 | hawlunger.com 298 | itunestore.vip 299 | haclaczi.com 300 | 8nq8ztb6.com 301 | 7wuzoe0s.com 302 | 8s9kt0qv.com 303 | 4ivyrmej.com 304 | pb1771hp.com 305 | 02d93d.com 306 | 94j0r5.com 307 | ozkheitn.com 308 | 930djd.com 309 | # 上海羽厚亦网络科技有限公司 310 | yaohaiyou.com 311 | 10001wan.com 312 | mapforlove.online 313 | # 广州旭扬网络科技有限公司 314 | hello65.com 315 | zhy162088.com 316 | ttlewan.com 317 | ggxx.net 318 | liuwuyouxi.com 319 | zhy161088.com 320 | ggxx.com 321 | # 海南日常网络科技有限公司 322 | 0898richang.com 323 | hiphip.cn 324 | hipihapi.com 325 | 020richang.com 326 | 50pk.com 327 | hapihapi.cn 328 | # 巨枫互动信息科技(广州)有限公司 329 | giantfun168.com 330 | # 江苏梦想互娱网络科技有限公司 331 | 19193.com 332 | # 深圳市异游科技有限公司 333 | difgame.com 334 | # 广州放肆游网络科技有限公司 335 | funsyou.com 336 | # 北京燧木科技有限公司 337 | suimugame.cn 338 | # 安徽玩虎信息技术有限公司 339 | wan-hu.cn 340 | # 安徽雷虎网络科技有限公司 341 | lei-hu-tech.com 342 | lei-hu.com 343 | lei-hu.cn 344 | # 广州火山湖信息技术有限公司 345 | huo-shan-hu.com 346 | # 北京尚恒嘉天网络科技有限公司 347 | shang-heng.com 348 | # 上海手游天下数字科技有限公司 349 | mukormow.com 350 | tarnace.com 351 | rekcd.com 352 | windvaday.com 353 | akbing.com 354 | teehekor.com 355 | loozir.com 356 | taymean.com 357 | burmealay.com 358 | vunlautay.com 359 | nofeba.com 360 | sytx-games.com 361 | toceaby.com 362 | fordawtech.com 363 | tgcome.com 364 | taynay.com 365 | # 海南游虎网络科技有限公司 366 | youhutech.com 367 | 9rnfi4.com 368 | 8dbkz595.com 369 | osqwsf39.com 370 | osqwsf26.com 371 | osqwsf40.com 372 | 8enmdi.com 373 | d9wnd.com 374 | osqwsf38.com 375 | i8wnd0.com 376 | osqwsf27.com 377 | mt4h4.com 378 | 37ios.com 379 | 404oir.com 380 | 93jd83.com 381 | 8shd0.com 382 | osqwsf24.com 383 | 9nd32.com 384 | iqd40bsn.com 385 | 37game.cc 386 | 49ij943.com 387 | # 霍尔果斯智圣网络科技有限公司 388 | zs-zhisheng.cn 389 | zs-zhisheng.com 390 | # 霍尔果斯智凡网络科技有限公司 391 | sanqi-zhiyu.cn 392 | # 上海通虎网络科技有限公司 393 | a5g90til.com 394 | 92nde.com 395 | u4didd.com 396 | 30dj92.com 397 | 92hd83.com 398 | 38dh9.com 399 | vfad5msw.com 400 | i48dje.com 401 | 38ejed.com 402 | 8rn4u.com 403 | 094j35.com 404 | 44hier.com 405 | 4j40jd.com 406 | 6ib5h.com 407 | 50fkj4.com 408 | 49rj04.com 409 | 92d02d.com 410 | 8il8eo8i.com 411 | xvin7vbp.com 412 | 3jd8edc.com 413 | 39ej7e.com 414 | j4i9dh.com 415 | e98dkj.com 416 | 0jd83s.com 417 | 92u93e.com 418 | gw1lnkzm.com 419 | odchqpto.com 420 | zmye5vly.com 421 | hapeenor.com 422 | 9dj93d.com 423 | 74byd.com 424 | 95h4yw.com 425 | 98ren8.com 426 | # 上海涅虎网络科技有限公司 427 | oiwq3.com 428 | 9dswi.com 429 | y2m2hc1l.com 430 | osqwsf41.com 431 | j1cpiq56.com 432 | winoiq.com 433 | 0wjns.com 434 | 9hsiu.com 435 | iwnw3.com 436 | 7a7xiyy4.com 437 | 11xotn7p.com 438 | osqwsf22.com 439 | b2fyzdw2.com 440 | 2hdd3.com 441 | 9qu2n.com 442 | 29dn8.com 443 | 0d2idn.com 444 | ygc711iq.com 445 | xfke1y1j.com 446 | sxjwlz7c.com 447 | 91mhmcmz.com 448 | osqwsf48.com 449 | # 芜湖佳亮网络科技有限公司 450 | sepaker.com 451 | jia-liang.com 452 | jltging.com 453 | galannet.com 454 | # 海南乐歌网络科技有限公司 455 | hnlege.cn 456 | # 上海傲庭网络科技有限公司 457 | odingame.cn 458 | odinie.com 459 | ``` 460 | 461 | ## 规则 462 | 463 | ### Adblock-style syntax 464 | 465 | ```txt 466 | # 三七文娱(广州)网络科技有限公司 467 | ||37wenyu.com^$important 468 | # 三七互娱(上海)科技有限公司 469 | /37wan\w{0,4}\./ 470 | ||my62you.com^$important 471 | ||my95k.com^$important 472 | # 上海硬通网络科技有限公司 473 | /osqwsf\d\d\./$important 474 | /^.*37(sy|api|gam|ops|wan|sdk|shouyou).*\.(com|cn|net)$/$important 475 | ||2op9.net^$important 476 | ||37.com^$important 477 | ||39on.com^$important 478 | ||3mtw.com^$important 479 | ||3pwg.com^$important 480 | ||3qxy.com^$important 481 | ||3ylm.com^$important 482 | ||52d5d.com^$important 483 | ||5dfsd2.com^$important 484 | ||5jli.com^$important 485 | ||5ooq.com^$important 486 | ||5ypy.com^$important 487 | ||5zmp.com^$important 488 | ||60hx.com^$important 489 | ||60ou.com^$important 490 | ||62youapi.com^$important 491 | ||6711api.com^$important 492 | ||6d4d5.com^$important 493 | ||6ght.com^$important 494 | ||6wtx.com^$important 495 | ||915pk.com^$important 496 | ||993h.com^$important 497 | ||996a.com^$important 498 | ||api6711.com^$important 499 | ||as3f.com^$important 500 | ||g89n.com^$important 501 | ||gamepk37.com^$important 502 | ||jh8k.com^$important 503 | ||jk3a.com^$important 504 | ||x5cv.com^$important 505 | ||ytongnet.com^$important 506 | ||z7xz.com^$important 507 | ||zuihi.com^$important 508 | # 海南连弘网络科技有限公司 509 | ||app6687.com^$important 510 | ||fdd73.com^$important 511 | ||n5782.com^$important 512 | ||sy1681.com^$important 513 | ||xccf12.com^$important 514 | ||elk20.com^$important 515 | ||iwy23.com^$important 516 | ||lian-hong.cn^$important 517 | ||oajj08.com^$important 518 | ||qss558.com^$important 519 | # 江苏智铭网络技术有限公司 520 | ||own75.com^$important 521 | ||yev242.com^$important 522 | ||un726.com^$important 523 | ||zhi-ming.com^$important 524 | ||o13214.com^$important 525 | ||vhk83.com^$important 526 | ||uvd43.com^$important 527 | ||sanqiyx.com^$important 528 | ||oxz135.com^$important 529 | ||ny3002.com^$important 530 | ||zwuy52.com^$important 531 | # 安徽尚趣玩网络科技有限公司 532 | /37\w{2,3}\./$important 533 | ||isdl5f.com^$important 534 | ||6711.com^$important 535 | ||j3837d.com^$important 536 | ||6711img.com^$important 537 | ||2ed5d.com^$important 538 | ||96f2d.com^$important 539 | ||cdwenbei.com^$important 540 | ||9jd83d.com^$important 541 | ||37.com.cn^$important 542 | # 北京时术网络科技有限公司 543 | ||sh3k.cn^$important 544 | # 上海咚巴啦网络科技有限公司 545 | /dobala\./$important 546 | # 上海冠航网络科技有限公司 547 | /s\d\d(c|f)/$important 548 | ||guan-hang.com^$important 549 | # 安徽逐胜网络科技有限公司 550 | ||zhu-sheng.com^$important 551 | # 安徽嘉尚网络科技有限公司 552 | ||yxi3344.com^$important 553 | ||ps2s92ow.com^$important 554 | ||applesitunes.com^$important 555 | ||jia-shang.cn^$important 556 | ||apps668.com^$important 557 | ||iphoneitunes.com^$important 558 | ||37zhaopin.com^$important 559 | # 海南惠莱网络科技有限公司 560 | /hui-?lai(\w{2,8})?\./ 561 | ||wxbolo.com^$important 562 | ||ohk36.com^$important 563 | # 广州楚门网络科技有限公司 564 | ||gzjfgame.com^$important 565 | # 厦门延趣网络科技有限公司 566 | ||xmyanqu.com^$important 567 | ||jwdzg.com^$important 568 | # 厦门市有梦互娱科技有限公司 569 | ||xmyoumeng.com^$important 570 | ||youmenghuyu.net^$important 571 | # 成都星合互娱科技有限公司 572 | ||staruniongame.com^$important 573 | ||unionallstar.com^$important 574 | # 成都星铭互娱科技有限公司 575 | ||starinscribe.com^$important 576 | # 重庆星耀互娱科技有限公司 577 | ||starhonorgame.com^$important 578 | # 海南海口星懿互娱科技有限公司 579 | ||shonegame.com^$important 580 | # 安徽沁玩网络科技有限公司 581 | ||qin-wan.com^$important 582 | # 广州盈风网络科技有限公司 583 | ||kvps85.com^$important 584 | # 安徽冠宇文化传媒有限公司 585 | ||guan-yu.com.cn^$important 586 | # 安徽旭宏信息技术有限公司 587 | ||qyp615.com^$important 588 | ||xuhongtech.com^$important 589 | ||lda02.com^$important 590 | ||pt675.com^$important 591 | ||xu-hong.com.cn^$important 592 | ||xuhongnet.com^$important 593 | ||ahxuhong.com^$important 594 | # 海南尚轩网络科技有限公司 595 | ||bjgjt38.com^$important 596 | ||shang-xuan.cn^$important 597 | ||hnshangxuan.com^$important 598 | ||jwdzgsy.com^$important 599 | ||techshx.com^$important 600 | ||a381735.com^$important 601 | ||foar33.com^$important 602 | ||pnyzj.com^$important 603 | ||hcu838.com^$important 604 | ||zqk588.com^$important 605 | ||ngty556.com^$important 606 | ||shxnetwork.com^$important 607 | ||thaliasetsail.com^$important 608 | # 广州三七网络科技有限公司 609 | ||37huimei.com^$important 610 | ||akbkgame.com^$important 611 | ||453e.com^$important 612 | ||37huoshanhu.com^$important 613 | # 江苏嘉趣网络科技有限公司 614 | ||jia-qu.cn^$important 615 | # 芜湖锐虎网络科技有限公司 616 | ||whruihu-tech.com^$important 617 | ||rui-hu.cn^$important 618 | # 安徽三七网络科技有限公司 619 | ||95k.com^$important 620 | ||bawfer.com^$important 621 | ||sedunt.com^$important 622 | ||lansors.com^$important 623 | ||deament.com^$important 624 | ||nuction.com^$important 625 | ||san-qi.cn^$important 626 | ||dealker.com^$important 627 | # 广州趣虎网络科技有限公司 628 | ||qu-hu.cn^$important 629 | ||0jlfvm.com^$important 630 | ||7necyl.com^$important 631 | ||9fe6d.com^$important 632 | ||gzquhu.com^$important 633 | # 广州逸虎网络科技有限公司 634 | ||yihuyihu.cn^$important 635 | # 海南智虎网络科技有限公司 636 | ||pzq8toew.com^$important 637 | ||cvoyoy0e.com^$important 638 | ||usdbbvl7.com^$important 639 | ||0j2i25.com^$important 640 | ||zhi-hu.cn^$important 641 | ||r6ajactz.com^$important 642 | ||uv1oxjrf.com^$important 643 | ||fn1zd3kv.com^$important 644 | ||3jd93d.com^$important 645 | ||ast8kbdc.com^$important 646 | ||gx8i64mc.com^$important 647 | ||hawlunger.com^$important 648 | ||itunestore.vip^$important 649 | ||haclaczi.com^$important 650 | ||8nq8ztb6.com^$important 651 | ||7wuzoe0s.com^$important 652 | ||8s9kt0qv.com^$important 653 | ||4ivyrmej.com^$important 654 | ||pb1771hp.com^$important 655 | ||02d93d.com^$important 656 | ||94j0r5.com^$important 657 | ||ozkheitn.com^$important 658 | ||930djd.com^$important 659 | # 上海羽厚亦网络科技有限公司 660 | ||yaohaiyou.com^$important 661 | ||10001wan.com^$important 662 | ||mapforlove.online^$important 663 | # 广州旭扬网络科技有限公司 664 | ||hello65.com^$important 665 | ||zhy162088.com^$important 666 | ||ttlewan.com^$important 667 | ||ggxx.net^$important 668 | ||liuwuyouxi.com^$important 669 | ||zhy161088.com^$important 670 | ||ggxx.com^$important 671 | # 海南日常网络科技有限公司 672 | ||0898richang.com^$important 673 | ||hiphip.cn^$important 674 | ||hipihapi.com^$important 675 | ||020richang.com^$important 676 | ||50pk.com^$important 677 | ||hapihapi.cn^$important 678 | # 巨枫互动信息科技(广州)有限公司 679 | ||giantfun168.com^$important 680 | # 江苏梦想互娱网络科技有限公司 681 | ||19193.com^$important 682 | # 深圳市异游科技有限公司 683 | ||difgame.com^$important 684 | # 广州放肆游网络科技有限公司 685 | ||funsyou.com^$important 686 | # 北京燧木科技有限公司 687 | ||suimugame.cn^$important 688 | # 安徽玩虎信息技术有限公司 689 | ||wan-hu.cn^$important 690 | # 安徽雷虎网络科技有限公司 691 | ||lei-hu-tech.com^$important 692 | ||lei-hu.com^$important 693 | ||lei-hu.cn^$important 694 | # 广州火山湖信息技术有限公司 695 | ||huo-shan-hu.com^$important 696 | # 北京尚恒嘉天网络科技有限公司 697 | ||shang-heng.com^$important 698 | # 上海手游天下数字科技有限公司 699 | ||mukormow.com^$important 700 | ||tarnace.com^$important 701 | ||rekcd.com^$important 702 | ||windvaday.com^$important 703 | ||akbing.com^$important 704 | ||teehekor.com^$important 705 | ||loozir.com^$important 706 | ||taymean.com^$important 707 | ||burmealay.com^$important 708 | ||vunlautay.com^$important 709 | ||nofeba.com^$important 710 | ||sytx-games.com^$important 711 | ||toceaby.com^$important 712 | ||fordawtech.com^$important 713 | ||tgcome.com^$important 714 | ||taynay.com^$important 715 | # 海南游虎网络科技有限公司 716 | ||youhutech.com^$important 717 | ||9rnfi4.com^$important 718 | ||8dbkz595.com^$important 719 | ||osqwsf39.com^$important 720 | ||osqwsf26.com^$important 721 | ||osqwsf40.com^$important 722 | ||8enmdi.com^$important 723 | ||d9wnd.com^$important 724 | ||osqwsf38.com^$important 725 | ||i8wnd0.com^$important 726 | ||osqwsf27.com^$important 727 | ||mt4h4.com^$important 728 | ||404oir.com^$important 729 | ||93jd83.com^$important 730 | ||8shd0.com^$important 731 | ||osqwsf24.com^$important 732 | ||9nd32.com^$important 733 | ||iqd40bsn.com^$important 734 | ||37game.cc^$important 735 | ||49ij943.com^$important 736 | # 霍尔果斯智圣网络科技有限公司 737 | ||zs-zhisheng.cn^$important 738 | ||zs-zhisheng.com^$important 739 | # 霍尔果斯智凡网络科技有限公司 740 | ||sanqi-zhiyu.cn^$important 741 | # 上海通虎网络科技有限公司 742 | ||a5g90til.com^$important 743 | ||92nde.com^$important 744 | ||u4didd.com^$important 745 | ||30dj92.com^$important 746 | ||92hd83.com^$important 747 | ||38dh9.com^$important 748 | ||vfad5msw.com^$important 749 | ||i48dje.com^$important 750 | ||38ejed.com^$important 751 | ||8rn4u.com^$important 752 | ||094j35.com^$important 753 | ||44hier.com^$important 754 | ||4j40jd.com^$important 755 | ||6ib5h.com^$important 756 | ||50fkj4.com^$important 757 | ||49rj04.com^$important 758 | ||92d02d.com^$important 759 | ||8il8eo8i.com^$important 760 | ||xvin7vbp.com^$important 761 | ||3jd8edc.com^$important 762 | ||39ej7e.com^$important 763 | ||j4i9dh.com^$important 764 | ||e98dkj.com^$important 765 | ||0jd83s.com^$important 766 | ||92u93e.com^$important 767 | ||gw1lnkzm.com^$important 768 | ||odchqpto.com^$important 769 | ||zmye5vly.com^$important 770 | ||hapeenor.com^$important 771 | ||9dj93d.com^$important 772 | ||74byd.com^$important 773 | ||95h4yw.com^$important 774 | ||98ren8.com^$important 775 | # 上海涅虎网络科技有限公司 776 | ||oiwq3.com^$important 777 | ||9dswi.com^$important 778 | ||y2m2hc1l.com^$important 779 | ||osqwsf41.com^$important 780 | ||j1cpiq56.com^$important 781 | ||winoiq.com^$important 782 | ||0wjns.com^$important 783 | ||9hsiu.com^$important 784 | ||iwnw3.com^$important 785 | ||7a7xiyy4.com^$important 786 | ||11xotn7p.com^$important 787 | ||osqwsf22.com^$important 788 | ||b2fyzdw2.com^$important 789 | ||2hdd3.com^$important 790 | ||9qu2n.com^$important 791 | ||29dn8.com^$important 792 | ||0d2idn.com^$important 793 | ||ygc711iq.com^$important 794 | ||xfke1y1j.com^$important 795 | ||sxjwlz7c.com^$important 796 | ||91mhmcmz.com^$important 797 | ||osqwsf48.com^$important 798 | # 芜湖佳亮网络科技有限公司 799 | ||sepaker.com^$important 800 | ||jia-liang.com^$important 801 | ||jltging.com^$important 802 | ||galannet.com^$important 803 | # 海南乐歌网络科技有限公司 804 | ||hnlege.cn^$important 805 | # 上海傲庭网络科技有限公司 806 | ||odingame.cn^$important 807 | ||odinie.com^$important 808 | ``` 809 | -------------------------------------------------------------------------------- /src/malware_related/6789.md: -------------------------------------------------------------------------------- 1 | # 6789大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京华网智讯软件有限公司 ![ICP](https://img.shields.io/badge/ICP-京ICP备2022006726号-green) 8 | + 股东: 北京华网智讯信息有限公司/全民黄金(北京)科技有限公司 9 | 10 | ## 域名收集 11 | 12 | ```txt 13 | # 北京华网智讯软件有限公司 14 | office123456.cn 15 | newhao123.net 16 | 6789.com 17 | chinasoft365.com 18 | office123456.com 19 | newtab123.cn 20 | newhao123.cn 21 | newtab123.com 22 | # 全民黄金(北京)科技有限公司 23 | qmhj.com 24 | ``` 25 | 26 | ## 规则 27 | 28 | ### Adblock-style syntax 29 | 30 | ```txt 31 | # 北京华网智讯软件有限公司 32 | ||office123456.cn^$important 33 | ||newhao123.net^$important 34 | ||6789.com^$important 35 | ||chinasoft365.com^$important 36 | ||office123456.com^$important 37 | ||newtab123.cn^$important 38 | ||newhao123.cn^$important 39 | ||newtab123.com^$important 40 | # 全民黄金(北京)科技有限公司 41 | ||qmhj.com^$important 42 | ``` 43 | -------------------------------------------------------------------------------- /src/malware_related/7654.md: -------------------------------------------------------------------------------- 1 | # 7654大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 上海嵩恒网络科技股份有限公司 ![ICP](https://img.shields.io/badge/ICP-沪ICP备14038113号-green) 8 | + 上海高欣计算机系统有限公司 ![ICP](https://img.shields.io/badge/ICP-沪ICP备13005144号-green) 9 | + 上海展盟网络科技有限公司 ![ICP](https://img.shields.io/badge/ICP-沪ICP备14004717号-green) 10 | + 上海睦欣网络科技有限公司 11 | + 上海泊燃网络科技有限公司 12 | + 上海以兮网络科技有限公司 13 | + 上海圆识网络科技有限公司 14 | + 上海巳月网络科技有限公司 15 | + 上海广乐网络科技有限公司 16 | + 上海合梦网络科技有限公司 17 | + 上海苋見网络科技有限公司 18 | + 上海霁栎网络科技有限公司 19 | + 上海桔柚网络科技有限公司 20 | + 上海青茑网络科技有限公司 21 | + 上海烟燃网络科技有限公司 22 | + 上海展鸣教育科技有限公司 23 | + 武汉巨博优科技有限公司 24 | 25 | ## 域名收集 26 | 27 | ```txt 28 | # 上海嵩恒网络科技股份有限公司 29 | dfxwdc.com 30 | tantao.com 31 | vip-dns-vip.com 32 | shwlops.com 33 | wnwb.com 34 | 9973.com 35 | xwdsp.com 36 | dftoutiao.com 37 | tianqikb.com 38 | admamax.com 39 | dfrili.com 40 | dfshurufa.com 41 | zoububao.com 42 | songhengnet.com 43 | pigdai.com 44 | dftianqi.com 45 | wubi.com 46 | wn51.com 47 | chachawenshu.com 48 | wnyxh.cn 49 | wenshuchacha.com 50 | # 上海高欣计算机系统有限公司 51 | dyjgj.com 52 | moban.com 53 | 9973t.com 54 | 9973x.com 55 | nonglirili.net 56 | shoushu120.com 57 | admama.com 58 | hao321.com.cn 59 | 9973a.com 60 | laohuangli365.com 61 | duiduikan.com 62 | mobanos.com 63 | shgaoxin.net 64 | haov2.com 65 | hao699.com 66 | wannianli365.com 67 | joymms.com 68 | 9973v.com 69 | 9973s.com 70 | # 上海展盟网络科技有限公司 71 | 7654.com 72 | heinote.com 73 | bghr4g.xyz 74 | nmfge.xyz 75 | sjpojq.top 76 | kuaizipcn.com 77 | fytui.xyz 78 | wannengzj.com 79 | yangguangxia.top 80 | nsubpp.top 81 | znnsluphh.cn 82 | smallbell.cn 83 | ngzhh.wang 84 | itnmg.xyz 85 | hzxihulongjing.com 86 | chenxiangpuer.xyz 87 | kzchaoren.xyz 88 | yangxinshenghuo.com 89 | biantiaozhi.top 90 | chanpinguige.top 91 | dianhualiuyan.top 92 | fangdiutieshi.top 93 | rknjh86.top 94 | qklfh13.top 95 | ruswib.top 96 | chenxiangpuer.com 97 | mujinhua.xyz 98 | uchiha.ltd 99 | ubtt.cn 100 | 4qs9g0z.wang 101 | kkdownload.com 102 | xiaoheizj.com 103 | officeschool.top 104 | youshitie.top 105 | kthws1y.top 106 | vfpzmg.cn 107 | zkrjh91.top 108 | bkyth95.top 109 | nknzre.top 110 | dtymzm.net 111 | jiawutishi.top 112 | uxiake.com 113 | hunpan.top 114 | moxiangpuer.xyz 115 | beidema.xyz 116 | whooyan.com 117 | guobaocainice.wang 118 | qitabeifen.top 119 | rrnbqq.top 120 | cyun.wang 121 | axtieguanying.xyz 122 | ynpuertea.xyz 123 | obito.ltd 124 | gotofangjia.top 125 | shengxialusix.wang 126 | wthjs9d.top 127 | kuaizipen.com 128 | chunpan.top 129 | gsinob.top 130 | vrek.cn 131 | dtymzm.cn 132 | toutiaobashi.com 133 | axtieguanying.com 134 | nxsanpaotai.xyz 135 | zenmeban.wang 136 | heinoteft.club 137 | heinoteft.wang 138 | heinoteft.top 139 | shzhanmeng.com 140 | d21.wang 141 | ftpfjqn.cn 142 | dtymzm.com 143 | yiranwupin.top 144 | 18g.wang 145 | zkwph62.top 146 | bestxiazai.com 147 | gyun.wang 148 | efep.cn 149 | aiwurenji.xyz 150 | dalibaotc.com 151 | rybqvbf.cn 152 | wkbjh72.top 153 | koutuo.top 154 | ffght.wang 155 | yyfht.wang 156 | kxiazai.com 157 | umzf.cn 158 | bghr4g.top 159 | naruto.red 160 | aikanshuxuexi.top 161 | mengdequandui.wang 162 | # 上海睦欣网络科技有限公司 163 | 698283.vip 164 | bbkb.wang 165 | rgozhm.cn 166 | angwo.top 167 | mxhdmn.icu 168 | mxjjkz.icu 169 | peoplec.wang 170 | mengche.top 171 | mxhmkb.cn 172 | onnpsg.top 173 | mxage.xyz 174 | mxage.top 175 | muwrg.top 176 | mxhdst.icu 177 | grth.xyz 178 | bedbdh.cn 179 | neiyao.top 180 | mxgcat.wang 181 | jjnxnb8.top 182 | muxinui.xyz 183 | muxinui.top 184 | dtymxiafa.cn 185 | dtymxf.com 186 | dtymxiafa.net 187 | dtymxf.top 188 | muxin.fun 189 | fnafgv.top 190 | neitan.top 191 | mxiixh.wang 192 | f9296.xyz 193 | zthns8d.top 194 | jwfun.com 195 | dxgnnb2.top 196 | aerger.icu 197 | muxina.top 198 | muxina.xyz 199 | dtymxiafa.com 200 | maodu10.xyz 201 | # 上海泊燃网络科技有限公司 202 | shhboran.cn 203 | shhboran.top 204 | shhboran.xyz 205 | # 上海以兮网络科技有限公司 206 | ssyixi.top 207 | ssyixi.com 208 | ssyixi.xyz 209 | # 上海圆识网络科技有限公司 210 | xingfuzoulu.top 211 | xingfuzoulu.icu 212 | vqvefx.wang 213 | vcder.top 214 | xingfuzoulu.cn 215 | zoulu.xyz 216 | xfzl.icu 217 | xfzoulu.top 218 | ganjiu.top 219 | # 上海巳月网络科技有限公司 220 | shsiyue.top 221 | syqmct.top 222 | shsysy.top 223 | shsiyue.xyz 224 | qmct.xyz 225 | shsysy.xyz 226 | # 上海广乐网络科技有限公司 227 | hwt7wz.fun 228 | kuaizip.com 229 | bnpp.wang 230 | glzip.com 231 | hjhhhb7.top 232 | xxwuka.wang 233 | oorrzz.com 234 | mmmudb3.top 235 | wfvrz.top 236 | glzip.cn 237 | glzip.net 238 | tt6jeb.fun 239 | hjuuub5.top 240 | ytnscr.wang 241 | hwsj.xyz 242 | kpzip.cn 243 | kpzip.net 244 | xxfwpb1.top 245 | ssgf.fun 246 | abckantu.com 247 | toutiaobus.com 248 | mtsyzm.fun 249 | bbbz.wang 250 | kpzip.com 251 | kpzip.com.cn 252 | txpaf.top 253 | udashi.pro 254 | ohb2zg.fun 255 | c0zpmk.fun 256 | ytprrb4.top 257 | hhrspb7.top 258 | hwhdym.icu 259 | hjojob1.top 260 | newgp.fun 261 | hwcp.wang 262 | btiiny.fun 263 | hwdi.cn 264 | # 上海青茑网络科技有限公司 265 | shqingqing.cn 266 | shqingqing.xyz 267 | shqingqing.top 268 | # 上海烟燃网络科技有限公司 269 | shyanran.xyz 270 | shyanran.top 271 | # 上海展鸣教育科技有限公司 272 | duoduoqimeng.com 273 | # 武汉巨博优科技有限公司 274 | down123.cc 275 | udsdown.xyz 276 | udashi.com 277 | down123.ren 278 | uqd123.cn 279 | 360uqd.com 280 | 360uds.com 281 | down123.me 282 | uqd123.com 283 | udsdown.com 284 | # 上海合梦网络科技有限公司 285 | otjkjyp.top 286 | njpaxao.top 287 | enoofyu.top 288 | wifipal.top 289 | hemeng.ltd 290 | zsrckcg.xyz 291 | ybzvbvt.site 292 | tyftgtu.xyz 293 | zfrpith.cn 294 | yiqiwitv.icu 295 | uivntlf.icu 296 | # 上海苋見网络科技有限公司 297 | axianjian.xyz 298 | ixianjian.fun 299 | mmzoulu.top 300 | axianjian.top 301 | ixianjian.top 302 | miaomiaozoulu.top 303 | mmzl.top 304 | axianjian.fun 305 | miaomiaozl.top 306 | mmzoulu.xyz 307 | miaomiaozoulu.cn 308 | # 上海霁栎网络科技有限公司 309 | shjiyue.top 310 | ajiyue.cn 311 | shjiyue.xyz 312 | # 上海桔柚网络科技有限公司 313 | ijuyou.fun 314 | ijuyoub.fun 315 | ijuyoua.fun 316 | ijuyou.xyz 317 | ijuyoub.xyz 318 | ijuyoub.top 319 | ijuyoua.top 320 | ajuyou.top 321 | ajuyou.xyz 322 | ajuyou.fun 323 | ijuyou.top 324 | ijuyoua.xyz 325 | ``` 326 | 327 | ## 规则 328 | 329 | ### Adblock-style syntax 330 | 331 | ```txt 332 | /(7654|9973))\w{0,}\./ 333 | /hao\d\d\d/ 334 | # 上海嵩恒网络科技股份有限公司 335 | ||dfxwdc.com^$important 336 | ||tantao.com^$important 337 | ||vip-dns-vip.com^$important 338 | ||shwlops.com^$important 339 | ||wnwb.com^$important 340 | ||xwdsp.com^$important 341 | ||dftoutiao.com^$important 342 | ||tianqikb.com^$important 343 | ||admamax.com^$important 344 | ||dfrili.com^$important 345 | ||dfshurufa.com^$important 346 | ||zoububao.com^$important 347 | ||songhengnet.com^$important 348 | ||pigdai.com^$important 349 | ||dftianqi.com^$important 350 | ||wubi.com^$important 351 | ||wn51.com^$important 352 | ||chachawenshu.com^$important 353 | ||wnyxh.cn^$important 354 | ||wenshuchacha.com^$important 355 | # 上海高欣计算机系统有限公司 356 | ||dyjgj.com^$important 357 | ||moban.com^$important 358 | ||nonglirili.net^$important 359 | ||shoushu120.com^$important 360 | ||admama.com^$important 361 | ||laohuangli365.com^$important 362 | ||duiduikan.com^$important 363 | ||mobanos.com^$important 364 | ||shgaoxin.net^$important 365 | ||haov2.com^$important 366 | ||wannianli365.com^$important 367 | ||joymms.com^$important 368 | # 上海展盟网络科技有限公司 369 | /heinote/$important 370 | ||bghr4g.xyz^$important 371 | ||nmfge.xyz^$important 372 | ||sjpojq.top^$important 373 | ||kuaizipcn.com^$important 374 | ||fytui.xyz^$important 375 | ||wannengzj.com^$important 376 | ||yangguangxia.top^$important 377 | ||nsubpp.top^$important 378 | ||znnsluphh.cn^$important 379 | ||smallbell.cn^$important 380 | ||ngzhh.wang^$important 381 | ||itnmg.xyz^$important 382 | ||hzxihulongjing.com^$important 383 | ||chenxiangpuer.xyz^$important 384 | ||kzchaoren.xyz^$important 385 | ||yangxinshenghuo.com^$important 386 | ||biantiaozhi.top^$important 387 | ||chanpinguige.top^$important 388 | ||dianhualiuyan.top^$important 389 | ||fangdiutieshi.top^$important 390 | ||rknjh86.top^$important 391 | ||qklfh13.top^$important 392 | ||ruswib.top^$important 393 | ||chenxiangpuer.com^$important 394 | ||mujinhua.xyz^$important 395 | ||uchiha.ltd^$important 396 | ||ubtt.cn^$important 397 | ||4qs9g0z.wang^$important 398 | ||kkdownload.com^$important 399 | ||xiaoheizj.com^$important 400 | ||officeschool.top^$important 401 | ||youshitie.top^$important 402 | ||kthws1y.top^$important 403 | ||vfpzmg.cn^$important 404 | ||zkrjh91.top^$important 405 | ||bkyth95.top^$important 406 | ||nknzre.top^$important 407 | ||dtymzm.net^$important 408 | ||jiawutishi.top^$important 409 | ||uxiake.com^$important 410 | ||hunpan.top^$important 411 | ||moxiangpuer.xyz^$important 412 | ||beidema.xyz^$important 413 | ||whooyan.com^$important 414 | ||guobaocainice.wang^$important 415 | ||qitabeifen.top^$important 416 | ||rrnbqq.top^$important 417 | ||cyun.wang^$important 418 | ||axtieguanying.xyz^$important 419 | ||ynpuertea.xyz^$important 420 | ||obito.ltd^$important 421 | ||gotofangjia.top^$important 422 | ||shengxialusix.wang^$important 423 | ||wthjs9d.top^$important 424 | ||kuaizipen.com^$important 425 | ||chunpan.top^$important 426 | ||gsinob.top^$important 427 | ||vrek.cn^$important 428 | ||dtymzm.cn^$important 429 | ||toutiaobashi.com^$important 430 | ||axtieguanying.com^$important 431 | ||nxsanpaotai.xyz^$important 432 | ||zenmeban.wang^$important 433 | ||shzhanmeng.com^$important 434 | ||d21.wang^$important 435 | ||ftpfjqn.cn^$important 436 | ||dtymzm.com^$important 437 | ||yiranwupin.top^$important 438 | ||18g.wang^$important 439 | ||zkwph62.top^$important 440 | ||bestxiazai.com^$important 441 | ||gyun.wang^$important 442 | ||efep.cn^$important 443 | ||aiwurenji.xyz^$important 444 | ||dalibaotc.com^$important 445 | ||rybqvbf.cn^$important 446 | ||wkbjh72.top^$important 447 | ||koutuo.top^$important 448 | ||ffght.wang^$important 449 | ||yyfht.wang^$important 450 | ||kxiazai.com^$important 451 | ||umzf.cn^$important 452 | ||bghr4g.top^$important 453 | ||naruto.red^$important 454 | ||aikanshuxuexi.top^$important 455 | ||mengdequandui.wang^$important 456 | # 上海睦欣网络科技有限公司 457 | /(dtymx)|(muxin)|(mxage)/$important 458 | /mx\w{3,4}\./$important 459 | ||698283.vip^$important 460 | ||bbkb.wang^$important 461 | ||rgozhm.cn^$important 462 | ||angwo.top^$important 463 | ||peoplec.wang^$important 464 | ||mengche.top^$important 465 | ||onnpsg.top^$important 466 | ||muwrg.top^$important 467 | ||grth.xyz^$important 468 | ||bedbdh.cn^$important 469 | ||neiyao.top^$important 470 | ||jjnxnb8.top^$important 471 | ||fnafgv.top^$important 472 | ||neitan.top^$important 473 | ||f9296.xyz^$important 474 | ||zthns8d.top^$important 475 | ||jwfun.com^$important 476 | ||dxgnnb2.top^$important 477 | ||aerger.icu^$important 478 | ||maodu10.xyz^$important 479 | # 上海泊燃网络科技有限公司 480 | /shhboran/$important 481 | # 上海以兮网络科技有限公司 482 | /ssyixi/$important 483 | # 上海圆识网络科技有限公司 484 | /(xingfu)?zoulu/$important 485 | ||vqvefx.wang^$important 486 | ||vcder.top^$important 487 | ||xfzl.icu^$important 488 | ||ganjiu.top^$important 489 | # 上海巳月网络科技有限公司 490 | /(shsysy)|(shsiyue)|(qmct)/$important 491 | # 上海广乐网络科技有限公司 492 | ||hwt7wz.fun^$important 493 | ||kuaizip.com^$important 494 | ||bnpp.wang^$important 495 | ||glzip.com^$important 496 | ||hjhhhb7.top^$important 497 | ||xxwuka.wang^$important 498 | ||oorrzz.com^$important 499 | ||mmmudb3.top^$important 500 | ||wfvrz.top^$important 501 | ||glzip.cn^$important 502 | ||glzip.net^$important 503 | ||tt6jeb.fun^$important 504 | ||hjuuub5.top^$important 505 | ||ytnscr.wang^$important 506 | ||hwsj.xyz^$important 507 | ||kpzip.cn^$important 508 | ||kpzip.net^$important 509 | ||xxfwpb1.top^$important 510 | ||ssgf.fun^$important 511 | ||abckantu.com^$important 512 | ||toutiaobus.com^$important 513 | ||mtsyzm.fun^$important 514 | ||bbbz.wang^$important 515 | ||kpzip.com^$important 516 | ||kpzip.com.cn^$important 517 | ||txpaf.top^$important 518 | ||udashi.pro^$important 519 | ||ohb2zg.fun^$important 520 | ||c0zpmk.fun^$important 521 | ||ytprrb4.top^$important 522 | ||hhrspb7.top^$important 523 | ||hwhdym.icu^$important 524 | ||hjojob1.top^$important 525 | ||newgp.fun^$important 526 | ||hwcp.wang^$important 527 | ||btiiny.fun^$important 528 | ||hwdi.cn^$important 529 | # 上海青茑网络科技有限公司 530 | /shqingqing/ 531 | # 上海烟燃网络科技有限公司 532 | /shyanran/ 533 | # 上海展鸣教育科技有限公司 534 | ||duoduoqimeng.com 535 | # 武汉巨博优科技有限公司 536 | ||down123.cc^$important 537 | ||udsdown.xyz^$important 538 | ||udashi.com^$important 539 | ||down123.ren^$important 540 | ||uqd123.cn^$important 541 | ||360uqd.com^$important 542 | ||360uds.com^$important 543 | ||down123.me^$important 544 | ||uqd123.com^$important 545 | ||udsdown.com^$important 546 | # 上海合梦网络科技有限公司 547 | ||otjkjyp.top^$important 548 | ||njpaxao.top^$important 549 | ||enoofyu.top^$important 550 | ||wifipal.top^$important 551 | ||hemeng.ltd^$important 552 | ||zsrckcg.xyz^$important 553 | ||ybzvbvt.site^$important 554 | ||tyftgtu.xyz^$important 555 | ||zfrpith.cn^$important 556 | ||yiqiwitv.icu^$important 557 | ||uivntlf.icu^$important 558 | # 上海苋見网络科技有限公司 559 | /^\w{0,}(xianjian)|(zoulu)\w{0,}\.\w{2,6}$/$important 560 | ||mmzl.top^$important 561 | ||miaomiaozl.top^$important 562 | # 上海霁栎网络科技有限公司 563 | /^\w{0,}jiyue\w{0,}\.\w{2,6}$/$important 564 | # 上海桔柚网络科技有限公司 565 | /^\w{0,}juyou\w{0,}\.\w{2,6}$/$important 566 | ``` 567 | -------------------------------------------------------------------------------- /src/malware_related/duba.md: -------------------------------------------------------------------------------- 1 | # duba大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京金山数字娱乐科技有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备18107911号-green) 8 | + 成都金山数字娱乐科技有限公司 9 | + 珠海心游科技股份有限公司 10 | + 北京心游科技有限公司 11 | + 珠海弥天互娱技术有限公司 12 | + 珠海海鸟科技有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备18107911号-green) 13 | + 海南豹趣科技有限公司 14 | + 海南驰豹科技有限公司 15 | + 深圳图大师科技有限公司 16 | + 珠海名亭科技有限公司 17 | 18 | ## 域名收集 19 | 20 | ```txt 21 | # 北京金山数字娱乐科技有限公司 22 | kingsoft.com 23 | aidakg.com 24 | kingsoftai-fanyi.com 25 | aidatrans.com 26 | fatherai.com 27 | aidanote.com 28 | kingsoftai.com 29 | # 成都金山数字娱乐科技有限公司 30 | kinggate.net 31 | # 珠海心游科技股份有限公司 32 | xiaoyaojianghu.com 33 | ixinyou.cc 34 | ixinyou.cn 35 | ixinyou.com 36 | # 北京心游科技有限公司 37 | pmsdk.com 38 | pmsdk.com.cn 39 | pmsdk.cn 40 | # 珠海弥天互娱技术有限公司 41 | mitianvr.com 42 | # 珠海海鸟科技有限公司 43 | 91duba.com 44 | dfgjk.top 45 | kingpdf.cn 46 | jinshanapi.com 47 | duba.net 48 | drivergenius.com 49 | jinshantip.com 50 | zhhainiao.com 51 | duba.com 52 | jinshan3.cn 53 | kpdf.cn 54 | liebao.cn 55 | ijinshan.com 56 | pc120.com 57 | jgpdf.cn 58 | # 海南豹趣科技有限公司 59 | tipyuanqidesk.com 60 | baoqu.fun 61 | cheetahfun.com 62 | cheetahfun.net 63 | yuanqidesk.com 64 | cheetahfun.cn 65 | apiyuanqidesk.com 66 | keniu.com 67 | # 海南驰豹科技有限公司 68 | hnchibao.com 69 | # 深圳图大师科技有限公司 70 | tuku10.com 71 | # 珠海名亭科技有限公司 72 | ## 反病毒软件相关 73 | mingting.cn 74 | ``` 75 | 76 | ## 规则 77 | 78 | ### Adblock-style syntax 79 | 80 | ```txt 81 | # 北京金山数字娱乐科技有限公司 82 | /^.*aida(no|tr|kg).*\.com$/$important 83 | /^.*king(soft|gate).*\.$/$important 84 | ||aidakg.com^$important 85 | ||aidatrans.com^$important 86 | ||fatherai.com^$important 87 | ||aidanote.com^$important 88 | # 成都金山数字娱乐科技有限公司 89 | # 珠海心游科技股份有限公司 90 | /ixinyou/$important 91 | ||xiaoyaojianghu.com^$important 92 | # 北京心游科技有限公司 93 | /pmsdk\./$import 94 | # 珠海弥天互娱技术有限公司 95 | ||mitianvr.com^$important 96 | # 珠海海鸟科技有限公司 97 | /^.*jinshan.*\.(com|cn|top)$/$important 98 | ||91duba.com^$important 99 | ||dfgjk.top^$important 100 | ||kingpdf.cn^$important 101 | ||jinshanapi.com^$important 102 | ||duba.net^$important 103 | ||drivergenius.com^$important 104 | ||jinshantip.com^$important 105 | ||zhhainiao.com^$important 106 | ||duba.com^$important 107 | ||jinshan3.cn^$important 108 | ||kpdf.cn^$important 109 | ||liebao.cn^$important 110 | ||ijinshan.com^$important 111 | ||pc120.com^$important 112 | ||jgpdf.cn^$important 113 | # 海南豹趣科技有限公司 114 | ||tipyuanqidesk.com^$important 115 | ||baoqu.fun^$important 116 | ||cheetahfun.com^$important 117 | ||cheetahfun.net^$important 118 | ||yuanqidesk.com^$important 119 | ||cheetahfun.cn^$important 120 | ||apiyuanqidesk.com^$important 121 | ||keniu.com^$important 122 | # 海南驰豹科技有限公司 123 | ||hnchibao.com^$important 124 | # 深圳图大师科技有限公司 125 | ||tuku10.com^$important 126 | # 珠海名亭科技有限公司 127 | ## 反病毒软件相关 128 | ||mingting.cn^$important 129 | ``` 130 | -------------------------------------------------------------------------------- /src/malware_related/general.md: -------------------------------------------------------------------------------- 1 | # General 2 | 3 | + 北京奥格威网络科技有限公司(虚假软件) 4 | 5 | ```txt 6 | # 北京奥格威网络科技有限公司 7 | officedownload.cn 8 | ``` 9 | -------------------------------------------------------------------------------- /src/malware_related/leopard.md: -------------------------------------------------------------------------------- 1 | # 猎豹大家族 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京猎豹网络科技有限公司 ![ICP](https://img.shields.io/badge/ICP-京ICP备12038800号-green) 8 | + 海南猎豹网络科技有限公司 9 | + 北京安兔兔科技有限公司 10 | + 北京猎鹰安全科技有限公司 11 | + 南京超吉科技有限公司 12 | + 上海智向信息科技有限公司 13 | + 上海光爪网络科技有限公司 14 | + 海南雍淼网络科技有限公司 15 | + 北京安趣科技股份有限公司 16 | + 南京擎盾信息科技有限公司 17 | 18 | ## 域名收集 19 | 20 | ```txt 21 | # 北京猎豹网络科技有限公司 22 | cmcmcdn.com 23 | ileopard.com 24 | baofoods.com 25 | kshwtj.com 26 | ksmobile.net 27 | cmcmiot.com 28 | 3drating.com 29 | dachufood.com 30 | cheetahmobile.com 31 | cmcm.com 32 | cheetahgames.com 33 | baochef.com 34 | quandduo.com 35 | baodachu.cn 36 | ksmobile.com 37 | # 海南猎豹网络科技有限公司 38 | cheetahmobile.cn 39 | lbmobi.cn 40 | # 北京安兔兔科技有限公司 41 | qudongtianshi.com 42 | # 北京猎鹰安全科技有限公司 43 | timeon.com.cn 44 | ejinshan.net 45 | # 南京超吉科技有限公司 46 | 1xkq.com 47 | # 上海智向信息科技有限公司 48 | beacool.com 49 | # 上海光爪网络科技有限公司 50 | lightpaw.cn 51 | # 海南雍淼网络科技有限公司 52 | playslg.com 53 | # 北京安趣科技股份有限公司 54 | anqu.com 55 | anqu.cn 56 | # 南京擎盾信息科技有限公司 57 | zhifa-ai.com 58 | yu-qing.com 59 | xiaofa-ai.cn 60 | shilvlaw.cn 61 | fasoso.cn 62 | sense.law 63 | ai-risk.cn 64 | aegis-data.cn 65 | fasoso.net 66 | xiaofa.cc 67 | seeklawyer.cn 68 | aegis-info.com 69 | xiaofa-app.cn 70 | ``` 71 | 72 | ## 规则 73 | 74 | ### Adblock-style syntax 75 | 76 | ```txt 77 | # 北京猎豹网络科技有限公司 78 | ||cmcmcdn.com^$important 79 | ||ileopard.com^$important 80 | ||baofoods.com^$important 81 | ||kshwtj.com^$important 82 | ||ksmobile.net^$important 83 | ||cmcmiot.com^$important 84 | ||3drating.com^$important 85 | ||dachufood.com^$important 86 | ||cheetahmobile.com^$important 87 | ||cmcm.com^$important 88 | ||cheetahgames.com^$important 89 | ||baochef.com^$important 90 | ||quandduo.com^$important 91 | ||baodachu.cn^$important 92 | ||ksmobile.com^$important 93 | # 海南猎豹网络科技有限公司 94 | ||cheetahmobile.cn^$important 95 | ||lbmobi.cn^$important 96 | # 北京安兔兔科技有限公司 97 | ||qudongtianshi.com^$important 98 | # 北京猎鹰安全科技有限公司 99 | ||timeon.com.cn^$important 100 | ||ejinshan.net^$important 101 | # 南京超吉科技有限公司 102 | ||1xkq.com^$important 103 | # 上海智向信息科技有限公司 104 | ||beacool.com^$important 105 | # 上海光爪网络科技有限公司 106 | ||lightpaw.cn^$important 107 | # 海南雍淼网络科技有限公司 108 | ||playslg.com^$important 109 | # 北京安趣科技股份有限公司 110 | ||anqu.com^$important 111 | ||anqu.cn^$important 112 | # 南京擎盾信息科技有限公司 113 | ||zhifa-ai.com^$important 114 | ||yu-qing.com^$important 115 | ||xiaofa-ai.cn^$important 116 | ||shilvlaw.cn^$important 117 | ||fasoso.cn^$important 118 | ||sense.law^$important 119 | ||ai-risk.cn^$important 120 | ||aegis-data.cn^$important 121 | ||fasoso.net^$important 122 | ||xiaofa.cc^$important 123 | ||seeklawyer.cn^$important 124 | ||aegis-info.com^$important 125 | ||xiaofa-app.cn^$important 126 | ``` 127 | -------------------------------------------------------------------------------- /src/p2p_downloader_related/general.md: -------------------------------------------------------------------------------- 1 | # 各类下载站 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 域名收集 6 | ```txt 7 | pc6a.com 8 | yangmao.info 9 | ``` 10 | -------------------------------------------------------------------------------- /src/p2p_downloader_related/guangzhou_fengqi.md: -------------------------------------------------------------------------------- 1 | 2 | # 广东风起科技有限公司 3 | 4 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 5 | 6 | ## 域名收集 7 | 8 | ```txt 9 | # 广东风起科技有限公司 10 | fqydread.com 11 | fqwzdown.com 12 | gdfqrjxz.com 13 | gdfqdown.com 14 | ydfqload.com 15 | fqydrjxiazai.com 16 | fqwztf.com 17 | ydfqdown.com 18 | ydfqsoftdown.com 19 | gdfqware.com 20 | ydsoftdown.com 21 | gdfqyun.com 22 | ydxiazai.com 23 | gdfqkj.com 24 | ``` 25 | -------------------------------------------------------------------------------- /src/p2p_downloader_related/hefei_tingfengyu.md: -------------------------------------------------------------------------------- 1 | 2 | # 合肥听风雨网络科技有限公司 3 | 4 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 5 | 6 | ## 域名收集 7 | 8 | ```txt 9 | # 合肥听风雨网络科技有限公司 10 | tfyxz.com 11 | fengbf.cn 12 | ``` 13 | -------------------------------------------------------------------------------- /src/privacy_related/51la.md: -------------------------------------------------------------------------------- 1 | # 个推 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 广东万丈金数信息技术股份有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备12039868号-green) 8 | + 广州巍峨信息科技有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备13069663号-green) 9 | + 广州有啦网络科技有限公司 ![ICP](https://img.shields.io/badge/ICP-粤ICP备17055553号-green) 10 | 11 | ## 域名收集 12 | 13 | ```txt 14 | # 广东万丈金数信息技术股份有限公司 15 | aicheren.com 16 | infinitesend.com 17 | e-dmp.com 18 | vcrm.com.cn 19 | cf.cn 20 | kxz.com 21 | cbclub.com.cn 22 | 3361.com 23 | om.com.cn 24 | pv.com.cn 25 | zaobang.com 26 | yolish.net 27 | kxz.cn 28 | infinite.net.cn 29 | shijiala.com 30 | vrm.cn 31 | huikefu.com 32 | yolitv.cn 33 | yolish.cn 34 | yo.com.cn 35 | # 广州巍峨信息科技有限公司 36 | dutan.com 37 | weirenfumu.com 38 | weiekeji.com 39 | yi114.com 40 | quan.mx 41 | dangfumu.com 42 | ruiche.com 43 | vrm2020.cn 44 | # 广州有啦网络科技有限公司 45 | cfinfo.net 46 | useredu.com 47 | bxuser.net 48 | ylyzn.cn 49 | 51r.co 50 | 51u.co 51 | 51z.co 52 | bankuser.net 53 | sentcloud.net 54 | gz51la.com 55 | shsent.net 56 | ulyzn.com 57 | youlacloud.com 58 | youlaai.cn 59 | youlaai.com 60 | 51j.co 61 | 51h.co 62 | 51.la 63 | bankmsg.com 64 | bxpost.net 65 | cfuser.net 66 | publishmail.net 67 | ulyzn.cn 68 | youlayun.cn 69 | 51l.co 70 | 51w.co 71 | 72 | ``` 73 | 74 | ## 规则 75 | 76 | ### Adblock-style syntax 77 | 78 | ```txt 79 | # 广东万丈金数信息技术股份有限公司 80 | ||aicheren.com^$important 81 | ||infinitesend.com^$important 82 | ||e-dmp.com^$important 83 | ||vcrm.com.cn^$important 84 | ||cf.cn^$important 85 | ||kxz.com^$important 86 | ||cbclub.com.cn^$important 87 | ||3361.com^$important 88 | ||om.com.cn^$important 89 | ||pv.com.cn^$important 90 | ||zaobang.com^$important 91 | ||yolish.net^$important 92 | ||kxz.cn^$important 93 | ||infinite.net.cn^$important 94 | ||shijiala.com^$important 95 | ||vrm.cn^$important 96 | ||huikefu.com^$important 97 | ||yolitv.cn^$important 98 | ||yolish.cn^$important 99 | ||yo.com.cn^$important 100 | # 广州巍峨信息科技有限公司 101 | ||dutan.com^$important 102 | ||weirenfumu.com^$important 103 | ||weiekeji.com^$important 104 | ||yi114.com^$important 105 | ||quan.mx^$important 106 | ||dangfumu.com^$important 107 | ||ruiche.com^$important 108 | ||vrm2020.cn^$important 109 | # 广州有啦网络科技有限公司 110 | /51\w?\./$important 111 | /youla(cloud|yun|ai)/$important 112 | ||cfinfo.net^$important 113 | ||useredu.com^$important 114 | ||bxuser.net^$important 115 | ||ylyzn.cn^$important 116 | ||bankuser.net^$important 117 | ||sentcloud.net^$important 118 | ||gz51la.com^$important 119 | ||shsent.net^$important 120 | ||ulyzn.com^$important 121 | ||bankmsg.com^$important 122 | ||bxpost.net^$important 123 | ||cfuser.net^$important 124 | ||publishmail.net^$important 125 | ||ulyzn.cn^$important 126 | ``` 127 | -------------------------------------------------------------------------------- /src/privacy_related/getui.md: -------------------------------------------------------------------------------- 1 | # 个推 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 每日互动股份有限公司 ![ICP](https://img.shields.io/badge/ICP-浙ICP备14019898号-green) 8 | + 上海蓝豹数据科技有限公司 9 | + 深圳市爱易讯数据有限公司 10 | + 浙江有数数字科技有限公司 11 | + 浙江有数数智科技有限公司 12 | + ... 13 | 14 | ## 域名收集 15 | 16 | ```txt 17 | # 每日互动股份有限公司 18 | gepush.com 19 | applk.cn 20 | igehuo.com 21 | gepush.com 22 | igetui.com 23 | acloud.com 24 | pusure.com 25 | lmmindex.com 26 | cooltui.com 27 | viyouhui.com 28 | abeacon.com 29 | getui.com 30 | fangyi.cn 31 | huadan.in 32 | geatmap.com 33 | geindex.com 34 | abeacon.cn 35 | getui.net 36 | ge.cn 37 | igexin.com 38 | 12322app.com 39 | getui.cn 40 | baywest.ac 41 | # 上海蓝豹数据科技有限公司 42 | longbow.com 43 | # 深圳市爱易讯数据有限公司 44 | ieasycon.com 45 | ottindexs.com 46 | ott-indexs.com 47 | ottindex.com 48 | ott-index.com 49 | vinsondata.com 50 | ## 浙江有数数字科技有限公司 51 | youshu.com.cn 52 | hsjdata.com 53 | youhaodata.com 54 | guanmingpian.com 55 | ## 浙江有数数智科技有限公司 56 | ccbydt.com 57 | yscredit.com 58 | 59 | ``` 60 | 61 | ## 规则 62 | 63 | ### Adblock-style syntax 64 | 65 | ```txt 66 | # 每日互动股份有限公司 67 | ||gepush.com^$important 68 | ||applk.cn^$important 69 | ||igehuo.com^$important 70 | ||gepush.com^$important 71 | ||igetui.com^$important 72 | ||acloud.com^$important 73 | ||pusure.com^$important 74 | ||lmmindex.com^$important 75 | ||cooltui.com^$important 76 | ||viyouhui.com^$important 77 | ||abeacon.com^$important 78 | ||getui.com^$important 79 | ||fangyi.cn^$important 80 | ||huadan.in^$important 81 | ||geatmap.com^$important 82 | ||geindex.com^$important 83 | ||abeacon.cn^$important 84 | ||getui.net^$important 85 | ||ge.cn^$important 86 | ||igexin.com^$important 87 | ||12322app.com^$important 88 | ||getui.cn^$important 89 | ||baywest.ac^$important 90 | # 上海蓝豹数据科技有限公司 91 | ||longbow.com^$important 92 | # 深圳市爱易讯数据有限公司 93 | ||ieasycon.com^$important 94 | ||ottindexs.com^$important 95 | ||ott-indexs.com^$important 96 | ||ottindex.com^$important 97 | ||ott-index.com^$important 98 | ||vinsondata.com^$important 99 | ## 浙江有数数字科技有限公司 100 | ||youshu.com.cn^$important 101 | ||hsjdata.com^$important 102 | ||youhaodata.com^$important 103 | ||guanmingpian.com^$important 104 | ## 浙江有数数智科技有限公司 105 | ||ccbydt.com^$important 106 | ||yscredit.com^$important 107 | ``` 108 | -------------------------------------------------------------------------------- /src/privacy_related/nanjing_qingdun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxw620/AdGuard-Rules/04e6de9c2eaf23f755badb5a450976a18b51398a/src/privacy_related/nanjing_qingdun.md -------------------------------------------------------------------------------- /src/privacy_related/pconline.md: -------------------------------------------------------------------------------- 1 | # 移动统计: 魔方 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 广东太平洋互联网信息服务有限公司 ![ICP](https://img.shields.io/badge/ICP-粤B2--20040647号-green) 8 | 9 | ## 域名收集 10 | -------------------------------------------------------------------------------- /src/privacy_related/umeng.md: -------------------------------------------------------------------------------- 1 | # 友盟 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 北京锐讯灵通科技有限公司 ![ICP](https://img.shields.io/badge/ICP-京ICP备11021163号-green) 8 | + 股东: 浙江淘宝网络有限公司 9 | + 投资: 杭州好风科技有限公司 ![ICP](https://img.shields.io/badge/ICP-浙ICP备2022031396号-green) 10 | + 友盟同欣(北京)科技有限公司 11 | 12 | 13 | ## 域名收集 14 | 15 | ```txt 16 | # 北京锐讯灵通科技有限公司 17 | umeng.com 18 | um1.cn 19 | umsns.com 20 | um0.cn 21 | wrating.com 22 | umengcloud.com 23 | dratio.com 24 | whalecloud.com 25 | uyunad.com 26 | umtrack2.com 27 | puata.info 28 | eshiqi.com 29 | umtrack0.com 30 | umv0.com 31 | umv5.com 32 | umtrack1.com 33 | mobmore.com 34 | umtrack.com 35 | # 杭州好风科技有限公司 36 | d.design 37 | u.design 38 | duidui.design 39 | ``` 40 | 41 | ## 规则 42 | 43 | ### Adblock-style syntax 44 | 45 | ```txt 46 | # 北京锐讯灵通科技有限公司 47 | ||wrating.com^ 48 | ||puata.info^ 49 | ||dratio.com^ 50 | ||uyunad.com^ 51 | ||eshiqi.com^ 52 | ||mobmore.com^ 53 | /^.*umeng.*$/ 54 | /^.*\.?umv?(\d){0,}\..*$/$important 55 | /^.*\.?umtrack(\d){0,}\..*$/$important 56 | # 杭州好风科技有限公司 57 | ||d.design 58 | ||u.design 59 | ||duidui.design 60 | # 友盟同欣(北京)科技有限公司 61 | /cnzz\./ 62 | shujupie.com 63 | ``` 64 | -------------------------------------------------------------------------------- /src/privacy_related/uni-AD.md: -------------------------------------------------------------------------------- 1 | # uni-AD 2 | 3 | ![IO](https://img.shields.io/badge/Last%20Updated-20230225-green) 4 | 5 | ## 公司主体关系 6 | 7 | + 数字天堂(北京)网络技术有限公司 ![ICP](https://img.shields.io/badge/ICP-京ICP备12046007号-green) 8 | 9 | ## 域名收集 10 | 11 | ```txt 12 | # 数字天堂(北京)网络技术有限公司 13 | dcad01.com 14 | dcloud.net.cn 15 | dcad01.cn 16 | mhtml5.org 17 | mobile3w.org 18 | m3w.cn 19 | liuyingyong.cn 20 | ``` 21 | 22 | ## 规则 23 | 24 | ### Adblock-style syntax 25 | 26 | ```txt 27 | # 数字天堂(北京)网络技术有限公司 28 | /dcad\d\d/ 29 | ||dcloud.net.cn^$important 30 | ||mhtml5.org^$important 31 | ||mobile3w.org^$important 32 | ||m3w.cn^$important 33 | ||liuyingyong.cn^$important 34 | ``` -------------------------------------------------------------------------------- /src/spam/spam.md: -------------------------------------------------------------------------------- 1 | # 北京深演智能科技股份有限公司 2 | 3 | ```txt 4 | ideepzero.com 5 | rtbinchina.com 6 | dspinchina.com 7 | deepzero.com 8 | openap.cn 9 | audiencechina.com 10 | fangkezhaohui.com 11 | programmaticbuy.cn 12 | userback.cn 13 | audiencetargeting.cn 14 | folo8.com 15 | pinyouad.com 16 | ipinyou.com 17 | shishijingjia.com 18 | programmaticbuy.com 19 | folo8.cn 20 | audiencetargeting.com.cn 21 | userback.com.cn 22 | jiceyun.com 23 | deepzero.com.cn 24 | chinadsp.com.cn 25 | chinartb.cn 26 | userprofile.cn 27 | folo8.com.cn 28 | p0y.cn 29 | ipinyou.com.cn 30 | 31 | ``` 32 | -------------------------------------------------------------------------------- /wjx-AdGuard.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Title: AdGuard拦截补充规则 3 | ! Update Time: 2022-4-30 23:15:00 4 | ! Update Details 5 | !! -------------------- 6 | !! 阶段更新 7 | !! -------------------- 8 | ! Notes 9 | !! -------------------- 10 | !! 腾讯,阿里旗下及哔哩哔哩软件都有httpdns,单纯DNS拦截是无效的。但是不能拦截httpdns,否则会影响程序功能 11 | !! 似乎强制走httpdns了 12 | !! 点名批评bilibili 13 | !! 微信不信任证书导致无法拦截非常麻烦,目前没有解决方案 14 | !! AdGuard客户端不会根据cname拦截好像,所以下面的通杀不加important 15 | !! 这个规则不兼容AdGuardHome,注意。只支持AdGuard客户端。 16 | !! -------------------- 17 | ! [百度] 18 | /.*baidu*sugrec\?.*/$important 19 | 20 | ! [DNS]-------------------- 21 | !! [bilibili] 22 | 221.179.155.*$network 23 | !221.179.155.209$network 24 | !221.179.155.193$network 25 | !! [public] 26 | 114.114.114.114$network 27 | 198.18.53.53$network 28 | 119.29.29.29$network 29 | [2402:4e00::]$network 30 | 223.5.5.5$network 31 | 223.6.6.6$network 32 | [2400:3200::1]$network 33 | [2400:3200:baba::1]$network 34 | [2409:8000:2000:0:*::1]$network 35 | [2409:8000:2000:0:370::1]$network 36 | [2409:8000:2000:0:270::1]$network 37 | 1.2.4.8$network 38 | 210.2.4.8$network 39 | [2001:dc7:1000::1]$network 40 | 117.50.10.10$network 41 | 117.50.20.20$network 42 | 101.6.6.6$network 43 | [2001:da8::666]$network 44 | 180.76.76.76$network 45 | [2400:da00::6666]$network 46 | 221.179.38.7$network 47 | 120.196.165.7$network 48 | !! [Ali HTTPDNS] 49 | 203.107.1.1/24$network 50 | ! [DNS END]---------------- 51 | 52 | ! 以下包含HTTPDNS拦截 53 | !! [bilibili] 54 | !!! 发现哔哩哔哩尝试打洞,拦截之 55 | 239.255.255.250$network 56 | ||*/*upnpdev.xml$important 57 | 58 | 59 | ! [阿里] 60 | /collect\.alipay\.com/ 61 | /alipaylog\.com/ 62 | /crm-eve\.b2b\.alibaba-inc\.com/ 63 | /click\.alibaba\.com/ 64 | /hydra\.alibaba\.com/ 65 | /marketing\.alibaba\.com/ 66 | /abtest\.alibaba\.com/ 67 | /dmtracking\.alibaba\.com/ 68 | /dmtracking2\.alibaba\.com/ 69 | /p4psearch\.china\.alibaba\.com/ 70 | /fourier\.alibaba\.com/ 71 | /alimama\.alicdn\.com/ 72 | /alimama\.cn/ 73 | /alimama\.com/ 74 | /alimama\.link/ 75 | @@||track.aliexpress.com^ 76 | 77 | ! [bilibili] 78 | !! 感谢https://github.com/SocialSisterYi/bilibili-API-collect项目 79 | !!! 客户端地址获取拦截(配合关闭定位权限食用) 80 | ||*/x/web-interface/zone*$important 81 | ||api.bilibili.com/x/v2/dm/ad*$important 82 | ||*hdslb*report*$important 83 | ||*hdslb*cm*$important 84 | ||dataflow.biliapi.com^$important 85 | ||web-player-tracker.biliapi.net^$important 86 | ||live-trace.bilibili.com^$important 87 | ||miniapp.bilibili.com^$important 88 | ||cm.bilibili.com^$important 89 | ||biligame.net^$important 90 | ||broadcast.chat.bilibili.com$important 91 | ||proxy-tf-all-ws.bilivideo.com 92 | /.*xy_ip*/ 93 | /^.*\/.*\/resolve\?host=.*\.biligame\.net$/$important 94 | /^.*\/.*\/resolve\?host=dataflow\.biliapi\.com$/$important 95 | /^.*\/.*\/resolve\?host=live-trace\.bilibili\.com$/$important 96 | /^.*\/.*\/resolve\?host=miniapp\.bilibili\.com$/$important 97 | /^.*\/.*\/resolve\?host=web-player-tracker\.biliapi\.com$/$important 98 | /^.*\/.*\/resolve\?host=cm\.bilibili\.com$/$important 99 | /^.*\/.*\/resolve\?host=broadcast\.chat\.bilibili\.com$/$important 100 | 101 | 102 | ! [wechat] 103 | 36.152.4.32$network 104 | 105 | ! [PDD] 106 | !! 拼多多在后台疯狂上传数据,不知道在干什么。来个人抓个包看看 107 | ||*/*titan*^$important 108 | !! PDD跟踪ID? 109 | ||*/d?id=*&dn=* 110 | ||*/d?dn=*&id=* 111 | 112 | ! [HUAWEI] 113 | ||*wap_ads*^$important 114 | ||m.weathercn.com/newslist*$important 115 | ||static.weathercn.com/*/static/js/news-list.*$important 116 | ||m.weathercn.com/flowlink*$important 117 | ||m.weathercn.com/indexesAjax.do*$important 118 | ||*weathercn*newslist*$important 119 | ||*weathercn*qukan*$important 120 | ||*weathercn*swiper*$important 121 | ||*httpdns*huawei*$important 122 | ||analyse.weather.com.cn^ 123 | ||ctc.weather.com.cn^ 124 | ||e.weather.com.cn^ 125 | ||mc.weather.com.cn^ 126 | ||poster.weather.com.cn^ 127 | ||swc.weather.com.cn^ 128 | ||baidu1.weather.com.cn^ 129 | ||bima.weathercn.com^ 130 | ||cbdm.weathercn.com^ 131 | ||log-stats.weathercn.com^ 132 | ||zgzxs.weathercn.com^ 133 | ||aima.weathercn.com^ 134 | ||mbd.weathercn.com^ 135 | ||mbs.weathercn.com^ 136 | 137 | 138 | !! [appsflyer ip] 139 | !! [https://support.appsflyer.com/hc/zh-cn/articles/207447093-AppsFlyer-IPs-for-Whitelisting] 140 | 45.92.116.0/22$network 141 | 194.28.46.0/23$network 142 | 143 | !! [其他] 144 | 111.177.11.118$network 145 | -------------------------------------------------------------------------------- /wjx-explorer-add.txt: -------------------------------------------------------------------------------- 1 | [AdGuard] 2 | ! Title: 浏览器补充规则 3 | ! Update Time: 2022-02-15 21:50:00 4 | ! Ver.: 1.1.3 5 | ! Update Details 6 | !! -------------------- 7 | !! 更新若干 8 | !! -------------------- 9 | ! Notes 10 | !! -------------------- 11 | !! 本规则包含了浏览器规则,适合ADB,AdGuard,ublock使用 12 | !! -------------------- 13 | 14 | !! -------------------- 15 | ! [页面规则] 16 | !! 以下为url参数拦截 17 | ||*$removeparam=utm_division 18 | ||*$removeparam=/^utm_.*/ 19 | !! [Baidu] 20 | ||*baidu*$removeparam=/^r.*$/ 21 | ||*baidu*$removeparam=/from/ 22 | ||*baidu*$removeparam=/usm/ 23 | ||*baidu*$removeparam=/ref/ 24 | ||*baidu*$removeparam=/ala/ 25 | !||www.baidu.com^$removeparam=/id/ 26 | ||*baidu*$removeparam=/(b|p)s=/ 27 | 28 | ||*baidu*$removeparam=inputT 29 | ||*baidu*$removeparam=aptstamp 30 | ||*baidu*$removeparam=oq 31 | ||*baidu*$removeparam=sa 32 | ||*baidu*$removeparam=tn 33 | @@||image.baidu.com$removeparam=tn 34 | @@||baijiahao.baidu.com$removeparam=id 35 | ||*baidu*$removeparam=dyTabStr 36 | ||*baidu*$removeparam=euri 37 | ||*baidu*$removeparam=lm 38 | ||*baidu*$removeparam=ct 39 | ||*baidu*$removeparam=cl 40 | ||*baidu*$removeparam=nc 41 | ||*baidu*$removeparam=wrsv_spt 42 | ||*baidu*$removeparam=pn 43 | ||*baidu*$removeparam=s 44 | ||*baidu*$removeparam=fr 45 | ||*baidu*$removeparam=top 46 | ||*baidu*$removeparam=total_res_num 47 | ||*baidu*$removeparam=frorder 48 | ||*baidu*$removeparam=pos 49 | ||*baidu*$removeparam=wfr 50 | ||*baidu*$removeparam=for 51 | 52 | ||*baidu*$removeparam=f 53 | ||*baidu*$removeparam=ch 54 | ||*baidu*$removeparam=bar 55 | ||*baidu*$removeparam=fixfr 56 | !! [Google] 57 | $removeparam=iflsig 58 | $removeparam=ved 59 | $removeparam=uact 60 | $removeparam=sclient 61 | $removeparam=gs_ssp 62 | 63 | !! [bing] 64 | ||*bing*$removeparam=form 65 | ||*bing*$removeparam=FORM 66 | ||*bing*$removeparam=sp 67 | ||*bing*$removeparam=pq 68 | ||*bing*$removeparam=sc 69 | ||*bing*$removeparam=qs 70 | ||*bing*$removeparam=sk 71 | ||*bing*$removeparam=cvid 72 | 73 | !! [CSDN] 74 | ||csdn.net$removeparam=spm 75 | ||csdn.net$removeparam=depth_1-utm_source 76 | !! -------------------- 77 | !! 以下为广告拦截 78 | 79 | ! 2022-01-26 https://www.baidu.com 80 | www.baidu.com##*.ask-doctor-card 81 | 82 | ! 2022-01-28 https://www.baidu.com 83 | www.baidu.com##.right-law_1njwm 84 | 85 | ! 2022-02-15 https://wenku.baidu.com 86 | ||wenku.baidu.com/goods/interface/getvipgoods* 87 | ||wenku.baidu.com/coupon/interface/getvoucherdrawinfo* 88 | ||wenku.baidu.com/xpage/form/getform* 89 | ||wenku.baidu.com/rec/interface/getreccourses* 90 | ||wenku.baidu.com/ndwkasp* 91 | ||wenku.baidu.com/wza* 92 | ||wenku.baidu.com/gsearch/rec/pctoplist* 93 | wenku.baidu.com##*.fixed-activity-bar 94 | wenku.baidu.com##*.vip-privilege-card-wrap 95 | wenku.baidu.com###app > .lazy-load 96 | wenku.baidu.com##.comment-wrapper 97 | wenku.baidu.com##.vip-activity-wrap-new 98 | wenku.baidu.com##.vip-layer-inner 99 | wenku.baidu.com##.pure-tool-btn.test-btn.tool-btn.full-screen 100 | -------------------------------------------------------------------------------- /wjx-ublock.txt: -------------------------------------------------------------------------------- 1 | { 2 | "timeStamp": 1642833560866, 3 | "version": "1.40.8", 4 | "userSettings": { 5 | "advancedUserEnabled": true, 6 | "cloudStorageEnabled": true, 7 | "externalLists": "https://anti-ad.net/adguard.txt\nhttps://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuard.txt\nhttps://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuardHome-strict.txt", 8 | "importedLists": [ 9 | "https://anti-ad.net/adguard.txt", 10 | "https://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuard.txt", 11 | "https://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuardHome-strict.txt" 12 | ], 13 | "popupPanelSections": 31 14 | }, 15 | "selectedFilterLists": [ 16 | "user-filters", 17 | "ublock-filters", 18 | "ublock-badware", 19 | "ublock-privacy", 20 | "ublock-abuse", 21 | "ublock-unbreak", 22 | "adguard-generic", 23 | "adguard-mobile", 24 | "easylist", 25 | "adguard-spyware", 26 | "adguard-spyware-url", 27 | "block-lan", 28 | "easyprivacy", 29 | "urlhaus-1", 30 | "curben-phishing", 31 | "curben-pup", 32 | "adguard-annoyance", 33 | "adguard-social", 34 | "fanboy-thirdparty_social", 35 | "fanboy-cookiemonster", 36 | "fanboy-annoyance", 37 | "fanboy-social", 38 | "ublock-annoyances", 39 | "dpollock-0", 40 | "mvps-0", 41 | "plowe-0", 42 | "CHN-0", 43 | "https://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuard.txt", 44 | "https://raw.githubusercontent.com/cxw620/AdGuard-Rules/main/wjx-AdGuardHome-strict.txt", 45 | "https://anti-ad.net/adguard.txt" 46 | ], 47 | "hiddenSettings": {}, 48 | "whitelist": [ 49 | "about-scheme", 50 | "chrome-extension-scheme", 51 | "chrome-scheme", 52 | "edge-scheme", 53 | "moz-extension-scheme", 54 | "opera-scheme", 55 | "portal.office.com", 56 | "vivaldi-scheme", 57 | "wyciwyg-scheme" 58 | ], 59 | "dynamicFilteringString": "behind-the-scene * * noop\nbehind-the-scene * inline-script noop\nbehind-the-scene * 1p-script noop\nbehind-the-scene * 3p-script noop\nbehind-the-scene * 3p-frame noop\nbehind-the-scene * image noop\nbehind-the-scene * 3p noop", 60 | "urlFilteringString": "", 61 | "hostnameSwitchesString": "no-large-media: behind-the-scene false\nno-csp-reports: * true\nno-strict-blocking: passport.biligame.com true", 62 | "userFilters": "! Title: 浏览器补充规则\n! Update Time: 2022-01-21 23:39:00\n! Ver.: 1.0.9\n! Update Details\n!! --------------------\n!! 首次更新\n!! --------------------\n! Notes\n!! --------------------\n!! 本规则包含了浏览器规则,适合ADB,AdGuard,ublock使用\n!! --------------------\n\n!! --------------------\n! [页面规则]\n!! 以下为url参数拦截\n!! [Baidu]\n||*baidu*$removeparam=rsv_sug1\n||*baidu*$removeparam=rsv_sug2\n||*baidu*$removeparam=rsv_sug3\n||*baidu*$removeparam=rsv_sug4\n||*baidu*$removeparam=rsv_sug5\n||*baidu*$removeparam=rsv_cq\n||*baidu*$removeparam=rsv_dl\n||*baidu*$removeparam=rsv_bp\n||*baidu*$removeparam=rsv_pq\n||*baidu*$removeparam=rsv_enter\n||*baidu*$removeparam=rsv_jmp\n||*baidu*$removeparam=rsv_btype\n||*baidu*$removeparam=rqlang\n||*baidu*$removeparam=oq\n||*baidu*$removeparam=rqid\n||*baidu*$removeparam=rsf\n||*baidu*$removeparam=sa\n||*baidu*$removeparam=bs\n||*baidu*$removeparam=usm\n||*baidu*$removeparam=tn\n||*baidu*$removeparam=dyTabStr\n||*baidu*$removeparam=euri\n||*baidu*$removeparam=lm\n||*baidu*$removeparam=ps\n||*baidu*$removeparam=ct\n||*baidu*$removeparam=cl\n||*baidu*$removeparam=nc\n||*baidu*$removeparam=wrsv_spt\n@@||image.baidu.com$removeparam=tn\n||*baidu*$removeparam=pn\n||*baidu*$removeparam=rn\n||*baidu*$removeparam=rtt\n||*baidu*$removeparam=bsst\n||*baidu*$removeparam=s\n||*baidu*$removeparam=fr\n||*baidu*$removeparam=inputT\n||*baidu*$removeparam=aptstamp\n||*baidu*$removeparam=top\n||*baidu*$removeparam=total_res_num\n||*baidu*$removeparam=frsrcid\n||*baidu*$removeparam=frorder\n||*baidu*$removeparam=lid\n||*baidu*$removeparam=sf_ref\n||*baidu*$removeparam=pcEqid\n||*baidu*$removeparam=fromtitle\n||*baidu*$removeparam=fromid\n||*baidu*$removeparam=ala\n||*baidu*$removeparam=alatpl\n||*baidu*$removeparam=pos\n||*baidu*$removeparam=wfr\n||*baidu*$removeparam=for\n!! [Google]\n$removeparam=iflsig\n$removeparam=ved\n$removeparam=uact\n$removeparam=sclient\n!! --------------------\n!! 以下为广告拦截\n" 63 | } 64 | --------------------------------------------------------------------------------