@browserless.io/browserless 2.25.0-beta-2 → 2.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +43 -3
- package/README.md +4 -5
- package/build/browserless.js +3 -1
- package/build/browsers/browsers.cdp.d.ts +3 -0
- package/build/browsers/browsers.cdp.js +4 -1
- package/build/browsers/browsers.playwright.d.ts +4 -0
- package/build/browsers/browsers.playwright.js +11 -2
- package/build/browsers/index.js +4 -3
- package/build/http.d.ts +9 -0
- package/build/http.js +9 -0
- package/build/routes/chrome/http/content.post.body.json +8 -8
- package/build/routes/chrome/http/pdf.post.body.json +8 -8
- package/build/routes/chrome/http/scrape.post.body.json +8 -8
- package/build/routes/chrome/http/screenshot.post.body.json +8 -8
- package/build/routes/chrome/tests/kill-sessions.spec.js +1 -1
- package/build/routes/chromium/http/content.post.body.json +8 -8
- package/build/routes/chromium/http/pdf.post.body.json +8 -8
- package/build/routes/chromium/http/scrape.post.body.json +8 -8
- package/build/routes/chromium/http/screenshot.post.body.json +8 -8
- package/build/routes/chromium/tests/kill-sessions.spec.js +1 -1
- package/build/routes/edge/http/content.post.body.json +579 -0
- package/build/routes/edge/http/content.post.d.ts +8 -0
- package/build/routes/edge/http/content.post.js +7 -0
- package/build/routes/edge/http/content.post.query.json +183 -0
- package/build/routes/edge/http/content.post.response.json +5 -0
- package/build/routes/edge/http/download.post.body.json +32 -0
- package/build/routes/edge/http/download.post.d.ts +8 -0
- package/build/routes/edge/http/download.post.js +7 -0
- package/build/routes/edge/http/download.post.query.json +120 -0
- package/build/routes/edge/http/download.post.response.json +4 -0
- package/build/routes/edge/http/function.post.body.json +32 -0
- package/build/routes/edge/http/function.post.d.ts +8 -0
- package/build/routes/edge/http/function.post.js +7 -0
- package/build/routes/edge/http/function.post.query.json +120 -0
- package/build/routes/edge/http/function.post.response.json +4 -0
- package/build/routes/edge/http/json-list.get.d.ts +5 -0
- package/build/routes/edge/http/json-list.get.js +5 -0
- package/build/routes/edge/http/json-list.get.response.json +52 -0
- package/build/routes/edge/http/json-new.put.d.ts +5 -0
- package/build/routes/edge/http/json-new.put.js +5 -0
- package/build/routes/edge/http/json-new.put.response.json +44 -0
- package/build/routes/edge/http/json-protocol.get.d.ts +5 -0
- package/build/routes/edge/http/json-protocol.get.js +5 -0
- package/build/routes/edge/http/json-protocol.get.response.json +6 -0
- package/build/routes/edge/http/json-version.get.d.ts +5 -0
- package/build/routes/edge/http/json-version.get.js +5 -0
- package/build/routes/edge/http/json-version.get.response.json +44 -0
- package/build/routes/edge/http/pdf.post.body.json +724 -0
- package/build/routes/edge/http/pdf.post.d.ts +8 -0
- package/build/routes/edge/http/pdf.post.js +7 -0
- package/build/routes/edge/http/pdf.post.query.json +120 -0
- package/build/routes/edge/http/pdf.post.response.json +5 -0
- package/build/routes/edge/http/performance.post.body.json +26 -0
- package/build/routes/edge/http/performance.post.d.ts +8 -0
- package/build/routes/edge/http/performance.post.js +7 -0
- package/build/routes/edge/http/performance.post.query.json +120 -0
- package/build/routes/edge/http/performance.post.response.json +7 -0
- package/build/routes/edge/http/scrape.post.body.json +626 -0
- package/build/routes/edge/http/scrape.post.d.ts +8 -0
- package/build/routes/edge/http/scrape.post.js +7 -0
- package/build/routes/edge/http/scrape.post.query.json +183 -0
- package/build/routes/edge/http/scrape.post.response.json +334 -0
- package/build/routes/edge/http/screenshot.post.body.json +669 -0
- package/build/routes/edge/http/screenshot.post.d.ts +8 -0
- package/build/routes/edge/http/screenshot.post.js +7 -0
- package/build/routes/edge/http/screenshot.post.query.json +120 -0
- package/build/routes/edge/http/screenshot.post.response.json +5 -0
- package/build/routes/edge/tests/content.spec.d.ts +1 -0
- package/build/routes/edge/tests/content.spec.js +312 -0
- package/build/routes/edge/tests/download.spec.d.ts +1 -0
- package/build/routes/edge/tests/download.spec.js +67 -0
- package/build/routes/edge/tests/function.spec.d.ts +1 -0
- package/build/routes/edge/tests/function.spec.js +277 -0
- package/build/routes/edge/tests/json-version.spec.d.ts +1 -0
- package/build/routes/edge/tests/json-version.spec.js +37 -0
- package/build/routes/edge/tests/kill-sessions.spec.d.ts +1 -0
- package/build/routes/edge/tests/kill-sessions.spec.js +80 -0
- package/build/routes/edge/tests/page-websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/page-websocket.spec.js +97 -0
- package/build/routes/edge/tests/pdf.spec.d.ts +1 -0
- package/build/routes/edge/tests/pdf.spec.js +345 -0
- package/build/routes/edge/tests/performance.spec.d.ts +1 -0
- package/build/routes/edge/tests/performance.spec.js +124 -0
- package/build/routes/edge/tests/scrape.spec.d.ts +1 -0
- package/build/routes/edge/tests/scrape.spec.js +354 -0
- package/build/routes/edge/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/edge/tests/screenshot.spec.js +339 -0
- package/build/routes/edge/tests/websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/websocket.spec.js +384 -0
- package/build/routes/edge/ws/browser.d.ts +7 -0
- package/build/routes/edge/ws/browser.js +6 -0
- package/build/routes/edge/ws/browser.query.json +120 -0
- package/build/routes/edge/ws/cdp.d.ts +8 -0
- package/build/routes/edge/ws/cdp.js +7 -0
- package/build/routes/edge/ws/cdp.query.json +120 -0
- package/build/routes/edge/ws/page.d.ts +8 -0
- package/build/routes/edge/ws/page.js +7 -0
- package/build/routes/edge/ws/page.query.json +120 -0
- package/build/routes/edge/ws/playwright.d.ts +8 -0
- package/build/routes/edge/ws/playwright.js +7 -0
- package/build/routes/edge/ws/playwright.query.json +100 -0
- package/build/routes/firefox/tests/kill-sessions.spec.js +1 -1
- package/build/routes/management/http/meta.get.js +3 -1
- package/build/routes/webkit/tests/kill-sessions.spec.js +1 -1
- package/build/sdk-utils.js +1 -1
- package/build/shared/scrape.http.js +2 -2
- package/build/types.d.ts +32 -0
- package/build/types.js +18 -0
- package/build/utils.d.ts +1 -0
- package/build/utils.js +16 -2
- package/docker/chrome/Dockerfile +14 -14
- package/docker/chromium/Dockerfile +14 -14
- package/docker/edge/.dockerignore +16 -0
- package/docker/edge/Dockerfile +43 -0
- package/docker/firefox/Dockerfile +14 -14
- package/docker/multi/Dockerfile +18 -18
- package/docker/sdk/Dockerfile +10 -0
- package/extensions/ublock/_locales/ar/messages.json +3 -3
- package/extensions/ublock/_locales/bg/messages.json +1 -1
- package/extensions/ublock/_locales/br_FR/messages.json +2 -2
- package/extensions/ublock/_locales/cy/messages.json +11 -11
- package/extensions/ublock/_locales/el/messages.json +2 -2
- package/extensions/ublock/_locales/hu/messages.json +1 -1
- package/extensions/ublock/_locales/id/messages.json +1 -1
- package/extensions/ublock/_locales/lv/messages.json +4 -4
- package/extensions/ublock/_locales/mk/messages.json +130 -130
- package/extensions/ublock/_locales/oc/messages.json +1 -1
- package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
- package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
- package/extensions/ublock/_locales/si/messages.json +100 -100
- package/extensions/ublock/_locales/sr/messages.json +4 -4
- package/extensions/ublock/_locales/vi/messages.json +19 -19
- package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
- package/extensions/ublock/assets/assets.json +33 -29
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
- package/extensions/ublock/assets/ublock/badlists.txt +9 -1
- package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
- package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
- package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
- package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
- package/extensions/ublock/css/codemirror.css +4 -0
- package/extensions/ublock/document-blocked.html +3 -1
- package/extensions/ublock/js/arglist-parser.js +116 -0
- package/extensions/ublock/js/background.js +1 -1
- package/extensions/ublock/js/logger-ui.js +1 -1
- package/extensions/ublock/js/messaging.js +9 -2
- package/extensions/ublock/js/pagestore.js +3 -1
- package/extensions/ublock/js/redirect-engine.js +3 -1
- package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
- package/extensions/ublock/js/resources/base.js +38 -0
- package/extensions/ublock/js/resources/cookie.js +419 -0
- package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
- package/extensions/ublock/js/resources/localstorage.js +235 -0
- package/extensions/ublock/js/resources/parse-replace.js +54 -0
- package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
- package/extensions/ublock/js/resources/proxy-apply.js +109 -0
- package/extensions/ublock/js/resources/replace-argument.js +120 -0
- package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
- package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
- package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
- package/extensions/ublock/js/resources/set-constant.js +287 -0
- package/extensions/ublock/js/resources/shared.js +44 -0
- package/extensions/ublock/js/resources/spoof-css.js +163 -0
- package/extensions/ublock/js/s14e-serializer.js +2 -1
- package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
- package/extensions/ublock/js/scriptlet-filtering.js +1 -31
- package/extensions/ublock/js/static-dnr-filtering.js +143 -129
- package/extensions/ublock/js/static-filtering-parser.js +27 -117
- package/extensions/ublock/js/static-net-filtering.js +53 -141
- package/extensions/ublock/js/traffic.js +1 -1
- package/extensions/ublock/js/urlskip.js +166 -0
- package/extensions/ublock/js/vapi-background-ext.js +38 -14
- package/extensions/ublock/manifest.json +1 -1
- package/package.json +22 -22
- package/src/browserless.ts +4 -0
- package/src/browsers/browsers.cdp.ts +5 -0
- package/src/browsers/browsers.playwright.ts +14 -1
- package/src/browsers/index.ts +5 -2
- package/src/http.ts +9 -0
- package/src/routes/chrome/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/chromium/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/edge/http/content.post.ts +20 -0
- package/src/routes/edge/http/download.post.ts +20 -0
- package/src/routes/edge/http/function.post.ts +20 -0
- package/src/routes/edge/http/json-list.get.ts +7 -0
- package/src/routes/edge/http/json-new.put.ts +7 -0
- package/src/routes/edge/http/json-protocol.get.ts +7 -0
- package/src/routes/edge/http/json-version.get.ts +7 -0
- package/src/routes/edge/http/pdf.post.ts +20 -0
- package/src/routes/edge/http/performance.post.ts +20 -0
- package/src/routes/edge/http/scrape.post.ts +20 -0
- package/src/routes/edge/http/screenshot.post.ts +20 -0
- package/src/routes/edge/tests/content.spec.ts +376 -0
- package/src/routes/edge/tests/download.spec.ts +77 -0
- package/src/routes/edge/tests/function.spec.ts +317 -0
- package/src/routes/edge/tests/json-version.spec.ts +52 -0
- package/src/routes/edge/tests/kill-sessions.spec.ts +99 -0
- package/src/routes/edge/tests/page-websocket.spec.ts +129 -0
- package/src/routes/edge/tests/pdf.spec.ts +389 -0
- package/src/routes/edge/tests/performance.spec.ts +155 -0
- package/src/routes/edge/tests/scrape.spec.ts +417 -0
- package/src/routes/edge/tests/screenshot.spec.ts +387 -0
- package/src/routes/edge/tests/websocket.spec.ts +510 -0
- package/src/routes/edge/ws/browser.ts +10 -0
- package/src/routes/edge/ws/cdp.ts +17 -0
- package/src/routes/edge/ws/page.ts +10 -0
- package/src/routes/edge/ws/playwright.ts +17 -0
- package/src/routes/firefox/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/management/http/meta.get.ts +6 -1
- package/src/routes/management/http/static.get.ts +1 -1
- package/src/routes/webkit/tests/kill-sessions.spec.ts +1 -1
- package/src/sdk-utils.ts +1 -1
- package/src/shared/scrape.http.ts +2 -2
- package/src/types.ts +19 -0
- package/src/utils.ts +38 -16
- package/static/docs/swagger.json +2097 -10
- package/static/docs/swagger.min.json +2096 -9
- package/static/function/client.js +141 -253
- package/static/function/index.html +141 -253
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
! Title: uBlock filters – Badware risks
|
|
2
2
|
! Expires: 5 days
|
|
3
|
-
! Last modified: Tue,
|
|
3
|
+
! Last modified: Tue, 31 Dec 2024 17:40:26 +0000
|
|
4
4
|
! Diff-Path: %diffpath%#ublock-badware
|
|
5
5
|
! Diff-Expires: 317 minutes
|
|
6
6
|
! License: https://github.com/uBlockOrigin/uAssets/blob/master/LICENSE
|
|
@@ -107,7 +107,6 @@ support.ublock.org##div.hero-unit > div.search-box--hero-unit::before:style(cont
|
|
|
107
107
|
||virtualbox.pl^$doc
|
|
108
108
|
||newsharecounts.s3-us-west-2.amazonaws.com/nsc.js$script
|
|
109
109
|
||hentaiplaytime.com^$doc
|
|
110
|
-
||viewmypdf.com^$doc
|
|
111
110
|
! foxload.com badware
|
|
112
111
|
||foxload.com^$doc
|
|
113
112
|
! aksia.co badware
|
|
@@ -235,7 +234,6 @@ thepiratebay3.com^$all
|
|
|
235
234
|
||elevisions.biz^$all
|
|
236
235
|
||harzfriends.de^$all
|
|
237
236
|
||moviesboys.com/*.shtml$doc
|
|
238
|
-
||name0fbestway.com^$all
|
|
239
237
|
||sex-is-here.com/*.shtml$doc
|
|
240
238
|
||sexall.net/*.shtml$doc
|
|
241
239
|
||urtyert.com^$all
|
|
@@ -261,7 +259,6 @@ thepiratebay3.com^$all
|
|
|
261
259
|
/bdv_rd.dbm?ownid=$doc
|
|
262
260
|
?bid=0.*&search_referrer_domain=$doc
|
|
263
261
|
||fecebook.com^$all
|
|
264
|
-
||festinus.xyz^$all
|
|
265
262
|
/apop/redirect/zone/*$doc,popup
|
|
266
263
|
/?pl=*&sm=$doc
|
|
267
264
|
||fortuneadvert.com^$all
|
|
@@ -320,7 +317,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
320
317
|
||totaltopposts.com^$all
|
|
321
318
|
||djin.site^$all
|
|
322
319
|
||antivirus.landerhd.com^$all
|
|
323
|
-
||to6s.biz^$all
|
|
324
320
|
/?clck=*&sid=$doc
|
|
325
321
|
||love7date.info^$all
|
|
326
322
|
||bestsecretflirt.com^$all
|
|
@@ -387,14 +383,12 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
387
383
|
^apb=*&ata=mobilemdots^$doc
|
|
388
384
|
||uoutube.com^$all
|
|
389
385
|
! kkomj.ofchildr.buzz
|
|
390
|
-
||0redire.com^$all
|
|
391
386
|
||celxkpdir.com^$all
|
|
392
387
|
^cep=*&zoneid=$doc
|
|
393
388
|
^cep=*&s1=$doc
|
|
394
389
|
.top/robot4*&a=$doc,to=top
|
|
395
390
|
||androidnotice.com^$all
|
|
396
391
|
||wholenicefeed.com^$all
|
|
397
|
-
||updaterlife.com^$all
|
|
398
392
|
^s=*&ssk=*&svar=*&z=$doc
|
|
399
393
|
/?cid=*&dom=$doc
|
|
400
394
|
||totalrecaptcha.top^$all
|
|
@@ -403,7 +397,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
403
397
|
^device_model=*&p1=https$doc
|
|
404
398
|
||5.61.55.143^
|
|
405
399
|
.biz/sw/w1s.js|$script,3p
|
|
406
|
-
||mo11.biz^$all
|
|
407
400
|
/click.php?key=*&cpc=0&$doc
|
|
408
401
|
||37.1.213.100^
|
|
409
402
|
/?p=*&sub1=$doc
|
|
@@ -416,7 +409,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
416
409
|
||23.109.87.170^
|
|
417
410
|
.live/1*.html?cep=$doc
|
|
418
411
|
||edfringe.com/*.php$all
|
|
419
|
-
||jmdinfotechs.com^$all
|
|
420
412
|
||grakorte.com^$all
|
|
421
413
|
/click.php?key=*&zone_id=$doc
|
|
422
414
|
/domredirect?visitid=$doc
|
|
@@ -484,7 +476,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
484
476
|
/common-player-arrow/index.html?var=*&zoneid=$doc
|
|
485
477
|
/common-player/index.html?var=*&zoneid=$doc
|
|
486
478
|
/not-a-robot/index.html?$doc
|
|
487
|
-
||dating.service2u.shop^$all
|
|
488
479
|
||amazonaws.com/www.yournewlocalflingfinder7.com/$all
|
|
489
480
|
||dirtyfree.games^$all
|
|
490
481
|
||familycheaters.net^$all
|
|
@@ -494,7 +485,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
494
485
|
||matches4you.info^$all
|
|
495
486
|
||reifenachbarn.com^$all
|
|
496
487
|
/zclkredirect?visitid=$doc
|
|
497
|
-
||livechatlove.store^$all
|
|
498
488
|
||naughtymets.com^$all
|
|
499
489
|
||linkprotecttrck.com^$all
|
|
500
490
|
||www3secure.com^$all
|
|
@@ -503,8 +493,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
503
493
|
||dirtyflirt9.com^$all
|
|
504
494
|
||bestvideo.cloud^$all
|
|
505
495
|
||bmtracks.com^$all
|
|
506
|
-
||doublebangers.com^$all
|
|
507
|
-
||bintrr.top^$all
|
|
508
496
|
||bustymeets.com^$all
|
|
509
497
|
||aht42trk.com^$all
|
|
510
498
|
||jasnathvibes.com^$all
|
|
@@ -513,7 +501,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
513
501
|
||attractivecutiewcx.com^$all
|
|
514
502
|
||skollett.site^$all
|
|
515
503
|
||click-allow.top^
|
|
516
|
-
||feelfllirty.com^$all
|
|
517
504
|
||spiendidates.com^$all
|
|
518
505
|
||alone-here.online^$all
|
|
519
506
|
||meetsworldsm.link^$all
|
|
@@ -541,7 +528,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
541
528
|
||pecuniatrck.com^$all
|
|
542
529
|
||smart-tds.com^$all
|
|
543
530
|
||nicking-unding.com^$all
|
|
544
|
-
||maturewomenevm5.com^$all
|
|
545
531
|
||164.132.74.156^$all
|
|
546
532
|
||icetraff.com^$all
|
|
547
533
|
||girlsml.com^$all
|
|
@@ -562,7 +548,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
562
548
|
?click_id=*&tds_cid=$doc
|
|
563
549
|
.com/lp*.html?zoneid=$doc
|
|
564
550
|
/vpn/adult/*/index.html?*p1=$doc
|
|
565
|
-
||fervidpopsyk.com^$all
|
|
566
551
|
||dunabear.com^$all
|
|
567
552
|
||mialifestyle.com^$all
|
|
568
553
|
||miafann.online^$all
|
|
@@ -605,12 +590,10 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
605
590
|
||maxerotica.com^$all
|
|
606
591
|
||foxymilfspo.com^$all
|
|
607
592
|
||kissablepopsyv.click^$all
|
|
608
|
-
||kissablepopsyv43.com^$all
|
|
609
593
|
/click.php?key=*&type=push&$doc
|
|
610
594
|
.com/dating/*/index.html?lang=$doc
|
|
611
595
|
.info/?key=*&pixel=$doc
|
|
612
596
|
/?z=*&syncedCookie=true&rhd=false$doc,popup
|
|
613
|
-
||snapbabes9.com^$all
|
|
614
597
|
||matcher.one^$all
|
|
615
598
|
||onlyhotdgirl.com^$all
|
|
616
599
|
||playfulmilfs.com^$all
|
|
@@ -629,6 +612,8 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
629
612
|
||malenirt.site^$all
|
|
630
613
|
||repostponing.cfd^$all
|
|
631
614
|
/post/FileRotator_ID*/download.php?subid=$xhr
|
|
615
|
+
/bonus/com-*.php?c=$doc
|
|
616
|
+
||flirtixxx.com^$all
|
|
632
617
|
||mikkim.top^$all
|
|
633
618
|
||discordvip.createsocialcard.top^$all
|
|
634
619
|
||whatsapp-32w.pages.dev^$all
|
|
@@ -645,8 +630,8 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
645
630
|
/^https:\/\/[0-9a-z]{3,}\.[-a-z]{10,}\.(?:li[fv]e|top|xyz)\/[a-z]{8}\/(?:article\d{4}\.doc)?\?utm_campaign=\w{40,}/$doc,match-case,to=life|live|top|xyz
|
|
646
631
|
/^https:\/\/[a-z]{2,3}\d\.biz\/go\/[0-9a-z]{15,18}$/$doc,to=biz
|
|
647
632
|
! fake dating/prize/video sites
|
|
648
|
-
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{
|
|
649
|
-
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{
|
|
633
|
+
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{3,}\.[a-z]{2,11}\.?[a-z]{0,7}\/(?:[0-9a-z]{6,10}\/)?\/?(?:article\d{4}\.doc)?\?(?:cid=[0-9a-z]+&)?u=[0-9a-z]{7}(?:&t=\d+)?&o=[0-9a-z]{7}/$doc,frame,match-case
|
|
634
|
+
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{3,}\.[a-z]{2,11}\.?[a-z]{0,7}\/(?:[0-9a-z]{6,10}\/)?\/?(?:article\d{4}\.doc)?\?(?:cid=[0-9a-z]+&)?o=[0-9a-z]{7}(?:&t=\d+)?&u=[0-9a-z]{7}/$doc,frame,match-case
|
|
650
635
|
.live/web/?sid=t*~$doc
|
|
651
636
|
/?u1=*&o1=*&sid=t*~$doc
|
|
652
637
|
! push notification scam
|
|
@@ -666,19 +651,13 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
666
651
|
||clc-link.me^$all
|
|
667
652
|
||app.mediafire.com/jjtzeom4qvvxb$doc
|
|
668
653
|
||app.mediafire.com/36culjifmas7b$doc
|
|
669
|
-
||app.mediafire.com/zjtlygawl2i6h$doc
|
|
670
654
|
||app.mediafire.com/29ph7u17caayi$doc
|
|
671
|
-
||mediafire.com/folder/10ejpiwio2gfh/$doc
|
|
672
|
-
||mediafire.com/folder/v6itahr4p07b1/$doc
|
|
673
655
|
||mediafire.com/folder/ofa1qju50ffaz/$doc
|
|
674
|
-
||mediafire.com/folder/5mm90sz4nz0ui/$doc
|
|
675
|
-
||mediafire.com/folder/90qj06387ezr8/$doc
|
|
676
|
-
||mediafire.com/folder/5ablaa1bmr2sb/$doc
|
|
677
|
-
||mediafire.com/folder/oagotlqizjthi/$doc
|
|
678
|
-
||mediafire.com/folder/24w1fswggsv41/$doc
|
|
679
656
|
||mediafire.com/folder/u2is2eo3euyqd/$doc
|
|
680
657
|
||mediafire.com/folder/oljsfjvzr13f2/$doc
|
|
658
|
+
||mediafire.com/folder/3x67gs8tbyxdx/$doc
|
|
681
659
|
||www.youtube.com/@pengwincheat/$doc
|
|
660
|
+
||www.youtube.com/@melonitysoft/$doc
|
|
682
661
|
||www.youtube.com/channel/UCS9ql1ylQmDx7o_6v15X7mw/$doc
|
|
683
662
|
||www.youtube.com/channel/UCEMJ0wTeQgvyyvQTil7tteQ/$doc
|
|
684
663
|
||www.youtube.com/channel/UCNLgP9j7dK6tvEiZC2wZp5Q/$doc
|
|
@@ -686,8 +665,9 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
686
665
|
||sites.google.com/view/hubgames|$doc
|
|
687
666
|
||sites.google.com/view/flechh|$doc
|
|
688
667
|
||sites.google.com/view/kostsoft|$doc
|
|
689
|
-
||sites.google.com/view/
|
|
690
|
-
||sites.google.com/view/
|
|
668
|
+
||sites.google.com/view/projectxx1|$doc
|
|
669
|
+
||sites.google.com/view/exlauncher11|$doc
|
|
670
|
+
||sites.google.com/view/ex1aucnh3r1/$doc
|
|
691
671
|
||gamefree.vip^$doc
|
|
692
672
|
||gocrazy.gg^$doc
|
|
693
673
|
||murhack.com^$doc
|
|
@@ -697,7 +677,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
697
677
|
||sssrust.com^$doc
|
|
698
678
|
||upload.advgroup.ru/mvWwiE4h$all
|
|
699
679
|
||fusionhacks.pro^$doc
|
|
700
|
-
||yuqucheat.com^$doc
|
|
701
680
|
||games-blacksoft.com^$doc
|
|
702
681
|
||freefiles-upload.com^$doc
|
|
703
682
|
||arcanecheat.com^$doc
|
|
@@ -745,11 +724,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
745
724
|
||youvetube.com^$all
|
|
746
725
|
! "looks like typo squatting"
|
|
747
726
|
||wanderlust.rocks^$all
|
|
748
|
-
||hushemail.net^$all
|
|
749
|
-
||lavaboom.net^$all
|
|
750
|
-
||privacyharbor.net^$all
|
|
751
|
-
||protonmails.net^$all
|
|
752
|
-
||tutamail.net^$all
|
|
753
727
|
||messagesafe.net^$all
|
|
754
728
|
||msgsafe.net^$all
|
|
755
729
|
||best4fuck.com^$all
|
|
@@ -772,12 +746,14 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
772
746
|
||qualityhealth.com^$doc
|
|
773
747
|
||consumerproductsusa.com^$doc
|
|
774
748
|
||get-cracked.com^$all
|
|
775
|
-
||tinyurl.com/gp84uz2$doc
|
|
776
749
|
||mediafiire.com^$doc
|
|
777
750
|
||onlinepromotionsusa.com^$doc
|
|
751
|
+
||qsshc.xyz^$all
|
|
752
|
+
||ecoedgeinnovations.xyz^$all
|
|
753
|
+
||medlafire.eu^$all
|
|
754
|
+
##.buttonautocl
|
|
778
755
|
||greenadblocker.com^$doc
|
|
779
756
|
||flash.cn^$all
|
|
780
|
-
||hentai-tube.me^$doc
|
|
781
757
|
||foxmods.xyz^$doc
|
|
782
758
|
! phishing /malicious
|
|
783
759
|
||gesas.it^$doc
|
|
@@ -787,7 +763,6 @@ tech4yougadgets.com##+js(aopr, Notification)
|
|
|
787
763
|
||gamletaarnhuset.no^$doc
|
|
788
764
|
||possessedcrackinghart.com^$all
|
|
789
765
|
||reepratic.com^$all
|
|
790
|
-
||5vcjzwb1tsnd82g.caflu87p1d.ru^$all
|
|
791
766
|
! phishing /scam /malware
|
|
792
767
|
||dogehype.com^$all
|
|
793
768
|
||rblx.land^$all
|
|
@@ -847,7 +822,6 @@ origincrack.com##center > button
|
|
|
847
822
|
||mcteirx.click^$all
|
|
848
823
|
||igluumars.click^$all
|
|
849
824
|
||poixtre.click^$all
|
|
850
|
-
||ygabgga.click^$all
|
|
851
825
|
||browimeto.click^$all
|
|
852
826
|
||ambrkx.click^$all
|
|
853
827
|
||kcmcbc.click^$all
|
|
@@ -870,10 +844,8 @@ origincrack.com##center > button
|
|
|
870
844
|
||sushilprajapati.com^$all
|
|
871
845
|
||aneurismuox.click^$all
|
|
872
846
|
||afiletoget.click^$all
|
|
873
|
-
||redis08.sbs^$all
|
|
874
847
|
||filexstorage.site^$all
|
|
875
848
|
||jourl.live^$all
|
|
876
|
-
||sleetposition.website^$all
|
|
877
849
|
||funfilenow.com^$all
|
|
878
850
|
.click/?s=*&g=*&q=files.zip$doc
|
|
879
851
|
.click/*?s=*&g=*&q=$script,3p
|
|
@@ -943,11 +915,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
943
915
|
||psfmi.com^$all
|
|
944
916
|
||gghut.com^$all
|
|
945
917
|
||vlyyg.com^$all
|
|
946
|
-
||pimlm.com^$all
|
|
947
918
|
||mciun.com^$all
|
|
948
|
-
||sanff.com^$all
|
|
949
|
-
||gghhe.com^$all
|
|
950
|
-
||ooppnm.com^$all
|
|
951
919
|
||vnomm.com^$all
|
|
952
920
|
||nnggo.com^$all
|
|
953
921
|
/axad/?lpkey=$doc
|
|
@@ -992,18 +960,13 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
992
960
|
||almostmy.com^$all
|
|
993
961
|
||tokyobag.shop^$all
|
|
994
962
|
||erdfkhxrnanm.top^$all
|
|
995
|
-
||tfehmsag.xyz^$all
|
|
996
|
-
||authority-uspser.top^$all
|
|
997
|
-
||www.uspertest.vip^$all
|
|
998
963
|
||xqfefdkey.xyz^$all
|
|
999
964
|
||app-bitbanlk-cc.weebly.com^$all
|
|
1000
965
|
||oioi-tokye.top^$all
|
|
1001
966
|
||tpoint-sites.com^$all
|
|
1002
967
|
||cordialhoist.top^$all
|
|
1003
|
-
||app.stocksj.xyz^
|
|
1004
968
|
||oioi-store.vip^$all
|
|
1005
969
|
||totalpcsecure.com^$all
|
|
1006
|
-
||zhikunux.com^$all
|
|
1007
970
|
||smart-ex-jp.top^$all
|
|
1008
971
|
||luckvote.top^$all
|
|
1009
972
|
||kuronekoyamato-jp.com^$all
|
|
@@ -1011,7 +974,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1011
974
|
||web-telegvm.org^$all
|
|
1012
975
|
||m-k-r-5.com^$all
|
|
1013
976
|
||if-eku3a-fp.com^$all
|
|
1014
|
-
|
|
977
|
+
||ev.ri-*gb.com^$doc,to=~evri.com
|
|
1015
978
|
||sapjp.com^$doc
|
|
1016
979
|
||t-pia.me^$all
|
|
1017
980
|
||toythieves.com^$all
|
|
@@ -1024,6 +987,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1024
987
|
||btemgb.com^$all
|
|
1025
988
|
||amaeex.one^$all
|
|
1026
989
|
||ec2-13-230-253-66.ap-northeast-1.compute.amazonaws.com^$all
|
|
990
|
+
||77jjxx.com^$all
|
|
991
|
+
||my-bitbank.cc^$all
|
|
1027
992
|
! scam sites
|
|
1028
993
|
||webuzz.me^$doc
|
|
1029
994
|
||coup-ling.net^$all
|
|
@@ -1043,13 +1008,9 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1043
1008
|
||aiaitalk.com^$doc
|
|
1044
1009
|
||alicekdsod.com^$doc
|
|
1045
1010
|
||any2st777fhy.com^$doc
|
|
1046
|
-
||applaud-acclaim.com^$doc
|
|
1047
1011
|
||aqmessage.jp^$doc
|
|
1048
|
-
||astraeus-star.site^$doc
|
|
1049
1012
|
||best-chat.net^$doc
|
|
1050
|
-
||best-friendd2022.net^$doc
|
|
1051
1013
|
||bestxchat.net^$doc
|
|
1052
|
-
||bluew-web.com^$doc
|
|
1053
1014
|
||car-na.jp^$doc
|
|
1054
1015
|
||cbcdnkyyxubdsrmg.com^$doc
|
|
1055
1016
|
||cdypsqghdgrw.com^$doc
|
|
@@ -1058,11 +1019,9 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1058
1019
|
||clubfukugyou.work^$doc
|
|
1059
1020
|
||date-app.net^$doc
|
|
1060
1021
|
||days-neighborhood.com^$doc
|
|
1061
|
-
||decided-decision.com^$doc
|
|
1062
1022
|
||determinatioon.jp^$doc
|
|
1063
1023
|
||di-ana.jp^$doc
|
|
1064
1024
|
||dosukoudo.net^$doc
|
|
1065
|
-
||dot-acc.xyz^$doc
|
|
1066
1025
|
||drct-match.com^$doc
|
|
1067
1026
|
||drct-match.net^$doc
|
|
1068
1027
|
||dydynight.org^$doc
|
|
@@ -1089,7 +1048,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1089
1048
|
||happymethod55.com^$doc
|
|
1090
1049
|
||hi-a-so-bi.net^$doc
|
|
1091
1050
|
||himatalk77.net^$doc
|
|
1092
|
-
||himichat999.net^$doc
|
|
1093
1051
|
||home4ugoog10you.com^$doc
|
|
1094
1052
|
||hope-for-shiningday.com^$doc
|
|
1095
1053
|
||hori-hori.xyz^$doc
|
|
@@ -1126,7 +1084,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1126
1084
|
||love.sweet199.com^$doc
|
|
1127
1085
|
||loveaholics.com^$doc
|
|
1128
1086
|
||lovemelo.jp^$doc
|
|
1129
|
-
||lover-stream.com^$doc
|
|
1130
1087
|
||luuce.jp^$doc
|
|
1131
1088
|
||lzogdlorkfssui.net^$doc
|
|
1132
1089
|
||machi-match.info^$doc
|
|
@@ -1140,7 +1097,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1140
1097
|
||maytail.jp^$doc
|
|
1141
1098
|
||meguri-eye.net^$doc
|
|
1142
1099
|
||meguri-y.net^$doc
|
|
1143
|
-
||meltiness.jp^$doc
|
|
1144
1100
|
||moody-night.net^$doc
|
|
1145
1101
|
||moogle-set.space^$doc
|
|
1146
1102
|
||moogle-set.website^$doc
|
|
@@ -1149,19 +1105,15 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1149
1105
|
||navi-match.net^$doc
|
|
1150
1106
|
||near-s.com^$doc
|
|
1151
1107
|
||new.hpk0fu9.jp^$doc
|
|
1152
|
-
||newencounter.pw^$doc
|
|
1153
|
-
||nydlaepytwuekwhfyvivsf.com^$doc
|
|
1154
1108
|
||on-glamour.xyz^$doc
|
|
1155
1109
|
||one-chan-love.love^$doc
|
|
1156
1110
|
||onega.jp^$doc
|
|
1157
1111
|
||onegaga.jp^$doc
|
|
1158
|
-
||oprirgreifeuprdlojeocg.com^$doc
|
|
1159
1112
|
||osubstancenasubstitute.com^$doc
|
|
1160
1113
|
||otona-nona.biz^$doc
|
|
1161
1114
|
||otonanona.jp^$doc
|
|
1162
1115
|
||otonatime.net^$doc
|
|
1163
1116
|
||oyasu-mi.tokyo^$doc
|
|
1164
|
-
||paesbeaqerdrsheuboapyh.com^$doc
|
|
1165
1117
|
||pair-online.jp^$doc
|
|
1166
1118
|
||piasukai.xyz^$doc
|
|
1167
1119
|
||plati-num.com^$doc
|
|
@@ -1181,7 +1133,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1181
1133
|
||s4fk.destin0.jp^$doc
|
|
1182
1134
|
||salon1999.net^$doc
|
|
1183
1135
|
||salonoshirase.net^$doc
|
|
1184
|
-
||sen-no-y-t.com^$doc
|
|
1185
1136
|
||shells.pairapple.net^$doc
|
|
1186
1137
|
||sns-pair.net^$doc
|
|
1187
1138
|
||soul-ft.com^$doc
|
|
@@ -1224,7 +1175,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1224
1175
|
||localsgowild.com^$doc
|
|
1225
1176
|
||naughtyfever.com^$doc
|
|
1226
1177
|
||oo.opaall.com^$doc
|
|
1227
|
-
||sldg02.com^$doc
|
|
1228
1178
|
||tenseikaiun.com^$doc
|
|
1229
1179
|
||woman-busi.com^$doc
|
|
1230
1180
|
||secure-57v.pages.dev^$all
|
|
@@ -1234,7 +1184,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1234
1184
|
||4miracle4.jp^$doc
|
|
1235
1185
|
||abc.youtus7216.com^$doc
|
|
1236
1186
|
||amari-ama.com^$doc
|
|
1237
|
-
||axd.jp^$doc
|
|
1238
1187
|
||bambam-bi.com^$doc
|
|
1239
1188
|
||c-al-e1nder.com^$doc
|
|
1240
1189
|
||chocochipu-o.com^$doc
|
|
@@ -1253,7 +1202,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1253
1202
|
||moira-101.com^$doc
|
|
1254
1203
|
||nem0phila000.com^$doc
|
|
1255
1204
|
||nitr5eur6fjhtsw.jpn.com^$doc
|
|
1256
|
-
||npo-government.jp^$doc
|
|
1257
1205
|
||okai.work^$doc
|
|
1258
1206
|
||p3s18f1d0.com^$doc
|
|
1259
1207
|
||pa-ir.net^$doc
|
|
@@ -1351,7 +1299,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1351
1299
|
||xxa.uji8979erd77.jp^$doc
|
|
1352
1300
|
||y-tradie.com^$doc
|
|
1353
1301
|
||zaitaku-baito.com^$doc
|
|
1354
|
-
||action0120.com^$doc
|
|
1355
1302
|
||best-web2020.com^$doc
|
|
1356
1303
|
||degmq5l23.jp^$doc
|
|
1357
1304
|
||dosudosuo.com^$doc
|
|
@@ -1359,9 +1306,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1359
1306
|
||female-good.work^$doc
|
|
1360
1307
|
||forum0120.com^$doc
|
|
1361
1308
|
||foundate-core.net^$doc
|
|
1362
|
-
||intern0120.com^$doc
|
|
1363
1309
|
||li-neeee.net^$doc
|
|
1364
|
-
||linemail.work^$doc
|
|
1365
1310
|
||make2022.com^$doc
|
|
1366
1311
|
||ol2ewq989.jp^$doc
|
|
1367
1312
|
||salon.beauty202201.com^$doc
|
|
@@ -1370,7 +1315,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1370
1315
|
||sokkinjobmasu.work^$doc
|
|
1371
1316
|
||tim.time-time-zyunizi.com^$doc
|
|
1372
1317
|
||xxxmake.com^$doc
|
|
1373
|
-
||yours-mail.com^$doc
|
|
1374
1318
|
||1litteno.home-walil1.jp^$doc
|
|
1375
1319
|
||1st-mail.jp^$doc
|
|
1376
1320
|
||2507u35ia6mk1.com^$doc
|
|
@@ -1386,7 +1330,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1386
1330
|
||amourplace.jp^$doc
|
|
1387
1331
|
||ancient-guidance.jp^$doc
|
|
1388
1332
|
||apple012.com^$doc
|
|
1389
|
-
||ataru-loto.com^$doc
|
|
1390
1333
|
||atchm.net^$doc
|
|
1391
1334
|
||bontruth.com^$doc
|
|
1392
1335
|
||c.onnect.jp^$doc
|
|
@@ -1406,7 +1349,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1406
1349
|
||en5wr67sag3.com^$doc
|
|
1407
1350
|
||equation-of-happiness.com^$doc
|
|
1408
1351
|
||eromatchi.jp^$doc
|
|
1409
|
-
||ev.every-every-happy.com^$doc
|
|
1410
1352
|
||fanta-stic.net^$doc
|
|
1411
1353
|
||flirt.com^$doc
|
|
1412
1354
|
||fx-protrade.net^$doc
|
|
@@ -1461,7 +1403,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1461
1403
|
||rexsvj8omabse.jp^$doc
|
|
1462
1404
|
||richheart.completelifetime.com^$doc
|
|
1463
1405
|
||s908b9n62w53u.jp^$doc
|
|
1464
|
-
||sard1.com^$doc
|
|
1465
1406
|
||sdhjak.com^$doc
|
|
1466
1407
|
||sea-into-53426l1.com^$doc
|
|
1467
1408
|
||sfsrch.com^$doc
|
|
@@ -1626,7 +1567,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1626
1567
|
||aikatuz.jp^$doc
|
|
1627
1568
|
||always-happy-fortune.com^$doc
|
|
1628
1569
|
||alwayslike.safestspot.jp^$doc
|
|
1629
|
-
||aphrodite-astrology.net^$doc
|
|
1630
1570
|
||apppleheaddd.jp^$doc
|
|
1631
1571
|
||bestcosme.jp^$doc
|
|
1632
1572
|
||browser9182.web.fc2.com^$doc
|
|
@@ -1732,7 +1672,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1732
1672
|
||m2sg.jp^$doc
|
|
1733
1673
|
||mamasg.net^$doc
|
|
1734
1674
|
||mcbien.net^$doc
|
|
1735
|
-
||rollfa.net^$doc
|
|
1736
1675
|
||sgua.jp^$doc
|
|
1737
1676
|
||spilov.net^$doc
|
|
1738
1677
|
||splv.jp^$doc
|
|
@@ -1749,7 +1688,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1749
1688
|
||secondary-with.com^$doc
|
|
1750
1689
|
||fure-ai.com^$doc
|
|
1751
1690
|
||fure-ai.site^$doc
|
|
1752
|
-
||happy-classic.com^$doc
|
|
1753
1691
|
||rea-love.net^$doc
|
|
1754
1692
|
||natu.natural-natural-pure.com^$doc
|
|
1755
1693
|
||btc8228.com^$all
|
|
@@ -1809,7 +1747,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1809
1747
|
||ii.iriiss.com^$doc
|
|
1810
1748
|
||let.attract1v3.com^$doc
|
|
1811
1749
|
||lmoox5.net^$doc
|
|
1812
|
-
||mtl.metel-x-x-x.com^$doc
|
|
1813
1750
|
||panlcake.net^$doc
|
|
1814
1751
|
||paradise.shine-site.com^$doc
|
|
1815
1752
|
||s21aabb6.com^$doc
|
|
@@ -1863,7 +1800,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1863
1800
|
||for.life-thrones.com^$doc
|
|
1864
1801
|
||7wbb.com^$doc
|
|
1865
1802
|
||me-ru.jp^$doc
|
|
1866
|
-
||w-dbl.com^$doc
|
|
1867
1803
|
||recruit-gold.com^$doc
|
|
1868
1804
|
||emoti-on.com^$doc
|
|
1869
1805
|
||jinsei-undesu.com^$doc
|
|
@@ -1871,7 +1807,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1871
1807
|
||unki-josho.com^$doc
|
|
1872
1808
|
||xdpiwrx7ub.net^$doc
|
|
1873
1809
|
||feve-r.com^$doc
|
|
1874
|
-
||ma-tching.com^$doc
|
|
1875
1810
|
||mugicom.live^$doc
|
|
1876
1811
|
||romanc-e.com^$doc
|
|
1877
1812
|
||sns3615.com^$doc
|
|
@@ -1888,17 +1823,14 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1888
1823
|
||mirusiru.site^$doc
|
|
1889
1824
|
||mobileverify.net^$doc
|
|
1890
1825
|
||grabgiftcard.net^$doc
|
|
1891
|
-
||giftcardhero.net^$doc
|
|
1892
1826
|
||awapp.store^$doc
|
|
1893
1827
|
||softlab.fun^$doc
|
|
1894
1828
|
||appxfree.com^$doc
|
|
1895
1829
|
||appxfree.top^$doc
|
|
1896
|
-
||nuts.sugar1105.com^$doc
|
|
1897
1830
|
||kounnomichishirube.net^$doc
|
|
1898
1831
|
||lucksignpost0804.org^$doc
|
|
1899
1832
|
||lightning02s.com^$doc
|
|
1900
1833
|
||lightning0707.com^$doc
|
|
1901
|
-
||le.tter99.com^$doc
|
|
1902
1834
|
||silversex.com^$doc
|
|
1903
1835
|
||flirttime.com^$doc
|
|
1904
1836
|
||scene7goal3.work^$doc
|
|
@@ -1918,26 +1850,22 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1918
1850
|
||sk3-renew.com^$doc
|
|
1919
1851
|
||unki-max.com^$doc
|
|
1920
1852
|
||eir.tdhg7ppa.com^$doc
|
|
1921
|
-
||cpd.ipllo4ys.com^$doc
|
|
1922
1853
|
||htjrs-fgds.com^$doc
|
|
1923
1854
|
||recklessdroughtburglar.com^$doc
|
|
1924
1855
|
||the-match.jp^$doc
|
|
1925
1856
|
||gekkei-jyu-gekkei-jyu.com^$doc
|
|
1926
1857
|
||gekkeijyu-gekkeijyu.com^$doc
|
|
1927
|
-
||ev4ev.biz^$doc
|
|
1928
1858
|
||evkakuri2308.click^$doc
|
|
1929
1859
|
||gtex3.com^$doc
|
|
1930
1860
|
||nice.par-even.com^$doc
|
|
1931
1861
|
||pr-0m.link^$doc
|
|
1932
1862
|
||wa-nago-wagona.com^$doc
|
|
1933
1863
|
||chi-yo-1807chiyo.com^$doc
|
|
1934
|
-
||fd-2.shop^$doc
|
|
1935
1864
|
||cuddle.koi-ba-na.com^$doc
|
|
1936
1865
|
||globalreward77.com^$doc
|
|
1937
1866
|
||jukukoi.jp^$doc
|
|
1938
1867
|
||jukukoi.me^$doc
|
|
1939
1868
|
||buono2023-web.com^$doc
|
|
1940
|
-
||ic-05lion.com^$doc
|
|
1941
1869
|
||michi-fortune.jp^$doc
|
|
1942
1870
|
||miemashita.jp^$doc
|
|
1943
1871
|
||lovely-lovely.com^$doc
|
|
@@ -1952,7 +1880,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
1952
1880
|
||koun-wa.com^$doc
|
|
1953
1881
|
||one----talk.com^$doc
|
|
1954
1882
|
||pc.deainobasyo.jp^$doc
|
|
1955
|
-
||ewfwetqfbhmlodz.com^$doc
|
|
1956
1883
|
||mariage-inc.com^$doc
|
|
1957
1884
|
||tenmei-michibiki.com^$doc
|
|
1958
1885
|
||10vekatu.jp^$doc
|
|
@@ -2000,7 +1927,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2000
1927
|
||tokumeichatmail.net^$doc
|
|
2001
1928
|
||tsumatsuma.xyz^$doc
|
|
2002
1929
|
||olive-ft.jp^$doc
|
|
2003
|
-
||fortuna-destiny.com^$doc
|
|
2004
1930
|
||az-l.com^$doc
|
|
2005
1931
|
||luna-t.net^$doc
|
|
2006
1932
|
||sm-bt.net^$doc
|
|
@@ -2009,17 +1935,9 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2009
1935
|
||seselagi.com^$doc
|
|
2010
1936
|
||nc2.site^$doc
|
|
2011
1937
|
||recipe000.tokyo^$doc
|
|
2012
|
-
||5y4-hters-765.jp^$doc
|
|
2013
|
-
||h5t4rsw-htrs.jp^$doc
|
|
2014
|
-
||h6t4sw-nhytd.jp^$doc
|
|
2015
|
-
||neyr5s-e45f.jp^$doc
|
|
2016
|
-
||uj6y5defg.jp^$doc
|
|
2017
1938
|
||y54wdrg.com^$doc
|
|
2018
1939
|
||peach2023.net^$doc
|
|
2019
1940
|
||gokinjo---hot.com^$doc
|
|
2020
|
-
||metalepsa.me^$doc
|
|
2021
|
-
||nysoctieotion.tech^$doc
|
|
2022
|
-
||peroiramus.me^$doc
|
|
2023
1941
|
||www.academicsingles.jp^$doc
|
|
2024
1942
|
||ado.wish-best.com^$doc
|
|
2025
1943
|
||keiunkan.com^$doc
|
|
@@ -2038,7 +1956,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2038
1956
|
||qeucuzpbv6jq.jp^$doc
|
|
2039
1957
|
||ccappu-ccinno.com^$doc
|
|
2040
1958
|
||ccappuccinno.com^$doc
|
|
2041
|
-
||happiness-road.net^$doc
|
|
2042
1959
|
||daddyclub.net^$doc
|
|
2043
1960
|
||papamagic.net^$doc
|
|
2044
1961
|
||hoshi-no-michibiki.com^$doc
|
|
@@ -2069,11 +1986,9 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2069
1986
|
||qxb0v.com^$doc
|
|
2070
1987
|
||w0o.eu^$doc
|
|
2071
1988
|
||zj5c3.com^$doc
|
|
2072
|
-
||getchance.top^$doc
|
|
2073
1989
|
||ilovu.store^$doc
|
|
2074
1990
|
||moneyget.top^$doc
|
|
2075
1991
|
||millionget.top^$doc
|
|
2076
|
-
||sugukasegu.top^$doc
|
|
2077
1992
|
||iris-making.com^$doc
|
|
2078
1993
|
||lm-mousey-happy.com^$doc
|
|
2079
1994
|
||speeds5-mmiliked.com^$doc
|
|
@@ -2087,7 +2002,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2087
2002
|
||ll.liberrttyy.com^$doc
|
|
2088
2003
|
||6kk2a4t.com^$doc
|
|
2089
2004
|
||eujsiyajep.niigata.jp^$doc
|
|
2090
|
-
||humane-urgent.com^$doc
|
|
2091
2005
|
||kantanemusuu.jp^$doc
|
|
2092
2006
|
||sp-ciro-gov.com^$doc
|
|
2093
2007
|
||startwork-introduce.com^$doc
|
|
@@ -2102,7 +2016,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2102
2016
|
||fun-comu.click^$doc
|
|
2103
2017
|
||fun-comu.space^$doc
|
|
2104
2018
|
||make-money-happy.site^$doc
|
|
2105
|
-
||money-present.com^$doc
|
|
2106
2019
|
||rich-cash.fun^$doc
|
|
2107
2020
|
||t-gotousen.fun^$doc
|
|
2108
2021
|
||t-gotousen.site^$doc
|
|
@@ -2116,17 +2029,14 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2116
2029
|
||t-haihukikaku.online^$doc
|
|
2117
2030
|
||t-present.online^$doc
|
|
2118
2031
|
||rich-cash.site^$doc
|
|
2119
|
-
||island-vanity.com^$doc
|
|
2120
2032
|
||side-joblp.com^$doc
|
|
2121
2033
|
||71l0b.com^$doc
|
|
2122
2034
|
||ajv06.com^$doc
|
|
2123
2035
|
||f8dt6.com^$doc
|
|
2124
|
-
||i7fq6o.com^$doc
|
|
2125
2036
|
||m65ln.com^$doc
|
|
2126
2037
|
||mphb0.com^$doc
|
|
2127
2038
|
||e-chat1.com^$doc
|
|
2128
2039
|
||fc67x.com^$doc
|
|
2129
|
-
||heading-towards.net^$doc
|
|
2130
2040
|
||5hjd9t.com^$doc
|
|
2131
2041
|
||cd7z7b.com^$doc
|
|
2132
2042
|
||d8yfr7.com^$doc
|
|
@@ -2168,7 +2078,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2168
2078
|
||blfeiywbthjom.com^$doc
|
|
2169
2079
|
||brwasnlipggqq.com^$doc
|
|
2170
2080
|
||bvwozybuqztvg.com^$doc
|
|
2171
|
-
||cqcwalvjljddvrebl.com^$doc
|
|
2172
2081
|
||efljiccdztabg.com^$doc
|
|
2173
2082
|
||fbgajrlmjiotb.com^$doc
|
|
2174
2083
|
||hneeeixuyivwg.com^$doc
|
|
@@ -2186,10 +2095,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2186
2095
|
||ptgt.monuone-present.com^$doc
|
|
2187
2096
|
||rsgyndxlwfurm.com^$doc
|
|
2188
2097
|
||sfxmgzhaeeguq.com^$doc
|
|
2189
|
-
||txczlzcskwozcjcptvvyz.com^$doc
|
|
2190
2098
|
||zekhauukqrqwx.com^$doc
|
|
2191
2099
|
||mugen-online.com^$doc
|
|
2192
|
-
||pnieair.cloud^$doc
|
|
2193
2100
|
||unlock-the-bg2.com^$doc
|
|
2194
2101
|
||yl-0-wf.com^$doc
|
|
2195
2102
|
||auto.giz-store.com^$doc
|
|
@@ -2291,7 +2198,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2291
2198
|
||fortune-crystal.com^$doc
|
|
2292
2199
|
||ctl.ultima.fun^$doc
|
|
2293
2200
|
||fab-inst.com^$doc
|
|
2294
|
-
||ube71ki83.com^$doc
|
|
2295
2201
|
||ai-mono.jp^$doc
|
|
2296
2202
|
||again-agreement.com^$doc
|
|
2297
2203
|
||birth-bravery.com^$doc
|
|
@@ -2378,8 +2284,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2378
2284
|
||j9q8dmk6.com^$doc
|
|
2379
2285
|
||kas6mjgmxhn5.com^$doc
|
|
2380
2286
|
||zjjgbuiy.com^$doc
|
|
2381
|
-
||h3ninin.top^$all
|
|
2382
|
-
||puxmju.top^$all
|
|
2383
2287
|
||jkoi.jp^$doc
|
|
2384
2288
|
||dream901o.fun^$doc
|
|
2385
2289
|
||gold456o.fun^$doc
|
|
@@ -2392,8 +2296,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2392
2296
|
||bacchuss.net^$doc
|
|
2393
2297
|
||sg1first-syspro.jp^$doc
|
|
2394
2298
|
||ssgalaxy-sysgold.jp^$doc
|
|
2395
|
-
||b2g57ds.com^$doc
|
|
2396
|
-
||b3g6f86.com^$doc
|
|
2397
2299
|
||5sa74e2.com^$doc
|
|
2398
2300
|
||foryouswk.jp^$doc
|
|
2399
2301
|
||bell-02.com^$doc
|
|
@@ -2401,7 +2303,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2401
2303
|
||mirai-jc.jp^$doc
|
|
2402
2304
|
||herebyintentionally.com^$doc
|
|
2403
2305
|
||m-ateria.com^$doc
|
|
2404
|
-
||fscleopon.com^$doc
|
|
2405
2306
|
||hhll.app^$doc
|
|
2406
2307
|
||lu-club-de-matching.com^$doc
|
|
2407
2308
|
||l-partner.jp^$doc
|
|
@@ -2415,6 +2316,63 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2415
2316
|
||the-latest-version.com^$doc
|
|
2416
2317
|
||book234h.fun^$doc
|
|
2417
2318
|
||litlink.site^$doc
|
|
2319
|
+
||dem94jfdmn3d.net^$doc
|
|
2320
|
+
||nyancokuji.xyz^$doc
|
|
2321
|
+
||star789h.fun^$doc
|
|
2322
|
+
||vip-money2024.com^$doc
|
|
2323
|
+
||g5chat.com^$doc
|
|
2324
|
+
||matchtap.site^$doc
|
|
2325
|
+
||adak.adm1r3.com^$doc
|
|
2326
|
+
||buzz-gric.com^$doc
|
|
2327
|
+
||crowd-nrgt.com^$doc
|
|
2328
|
+
||drg-mcre.com^$doc
|
|
2329
|
+
||filter-zgzy.com^$doc
|
|
2330
|
+
||girl-ewun.com^$doc
|
|
2331
|
+
||heed-mvor.com^$doc
|
|
2332
|
+
||loudly-xipt.com^$doc
|
|
2333
|
+
||realm-foym.com^$doc
|
|
2334
|
+
||rice-iten.com^$doc
|
|
2335
|
+
||sodium-icft.com^$doc
|
|
2336
|
+
||abusive-isolate.com^$doc
|
|
2337
|
+
||curious-deplete.com^$doc
|
|
2338
|
+
||memorial-mem0ria1.com^$doc
|
|
2339
|
+
||memory-storage.net^$doc
|
|
2340
|
+
||call-chieftain.com^$doc
|
|
2341
|
+
||deep-dealings.com^$doc
|
|
2342
|
+
||easy-elation.com^$doc
|
|
2343
|
+
||o-ka-pilina.com^$doc
|
|
2344
|
+
||dr-sapuri.jp^$doc
|
|
2345
|
+
||sweet-1ove.jp^$doc
|
|
2346
|
+
||u-to--u.com^$doc
|
|
2347
|
+
||u-to-u.com^$doc
|
|
2348
|
+
||u--to-u.com^$doc
|
|
2349
|
+
||aibeautia1.jp^$doc
|
|
2350
|
+
||loto7-diamond-club.com^$doc
|
|
2351
|
+
||lotochance.hp.peraichi.com^$doc
|
|
2352
|
+
||lotochance-vip.com^$doc
|
|
2353
|
+
||bizdizorganization.com^$doc
|
|
2354
|
+
||connect-s2-chat.com^$doc
|
|
2355
|
+
||scrutinizeordealscrutinize.com^$doc
|
|
2356
|
+
||story-story.life^$doc
|
|
2357
|
+
||mcdonal.fujicandy-balibalione.net^$doc
|
|
2358
|
+
||penst-hap9p-chat.com^$doc
|
|
2359
|
+
||penst3-hap11o-chat.com^$doc
|
|
2360
|
+
||soul-of-compass.com^$doc
|
|
2361
|
+
||e-manager-kanri.com^$doc
|
|
2362
|
+
||info-top-letter.com^$doc
|
|
2363
|
+
||noi9va4ewa.com^$doc
|
|
2364
|
+
||thanksgift-special.com^$doc
|
|
2365
|
+
||mailtherapyask.com^$doc
|
|
2366
|
+
||xs525890.xsrv.jp^$doc
|
|
2367
|
+
||mail-m-m.com^$doc
|
|
2368
|
+
||raspberrysliceq.jp^$doc
|
|
2369
|
+
||amschat.top^$doc
|
|
2370
|
+
||coupletalk2024.com^$doc
|
|
2371
|
+
||rain890o.fun^$doc
|
|
2372
|
+
||t-eroero.monster^$doc
|
|
2373
|
+
||t-echi.fun^$doc
|
|
2374
|
+
||adult-ntrchanel.com^$all
|
|
2375
|
+
||echi-echi-time.org^$all
|
|
2418
2376
|
||apkmirror.co^$all
|
|
2419
2377
|
||webogram.org^$all
|
|
2420
2378
|
||webogram.ru^$all
|
|
@@ -2423,25 +2381,17 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2423
2381
|
||tgram.ru^$all
|
|
2424
2382
|
||telegramm.site^$all
|
|
2425
2383
|
||web-telegram.net^$all
|
|
2426
|
-
!#if !env_mobile
|
|
2427
|
-
||n.fcd.su^$all
|
|
2428
|
-
!#endif
|
|
2429
2384
|
||anapatformacion.org/modules/file/tor/tor-browser.zip^$all
|
|
2430
2385
|
/^https:\/\/[a-z]+\.com\/away\.php\?url=[%0-9A-z]{100,}$/$doc
|
|
2431
2386
|
||a-new86.com^$all
|
|
2432
2387
|
||ane102.net^$all
|
|
2433
|
-
||ima55notice.biz^$all
|
|
2434
|
-
||infozoomplus.biz^$all
|
|
2435
2388
|
||koi2ru.com^$all
|
|
2436
|
-
||likechat33call.net^$all
|
|
2437
|
-
||pair55call.net^$all
|
|
2438
2389
|
||room2021.net^$all
|
|
2439
2390
|
||roomoshirase.net^$all
|
|
2440
2391
|
||smore91.net^$all
|
|
2441
2392
|
||som419.net^$all
|
|
2442
2393
|
||touchoshirase.net^$all
|
|
2443
2394
|
||touchtacchi.net^$all
|
|
2444
|
-
||wsws1234.net^$all
|
|
2445
2395
|
||wswsnews.net^$all
|
|
2446
2396
|
||fotkyin.top^$all
|
|
2447
2397
|
||s3.amazonaws.com/extpro/speed4.html$all
|
|
@@ -2474,36 +2424,26 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2474
2424
|
||websafety.online^$all
|
|
2475
2425
|
||cnctddot.com^$all
|
|
2476
2426
|
||mct-niger.com^$all
|
|
2477
|
-
||klinikmrc.com^$all
|
|
2478
2427
|
||stb-media.xyz^$all
|
|
2479
2428
|
||compass-holding.com^$all
|
|
2480
2429
|
||theweddingmahotsav.com^$all
|
|
2481
2430
|
||detailsreceipts.com^$all
|
|
2482
2431
|
||hodllane.com^$all
|
|
2483
|
-
||golovanov.net^$all
|
|
2484
2432
|
||165-227-173-120.plesk.page^$all
|
|
2485
2433
|
||pushlandings.b-cdn.net^$all
|
|
2486
2434
|
||64-226-126-114.plesk.page^$all
|
|
2487
2435
|
||fastndio.s3.eu-central-1.amazonaws.com^$all
|
|
2488
2436
|
||pub-77106c9273be4f3fbec6b6d6c3c51b7f.r2.dev^$all
|
|
2489
2437
|
||janganhackya.com^$all
|
|
2490
|
-
||blexad.shop^$all
|
|
2491
|
-
||xoty55.cfd^$all
|
|
2492
2438
|
||s3.ap-northeast-1.amazonaws.com/ongoing.com/aanoitmessure/index.html^$all
|
|
2493
2439
|
||setkuttina.pages.dev^$all
|
|
2494
|
-
||liq27qbf.monster^$all
|
|
2495
2440
|
||certificate-certificate.gettrials.com^$all
|
|
2496
2441
|
||boring-tesla.149-102-231-176.plesk.page^$all
|
|
2497
|
-
||qwudbhasdwq9h.sa.com^$all
|
|
2498
2442
|
/^https:\/\/[0-9a-z]{12,16}\.azureedge\.net\/\d{4}\//$doc
|
|
2499
|
-
||fcukxxx.com^$all
|
|
2500
2443
|
||xbasugigqiuegiwqdbsx.s3.ap-northeast-1.amazonaws.com^$all
|
|
2501
|
-
||popworldservice.com^$all
|
|
2502
2444
|
||perutzxrqe.ru.com^$all
|
|
2503
|
-
||qwudbhasdwq8h.sa.com^$all
|
|
2504
2445
|
||uwqghwfdwqywetqwfghewqeqweig.s3.ap-southeast-2.amazonaws.com^$all
|
|
2505
2446
|
||baattakkkk.online^$all
|
|
2506
|
-
||assitechnique.net^$all
|
|
2507
2447
|
||fantastic-salamander-c721cb.netlify.app^$all
|
|
2508
2448
|
||shishimishi.shop^$all
|
|
2509
2449
|
||track7.online^$all
|
|
@@ -2530,7 +2470,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2530
2470
|
||pages.dev/Wi0n0erAry0mpAlert048/$all
|
|
2531
2471
|
||netlify.app/errox01/?$all
|
|
2532
2472
|
||infinityserve.life^$all
|
|
2533
|
-
||
|
|
2473
|
+
||seishinyoga.com^$all
|
|
2474
|
+
||microchromejapan.b-cdn.net^$all
|
|
2534
2475
|
||pages.dev/*/Fm7-alert.wav
|
|
2535
2476
|
||pages.dev/*/ai2.mp3
|
|
2536
2477
|
||pages.dev/*_Fm7-alert.mp3
|
|
@@ -2549,6 +2490,12 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2549
2490
|
||r2.dev/media/_Fm7-alert.mp3
|
|
2550
2491
|
||windows.net/*/esc.js
|
|
2551
2492
|
||windows.net/*/flscn.js
|
|
2493
|
+
||windows.net/js/jsd1.js
|
|
2494
|
+
||windows.net/js/jsd2.js
|
|
2495
|
+
||windows.net/media/beep.mp3
|
|
2496
|
+
||b-cdn.net/jupiter.js
|
|
2497
|
+
||b-cdn.net/noir.js
|
|
2498
|
+
||b-cdn.net/nvidia.js
|
|
2552
2499
|
||japanonlinebroadcast.live^$all
|
|
2553
2500
|
||crackedpc.org^$all
|
|
2554
2501
|
||cracksway.com^$all
|
|
@@ -2641,8 +2588,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2641
2588
|
||z-lib.io^$all
|
|
2642
2589
|
||z-lib.id^$all
|
|
2643
2590
|
||zlibrary.to^$all
|
|
2644
|
-
||z-lib.tf^$all
|
|
2645
|
-
||z-lib.wf^$all
|
|
2646
2591
|
||z-lib.yt^$all
|
|
2647
2592
|
||z-lib.lol^$all
|
|
2648
2593
|
||zlibrary-global.com^$all
|
|
@@ -2674,7 +2619,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2674
2619
|
||ttt777.com^$doc
|
|
2675
2620
|
||cloudflarebros.com^$all
|
|
2676
2621
|
||brcknkblue.com^$all
|
|
2677
|
-
|
|
2622
|
+
www.cambe.pr.gov.br##+js(noeval-if, tigervip2)
|
|
2678
2623
|
||adblock1.com^$all
|
|
2679
2624
|
||newupdatesnow.com^$all
|
|
2680
2625
|
||thefinanceadvice.com^$all
|
|
@@ -2683,32 +2628,51 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2683
2628
|
||ets2.gr^$all
|
|
2684
2629
|
||chromegoogle.cn^$all
|
|
2685
2630
|
||mk90.shop^$all
|
|
2686
|
-
||stalkforx.ru^$all
|
|
2687
2631
|
! Cryptocurrency Scams
|
|
2688
2632
|
||mevtime.com^$all
|
|
2689
|
-
||musk-project.com^$
|
|
2690
|
-
||muskusa.com^$
|
|
2633
|
+
||musk-project.com^$all
|
|
2634
|
+
||muskusa.com^$all
|
|
2691
2635
|
||cealits.com^$all
|
|
2692
2636
|
||pepzk-community.xyz^$all
|
|
2693
|
-
||earth-ling.org^$
|
|
2694
|
-
||muskevent.info^$
|
|
2637
|
+
||earth-ling.org^$all
|
|
2638
|
+
||muskevent.info^$all
|
|
2695
2639
|
||teslamaked.com^$all
|
|
2696
2640
|
||cryptomusk.io^$all
|
|
2697
2641
|
||youtube.com/@Tesla.debate_live2024^$doc
|
|
2698
|
-
||
|
|
2699
|
-
||
|
|
2642
|
+
||youtube.com/@TheCryptoLarkCrypto^$doc
|
|
2643
|
+
||teslafond.io^$all
|
|
2644
|
+
||teslacore.io^$all
|
|
2700
2645
|
||btc24.info^$all
|
|
2701
2646
|
||youtube.com/@tesla24official^$doc
|
|
2702
|
-
||usmusk.net^$
|
|
2647
|
+
||usmusk.net^$all
|
|
2703
2648
|
||foundations-x2024.*^$doc,to=foundations-x2024.*
|
|
2704
|
-
||foundations-x2024.cloud^$
|
|
2705
|
-
||foundations-x2024.sbs^$
|
|
2649
|
+
||foundations-x2024.cloud^$all
|
|
2650
|
+
||foundations-x2024.sbs^$all
|
|
2706
2651
|
||trump-drop.org^$all
|
|
2707
2652
|
||youtube.com/@tesla.Iive.officiaI.24^$doc
|
|
2708
2653
|
||elondonald.com^$all
|
|
2709
2654
|
||musktrump.io^$all
|
|
2710
2655
|
||stage3-last.$doc,to=~edu|~gov
|
|
2711
2656
|
||stage2024.$doc,to=~edu|~gov
|
|
2657
|
+
||presale-friday.$doc,to=~edu|~gov
|
|
2658
|
+
||sale-friday.$doc,to=~edu|~gov
|
|
2659
|
+
||stage3sale.$doc,to=~edu|~gov
|
|
2660
|
+
||stage3sale2024.$doc,to=~edu|~gov
|
|
2661
|
+
||black-sales.$doc,to=~edu|~gov
|
|
2662
|
+
! xai scams
|
|
2663
|
+
/^https:\/\/xai\w+(?:\.\w+)?\.[a-z]{3,}\/presale\b/$doc,match-case,to=~edu|~gov
|
|
2664
|
+
/^https:\/\/[-\w]+xai\.[a-z]{3,}\/presale\b/$doc,match-case,to=~edu|~gov
|
|
2665
|
+
||xaitoken.live^$all
|
|
2666
|
+
||investxai.pro^$all
|
|
2667
|
+
||xai85s.com^$all
|
|
2668
|
+
||xaitokensale.net^$all
|
|
2669
|
+
||xaitoken.$all,to=xaitoken.app|xaitoken.page.link|xaitoken.net
|
|
2670
|
+
||xaiofficial.com^$all
|
|
2671
|
+
||xai19k.com^$all
|
|
2672
|
+
||officialxai.com^$all
|
|
2673
|
+
||youtube.com/@jesseeckel5^$doc
|
|
2674
|
+
||xai62f.com^$all
|
|
2675
|
+
||xaiofficial.ai^$all
|
|
2712
2676
|
||arbitragebot.team^$all
|
|
2713
2677
|
||arbitrageinstruction.media^$all
|
|
2714
2678
|
||arbitrageproject.blog^$all
|
|
@@ -2752,10 +2716,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2752
2716
|
/config?key=6922a2c8-d1e9-43be-b201-749543d28fe1
|
|
2753
2717
|
/config?key=d35e161b-abb4-4949-b523-003165d250bb
|
|
2754
2718
|
||dns.google/resolve?name=*.host-stats.io&type=txt|$xhr,3p
|
|
2755
|
-
||picocrypt.org^$doc
|
|
2756
2719
|
||traveltraffic.cc^$all
|
|
2757
2720
|
||cloudsonicwave.com^$all
|
|
2758
|
-
||obs-software.cc^$all
|
|
2759
2721
|
||bandi-cam.cc^$all
|
|
2760
2722
|
||open-project.org^$all
|
|
2761
2723
|
||onenote-download.com^$all
|
|
@@ -2805,8 +2767,10 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2805
2767
|
||lapmangsctv.com.vn^$doc,to=~sctv.com.vn
|
|
2806
2768
|
||socgeneralist.firebaseapp.com^$all,to=~societegenerale.com
|
|
2807
2769
|
||testra*-covid.weebly.com^$all,to=~telstra.com.au
|
|
2770
|
+
||telus.signup.clik2pay.com^$all,to=~telus.com
|
|
2808
2771
|
||final-ua.eu/vasilisa/votings$all
|
|
2809
2772
|
||flow.page/foxhills.co.uk^$all,to=~foxhills.co.uk
|
|
2773
|
+
||jemi.so/correo-24-ar^$all,to=~correoargentino.com.ar
|
|
2810
2774
|
||codeanyapp.com/neta/*/pay-method.php$doc
|
|
2811
2775
|
||otomoto-h229.net^$all,to=~otomoto.pl
|
|
2812
2776
|
||mybluehost.me/*Recibir_paquete.php$doc,to=~correos.es
|
|
@@ -2816,10 +2780,16 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2816
2780
|
||uwelldeutschland.com^$all,to=~myuwell.com
|
|
2817
2781
|
||user.fm/files/*/AbsaOnlinePop.html^$doc,to=~absa.co.za
|
|
2818
2782
|
||user.fm/files/*/ProofOfPayment.HTML^$doc
|
|
2783
|
+
||grout-guru.com.au^$all,to=~group.bper.it
|
|
2784
|
+
/^https?:\/\/server\.[a-z0-9]{4}\.com\/invite\/\d+\b/$doc,match-case,to=com
|
|
2785
|
+
! ameli.fr
|
|
2786
|
+
||fgt.ive.mybluehost.me^$doc,to=~ameli.fr
|
|
2787
|
+
||mybluehost.me/*/Ameli/$doc,to=~ameli.fr
|
|
2788
|
+
||line.pm/*/SNF-GKFF.FR/$doc,to=~ameli.fr
|
|
2789
|
+
! ram.co.za
|
|
2790
|
+
||ramscourierservice.weebly.com^$all,to=~ram.co.za
|
|
2819
2791
|
||rampostsouthafrican-*.codeanyapp.com^$all,to=~ram.co.za
|
|
2820
2792
|
||codeanyapp.com/southafrica/*/PAYU^$doc,to=~ram.co.za
|
|
2821
|
-
||ntriela-solar65.line.pm^$doc,to=~ameli.fr
|
|
2822
|
-
||line.pm/*/SNF-GKFF.FR/$doc,to=~ameli.fr
|
|
2823
2793
|
! wetransfer
|
|
2824
2794
|
||vercel.app/magi/olde/saac-wetr-magi.html^$doc,to=~wetransfer.com
|
|
2825
2795
|
||download-wetransfer-*.vercel.app^$doc,to=~wetransfer.com
|
|
@@ -2828,7 +2798,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2828
2798
|
||wetransferlogin.freewebhostmost.com^$all,to=~wetransfer.com
|
|
2829
2799
|
||bingkasprogram-*.xdbng.com^$all
|
|
2830
2800
|
! leboncoin.fr
|
|
2831
|
-
||auth-llbc.elementfx.com^$all,to=~leboncoin.fr
|
|
2832
2801
|
||epayln.site.tb-hosting.com^$all,to=~leboncoin.fr
|
|
2833
2802
|
! linkedin
|
|
2834
2803
|
||faran.ac.ir/wp-content/$all,to=~linkedin.com
|
|
@@ -2854,7 +2823,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2854
2823
|
/^https://[a-z]{40,}\.pages\.dev\//$doc,to=pages.dev
|
|
2855
2824
|
||resisted-amusing-driver.glitch.me^$all
|
|
2856
2825
|
||glitch.me/public/index_CNC.html^$doc
|
|
2857
|
-
||
|
|
2826
|
+
||r2.dev/Zimbra*.html^$doc,to=~mail.zimbra.com
|
|
2858
2827
|
! webmail.bell.net
|
|
2859
2828
|
||bellsecuredloginfom-net.vercel.app^$all,to=~webmail.bell.net
|
|
2860
2829
|
||hootbio.com/bellmail$all,to=~webmail.bell.net
|
|
@@ -2897,11 +2866,14 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2897
2866
|
/\/offer\.(?:html|php)\?(?:mobile|rechargenumber)=\d{10}\b/$doc,match-case,to=~jio.com|~edu|~gov
|
|
2898
2867
|
! apple
|
|
2899
2868
|
||buscaapp.com^$all
|
|
2900
|
-
||apples-24x7-help.pages.dev^$all
|
|
2901
2869
|
||dbs.applerewardsstore.com^$all,to=~dbs.com
|
|
2870
|
+
||pal-24x7-support.xyz^$all
|
|
2902
2871
|
||rbchidraulica.com.br/info/verify^$all
|
|
2903
2872
|
/isignesp.php^$doc,to=~edu|~gov|~apple.com
|
|
2904
2873
|
/icloud2022-esp.php^$doc,to=~edu|~gov|~apple.com
|
|
2874
|
+
||apples-24x7-*.pages.dev^$doc
|
|
2875
|
+
||apples-24x7-customer-help-line.pages.dev^$all
|
|
2876
|
+
||apples-24x7-help.pages.dev^$all
|
|
2905
2877
|
! ourtime
|
|
2906
2878
|
||login-ourtime.members-datings.workers.dev^$all,to=~ourtime.com
|
|
2907
2879
|
||ourtime-assist.members-authenticated.workers.dev^$all,to=~ourtime.com
|
|
@@ -2913,9 +2885,9 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2913
2885
|
! made-in-china.com
|
|
2914
2886
|
||griffithdds.com/*/madeinchina.com/$all,to=~made-in-china.com
|
|
2915
2887
|
||oortech.com/mic.shtml^$doc,to=~made-in-china.com
|
|
2888
|
+
||r2.dev/made-in-china.com/$doc,to=~made-in-china.com
|
|
2916
2889
|
! fedex
|
|
2917
2890
|
||fedexridn.com^$all
|
|
2918
|
-
||yellowjacket.co.nz^$all,to=~fedex.com
|
|
2919
2891
|
||saham.hugaf.dev^$all,to=~fedex.com
|
|
2920
2892
|
! booking.com
|
|
2921
2893
|
/^https:\/\/(?:[a-z]+\.)?hotel-(?:id)?\d{3,8}\.eu\//$doc,to=eu|~booking.com
|
|
@@ -2935,8 +2907,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2935
2907
|
||oasisministries.com/fr/postale/$all,to=~labanquepostale.fr
|
|
2936
2908
|
||lidarusa.com/*/Bpostale2022/$all,to=~labanquepostale.fr
|
|
2937
2909
|
||plesk.page/*--_--$doc,to=~labanquepostale.fr
|
|
2938
|
-
||spsb.vantechdns.com^$all,to=~labanquepostale.fr
|
|
2939
2910
|
||vantechdns.com/bpnew/$doc,to=~labanquepostale.fr
|
|
2911
|
+
||monamedia.net/CerticodePlus/DSP2/$doc,to=~labanquepostale.fr
|
|
2940
2912
|
! adobe
|
|
2941
2913
|
||adobecloud5xpo.yolasite.com^$all,to=~adobe.com
|
|
2942
2914
|
||socalthesyndicate.com/*/adobefud/$all,to=~adobe.com
|
|
@@ -2945,6 +2917,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2945
2917
|
||doc*-order*adobe.glitch.me^$doc,to=glitch.me
|
|
2946
2918
|
||glitch.me/adobe-auto*.html^$doc
|
|
2947
2919
|
||facture-free.com/Adobeverapdf/$all
|
|
2920
|
+
||mytemp.website/safetyfileaccess.htm^$doc
|
|
2948
2921
|
! gazprom
|
|
2949
2922
|
/^https:\/\/[a-z0-9]{5,15}\.shop\/l\/gaz\//$1p,strict1p,match-case,to=shop
|
|
2950
2923
|
/^https:\/\/[a-z0-9]{5,15}\.shop\/uniq$/$xhr,1p,strict1p,match-case,method=get,to=shop
|
|
@@ -2994,7 +2967,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
2994
2967
|
||pemesanan*.glowz.my.id^$doc,to=~dana.id
|
|
2995
2968
|
||claiim-hadiahh-danax-$all,to=~dana.id
|
|
2996
2969
|
! orange.fr
|
|
2997
|
-
||jeuconcoursorange.com^$all,to=~orange.fr
|
|
2998
2970
|
||orange53.yolasite.com^$all,to=~orange.fr
|
|
2999
2971
|
||dev-7614646544.pantheonsite.io^$all,to=~orange.fr
|
|
3000
2972
|
||smsmmsernorepls.wixsite.com^$all,to=~orange.fr
|
|
@@ -3013,7 +2985,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3013
2985
|
||svropeauthentificatid.run.place^$all,to=~orange.fr
|
|
3014
2986
|
! tiktok shop
|
|
3015
2987
|
||tiktikshopvn.com^$doc
|
|
3016
|
-
||perazxcs.com^$all
|
|
3017
2988
|
! amazon
|
|
3018
2989
|
||amazon-*.shop^$doc
|
|
3019
2990
|
||amazon-shopping.shop^$all
|
|
@@ -3038,8 +3009,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3038
3009
|
||orders-processed.com^$all
|
|
3039
3010
|
! ebay
|
|
3040
3011
|
||c.vn-ebayn.vip^$all
|
|
3041
|
-
||vn-ebay.quxlpuj.cn^$all
|
|
3042
|
-
||ebayasean.com^$all
|
|
3043
3012
|
||vilbuy.com^$all
|
|
3044
3013
|
||ebay839.cc^$all
|
|
3045
3014
|
||epayu.cc^$all
|
|
@@ -3048,7 +3017,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3048
3017
|
||shop-line.vip^$all
|
|
3049
3018
|
||939l.xyz^$all
|
|
3050
3019
|
||bebayb.cc^$all
|
|
3051
|
-
||ebayma77.com^$all
|
|
3052
3020
|
||ebnays.xyz^$all
|
|
3053
3021
|
||ebay-supplier.shop^$all
|
|
3054
3022
|
/^https:\/\/(?:seller\.)?ebay-[a-z]{8,15}\.com\//$doc,to=com
|
|
@@ -3058,10 +3026,11 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3058
3026
|
||pages.dev/errors/validateCaptcha^$doc
|
|
3059
3027
|
! alibaba
|
|
3060
3028
|
||hologramid.cn^$all,to=~alibaba.com
|
|
3061
|
-
||topmarifle.life^$all,to=~alibaba.com
|
|
3062
3029
|
||jybelinda.com^$all,to=~alibaba.com
|
|
3063
3030
|
||vetsinthecity.me/*/Alibaba/$doc,to=~alibaba.com
|
|
3064
3031
|
||sanpelmaquinas.com.br^$all,to=~alibaba.com
|
|
3032
|
+
||molekinha.com.br/*/alibaba.com/$doc,to=~alibaba.com
|
|
3033
|
+
/alibaba.com/passport.alibaba.com/*$doc,to=~alibaba.com
|
|
3065
3034
|
! aliexpress
|
|
3066
3035
|
||airpsite.club^$all,to=~aliexpress.com
|
|
3067
3036
|
! AT&T
|
|
@@ -3087,30 +3056,31 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3087
3056
|
||alisongaudino992.wixsite.com^$all
|
|
3088
3057
|
||deenveerww.wixsite.com^$all
|
|
3089
3058
|
||att5h6.wixsite.com^$all
|
|
3059
|
+
||attonlineservice*.wixstudio.com^$all
|
|
3090
3060
|
||wixstudio.io/mysiteattmail940940^$doc
|
|
3091
3061
|
||f.digital-*.com/igit/$doc
|
|
3092
3062
|
||currentlyatt*.weebly.com^$all
|
|
3063
|
+
||dropbox.com/*/AT-T-YAHOO-MAIL.paper^$doc
|
|
3093
3064
|
! BT
|
|
3094
3065
|
||homelogginbbt.weebly.com^$all,to=~bt.com
|
|
3095
3066
|
||loogginhomebtcom.weebly.com^$all,to=~bt.com
|
|
3096
3067
|
||boardband.univer.se^$all,to=~bt.com
|
|
3097
3068
|
||telegra.ph/British-Telecommunication-08-22^$all,to=~bt.com
|
|
3098
3069
|
||telegra.ph/BT-Business-Communications-$all,to=~bt.com
|
|
3070
|
+
||dazzl.ink/btupdate/$all,to=~bt.com
|
|
3099
3071
|
! gov phishing site
|
|
3100
3072
|
||pttgov*.top^$doc,to=top|~ptt.gov.tr
|
|
3101
3073
|
||irstaxrefunds.$doc,to=~irs.gov
|
|
3102
|
-
! gov.au
|
|
3103
|
-
||seeproc.com.br^$all,to=~my.gov.au
|
|
3104
|
-
||homeinboxlogin.com^$all,to=~my.gov.au
|
|
3105
3074
|
! gov.vn
|
|
3106
3075
|
||thanhtrapcrt.online^$all,to=~thanhtra.gov.vn
|
|
3107
3076
|
||jetkingncsc.online^$all,to=~ncsc.gov.vn
|
|
3108
|
-
! gov.my
|
|
3109
|
-
||portalkemaskinibantuansrt2024.inf1-id1.com^$all,to=~malaysiamadani.gov.my
|
|
3110
3077
|
! gov.it
|
|
3111
3078
|
||agenziaentrateriscossione.com^$all,to=~agenziaentrateriscossione.gov.it
|
|
3112
3079
|
! gov.gr
|
|
3113
3080
|
||aitimaforou.web.app^$all,to=~gov.gr
|
|
3081
|
+
! gov.au
|
|
3082
|
+
||mygovaus-$doc,to=~my.gov.au
|
|
3083
|
+
||seeproc.com.br^$all,to=~my.gov.au
|
|
3114
3084
|
! gov.uk
|
|
3115
3085
|
||liveflo.qxlva.io^$all,to=~gov.uk
|
|
3116
3086
|
||student-finance-auth.firebaseapp.com^$all,to=~gov.uk
|
|
@@ -3153,17 +3123,20 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3153
3123
|
||antaidossiersuivamendimpayeer*.zynekcctv.com^$all,to=~amendes.gouv.fr
|
|
3154
3124
|
||zynekcctv.com/amandes/$doc,to=~amendes.gouv.fr
|
|
3155
3125
|
/amandes/infospage.php^$doc,to=~amendes.gouv.fr
|
|
3126
|
+
/\.codeanyapp\.com\/.+\/(?:3dsece?|infospage|paiement)\.php\b/$doc,match-case,to=codeanyapp.com|~amendes.gouv.fr
|
|
3127
|
+
||codeanyapp.com/pr/rue/$doc,to=~amendes.gouv.fr
|
|
3128
|
+
! id.me
|
|
3129
|
+
||internal-checker.com^$all,to=~id.me
|
|
3130
|
+
||banque-online.com^$all,to=~id.me
|
|
3156
3131
|
! bank
|
|
3157
3132
|
||chamsocthekhachhang-$doc,to=~edu|~gov|~edu.vn|~gov.vn
|
|
3158
3133
|
||uudaikhachhangthe-$doc,to=~edu|~gov|~edu.vn|~gov.vn
|
|
3159
3134
|
||sotuyenvcb.vietcombanker.com^$all,to=~vietcombank.com.vn
|
|
3160
3135
|
||vdbank.com.vn^$all,to=~vdb.gov.vn
|
|
3161
3136
|
||conveyancingportal.com^$all
|
|
3162
|
-
||canhantpb.com^$all,to=~tpb.vn
|
|
3163
3137
|
||bmoreferral.com^$all,to=~bmo.com
|
|
3164
3138
|
||personas.devbam.com^$all,to=~bam.com.gt
|
|
3165
3139
|
||negociebra.com.br^$all,to=~banco.bradesco
|
|
3166
|
-
||itaconsorciodigital.com.br^$all,to=~itau.com.br
|
|
3167
3140
|
||wizardpayroll.com.ar^$all,to=~hsbc.com
|
|
3168
3141
|
||spareb1.com^$all,to=~sparebank1.no
|
|
3169
3142
|
||amigosdelasfinanzas.com^$all,to=~bancocajasocial.com
|
|
@@ -3176,16 +3149,14 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3176
3149
|
||gaoyinjiao.com^$all,to=~jabank.jp
|
|
3177
3150
|
||activatecustomerduesupportdillegence.com^$all,to=~asb.co.nz
|
|
3178
3151
|
||nyfinance.ru^$all,to=~nykredit.com
|
|
3152
|
+
||wester-union-u.vercel.app^$all,to=~westernunion.com
|
|
3179
3153
|
/^https:\/\/tpbank\.[-a-z0-9]{5,}\.[a-z]{3}(?:\.vn)?\//$doc,to=~edu|~gov|~gov.vn|~tpb.vn
|
|
3180
|
-
||mybluehost.me/service/*/nkl-log.php$doc,to=~nickel.eu
|
|
3181
|
-
||turkiyecumhuriyetiziraatbankasi.com^$all,to=~ziraatbank.com.tr
|
|
3182
3154
|
||ewp.live/*/pages/region.php^$doc
|
|
3183
3155
|
||glitch.me/*/nationwide^$doc,to=~nationwide.co.uk
|
|
3184
3156
|
||mybluehost.me/ameli/$doc,to=~ameli.fr
|
|
3185
3157
|
/28kxhS^$doc,to=online|shop|top|~sberbank.ru
|
|
3186
3158
|
||xyz/akbank/$doc,to=xyz|~akbank.com
|
|
3187
3159
|
/views/choice/*/start.php^$doc
|
|
3188
|
-
||sparkasse-oberhessen.info^$all,to=~sparkasse.de
|
|
3189
3160
|
||skylarkspb.ru/raiffeisentwint/$all,to=~raiffeisen.ch
|
|
3190
3161
|
||hclsoftware.cloud/*/tdbanknotes^$all,to=~td.com
|
|
3191
3162
|
/wp-content/ntww/natwest3/*.php^$doc,to=~natwest.com
|
|
@@ -3196,9 +3167,25 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3196
3167
|
||ingresocancelacion.wixsite.com^$all,to=~bb.com.mx
|
|
3197
3168
|
||wixsite.com/foliobanbajio$doc,to=~bb.com.mx
|
|
3198
3169
|
||shahidulislamaurko.com^$all,to=~vr.de
|
|
3170
|
+
||sunnysani.com/lb/$all,to=~landbank.com
|
|
3171
|
+
||caixa-login-banco-home-login-auth-h.codeanyapp.com^$all,to=~caixabank.es
|
|
3172
|
+
||caixa-*.codeanyapp.com^$doc,to=~caixabank.es
|
|
3173
|
+
||codeanyapp.com/Caixanow/$doc,to=~caixabank.es
|
|
3174
|
+
! nickel.eu
|
|
3175
|
+
||mybluehost.me/service/*/nkl-log.php$doc,to=~nickel.eu
|
|
3176
|
+
||sviluppo.host/dl/NickelTru/$doc,to=~nickel.eu
|
|
3177
|
+
||biblio.sviluppo.host^$doc
|
|
3178
|
+
! dkb.de
|
|
3199
3179
|
||www-winbank-lfremhmida*.codeanyapp.com^$doc,to=~dkb.de
|
|
3200
3180
|
||codeanyapp.com/*/DKB_new/$doc,to=~dkb.de
|
|
3201
|
-
||
|
|
3181
|
+
||laurenmjackson.serv00.net^$doc,to=~dkb.de
|
|
3182
|
+
||serv00.net/*/dkb/$doc,to=~dkb.de
|
|
3183
|
+
! sparkasse.de
|
|
3184
|
+
||sparkasse-safety.de^$all,to=~sparkasse.de
|
|
3185
|
+
||sparkasse-oberhessen.info^$all,to=~sparkasse.de
|
|
3186
|
+
! itau.com.br
|
|
3187
|
+
||itaconsorciodigital.com.br^$all,to=~itau.com.br
|
|
3188
|
+
||supporthives.com/public/ita/$all,to=~itau.com.br
|
|
3202
3189
|
! hype.it
|
|
3203
3190
|
||correopackvia.freewebhostmost.com^$all,to=~hype.it
|
|
3204
3191
|
||freewebhostmost.com/DARKSIDE/hype/$doc,to=~hype.it
|
|
@@ -3218,14 +3205,11 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3218
3205
|
! bbva
|
|
3219
3206
|
||bbvaar.zeabur.app^$all,to=~bbva.com
|
|
3220
3207
|
||programajourney.com^$all,to=~bbva.pt
|
|
3221
|
-
! targobank
|
|
3222
|
-
||targobank-kontowechselservice.de^$all,to=~targobank.de
|
|
3223
3208
|
||mybluehost.me/meke/cc/clients/$doc,to=~targobank.de
|
|
3224
3209
|
! bancodevenezuela.com
|
|
3225
3210
|
||bdvenlinea*.pages.dev^$doc,to=~bancodevenezuela.com
|
|
3226
3211
|
||bdvenlineaconfirmate.pages.dev^$all,to=~bancodevenezuela.com
|
|
3227
3212
|
||bdvenlinea-banvenez-beram.pages.dev^$all,to=~bancodevenezuela.com
|
|
3228
|
-
||bdvenlineabanven.line.pm^$all,to=~bancodevenezuela.com
|
|
3229
3213
|
! shinhan
|
|
3230
3214
|
||tinchapshinhan.online^$all,to=~shinhan.com.vn
|
|
3231
3215
|
||sites.google.com/view/shinhan-fiinance/^$all,to=~shinhan.com.vn
|
|
@@ -3233,8 +3217,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3233
3217
|
||americanexpressempresas.com^$all,to=~americanexpress.com
|
|
3234
3218
|
||r2.dev/blobamexbsatt.html^$doc,to=~americanexpress.com
|
|
3235
3219
|
||amxprd.com^$doc,to=~americanexpress.com
|
|
3220
|
+
/wp-admin/user/americanexpresss-com-login-true-verify.$doc,to=~americanexpress.com
|
|
3236
3221
|
! santander
|
|
3237
|
-
||santanderstaging.interviewtoolkit.io^$all
|
|
3238
3222
|
||recompensaszurichsantander.com.mx^$all
|
|
3239
3223
|
||santander.cf.sandbox.motrada.ch^$all,to=~santanderbank.com|~santander.co.uk
|
|
3240
3224
|
||santanderpod.*.co.uk^$all
|
|
@@ -3242,16 +3226,16 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3242
3226
|
||dhl.*.potabox.com^$doc,to=~dhl.com
|
|
3243
3227
|
||dhl-event.app^$all,to=~dhl.com
|
|
3244
3228
|
||dhexpress.weebly.com^$all,to=~dhl.com
|
|
3245
|
-
||delivery.attempt.failure.ebbs.co.za^$all,to=~dhl.com
|
|
3246
|
-
||deliverytodayrequest.com^$all,to=~dhl.com
|
|
3247
3229
|
||ltlweight.trgr.me^$all,to=~dhl.com
|
|
3248
3230
|
||dhlproductosyservicios.com^$all,to=~dhl.com
|
|
3231
|
+
||dhl-rpa-portal.infanion.com^$all,to=~dhl.com
|
|
3249
3232
|
||sites.google.com/view/expressdhl^$all,to=~dhl.com
|
|
3250
3233
|
||xn--d1aqfkf.xn--p1ai/bitrix/.../GlobalSources/$all,to=~dhl.com
|
|
3251
3234
|
||app.farmaciadelmonestironline.com/SER/dnkdl/$all,to=~dhl.com
|
|
3252
3235
|
||cricketbettingpro.com/home.html/autoload.html^$all,to=~dhl.com
|
|
3253
3236
|
||itmustbetime.com/content/uploads/products/china/china/index.php^$all,to=~dhl.com
|
|
3254
3237
|
||leatherqueen.shop^$all
|
|
3238
|
+
! uat.dhl-express-ppd.infanion.com
|
|
3255
3239
|
||dhl-express-ppd.infanion.com^$all,to=~dhl.com
|
|
3256
3240
|
||elementor.cloud/*/ENGHUY645/$doc,to=~dhl.com
|
|
3257
3241
|
||mybluehost.me/*/phpmailer/src/dh/$doc,to=~dhl.com
|
|
@@ -3260,12 +3244,11 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3260
3244
|
||goldsystem.com.br/amds/css/secure/dhlFR^$doc,to=~dhl.com
|
|
3261
3245
|
||elementor.cloud/*/ESDHL/$doc,to=~dhl.com
|
|
3262
3246
|
/tracking/fV5EjH/*.php^$doc,to=~dhl.com
|
|
3263
|
-
||youronlinetrraackkkk.freewebhostmost.com^$all,to=~dhl.com
|
|
3264
3247
|
||delivery-globaldhlauth.github.io^$all,to=~dhl.com
|
|
3265
3248
|
||github.io/samedaydelivery/$doc,to=~dhl.com
|
|
3266
3249
|
||myjobdhl.earcu.com^$all,to=~dhl.com
|
|
3250
|
+
||cere.network/*-dhlshipmailchecker.shtml^$doc,to=~dhl.com
|
|
3267
3251
|
! whatsapp
|
|
3268
|
-
||ann.tess1.top^$all
|
|
3269
3252
|
||firavave.club^$all
|
|
3270
3253
|
||play.funfourmob.com^$all
|
|
3271
3254
|
||fevertime.com/wasop/$all
|
|
@@ -3288,7 +3271,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3288
3271
|
||notificationbyfacebook.firebaseapp.com^$all
|
|
3289
3272
|
||notificationbyfacebook.web.app^$all
|
|
3290
3273
|
||business-facebook-*.pages.dev^$all
|
|
3291
|
-
||unusualaccountcnfrmpages.github.io^$all
|
|
3292
3274
|
||ads-verification-for-pay.vercel.app^$all
|
|
3293
3275
|
||business-manange.com^$all
|
|
3294
3276
|
||lucky-gift-ph24new.online^$all
|
|
@@ -3296,6 +3278,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3296
3278
|
||facebook-guidelines.com^$all
|
|
3297
3279
|
||certify-issues-details-case.netlify.app^$all
|
|
3298
3280
|
||meta-accessibility.io.vn^$all
|
|
3281
|
+
||confirmationhelpmeta.io.vn^$all,to=~facebook.com
|
|
3299
3282
|
||mfacebook-com.vn^$all
|
|
3300
3283
|
||www-mfacebook.$doc
|
|
3301
3284
|
||www-facebooks.$doc
|
|
@@ -3310,7 +3293,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3310
3293
|
||facebooks-com.vn^$all
|
|
3311
3294
|
||mobile-facebook.com.vn^$all
|
|
3312
3295
|
||m-facebookk.com.vn^$all
|
|
3313
|
-
||mfacebook.net.vn^$all
|
|
3314
3296
|
||mfacebookk.com.vn^$all
|
|
3315
3297
|
||fakeserhelpsreivew-facesonseriengoies-16839.io.vn^$all
|
|
3316
3298
|
||fakeserhelpsreivew-$doc
|
|
@@ -3329,7 +3311,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3329
3311
|
||transparency-business.com^$all
|
|
3330
3312
|
||http://marketplace-item-details-*.zya.me^$all
|
|
3331
3313
|
||mediacontrolcenters.com^$all
|
|
3332
|
-
||supportcreatorportal.com^$all
|
|
3333
3314
|
||info-meta-noreply.com^$all
|
|
3334
3315
|
/^https:\/\/business\.[a-z]+confii?rm\.com\/meta-community-standard\d{14,15}[^\d]?/$doc,match-case,to=com|~facebook.com
|
|
3335
3316
|
/^https:\/\/business-component\.[a-z]+(-[a-z]+){2}\.com\//$doc,to=com|~facebook.com
|
|
@@ -3338,10 +3319,8 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3338
3319
|
/\.workers\.dev\/help\/\d{14,19}\b/$doc,to=workers.dev|~facebook.com
|
|
3339
3320
|
||royal-glade-286f.kdsj.workers.dev^$doc
|
|
3340
3321
|
/\.(?:boats|cfd)\/contract\/\d{14,19}\b/$doc,match-case,to=boats|cfd|~facebook.com
|
|
3341
|
-
||business-center-$doc
|
|
3342
3322
|
||meta.com-case*.com/help/contact/$doc
|
|
3343
3323
|
||helps-center-page-number-$doc
|
|
3344
|
-
||business-manager-report.com^$all
|
|
3345
3324
|
||support-16.ubpages.com^$all
|
|
3346
3325
|
/\.(?:pages\.dev|vercel\.app)\/appeal_case_id\b/$doc,to=pages.dev|vercel.app
|
|
3347
3326
|
/^https:\/\/(?:appeal|contact|page)\.[a-z]{15,}\.com\/appeal_case_id\b/$doc,to=com|~facebook.com
|
|
@@ -3361,6 +3340,12 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3361
3340
|
/^https:\/\/h5\.[a-z0-9]{4}\.com\//$doc,to=com
|
|
3362
3341
|
||vercel.app/mixcc.html/$doc,to=~facebook.com
|
|
3363
3342
|
||live-metasupport.com^$all,to=~facebook.com
|
|
3343
|
+
||infringement-service.com^$all,to=~facebook.com
|
|
3344
|
+
||supportadm7tmedia.online^$all,to=~facebook.com
|
|
3345
|
+
||befuls.shop^$all,to=~facebook.com
|
|
3346
|
+
||facebook-mobiia.click^$all,to=~facebook.com
|
|
3347
|
+
||businessrequestcenter.com^$all,to=~facebook.com
|
|
3348
|
+
||businesscreatorportal.com^$all,to=~facebook.com
|
|
3364
3349
|
! shopping sites
|
|
3365
3350
|
/api/user/do_login|$xhr,1p,to=com|info,method=post,header=access-control-allow-headers:/authorization\,content-type\,if-match\,if-modified-since\,if-none-match\,if-unmodified-since\,x-requested-with/i
|
|
3366
3351
|
/api/user/do_login|$xhr,1p,to=com|info,method=post,header=Access-Control-Allow-Headers:/authorization\,content-type\,if-match\,if-modified-since\,if-none-match\,if-unmodified-since\,x-requested-with/i
|
|
@@ -3379,32 +3364,29 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3379
3364
|
||sp.zhabite.com^$all
|
|
3380
3365
|
||sp.aircsgo.com^$all
|
|
3381
3366
|
||st.aircsgo.com^$all
|
|
3382
|
-
||steamfiller.ru^$all
|
|
3383
|
-
||11steam.com^$all
|
|
3384
3367
|
||gtm.you1.cn^$all
|
|
3385
3368
|
||steamxiazai.cn^$all
|
|
3386
3369
|
||steam.zssjsq.com^$all
|
|
3387
3370
|
||steamtopup.ru^$all
|
|
3388
3371
|
||steamcommunitylog.chez.com^$all
|
|
3372
|
+
||steam.iplay.fit^$all
|
|
3389
3373
|
||steam.workshop*.com^$doc
|
|
3390
|
-
/^https:\/\/
|
|
3374
|
+
/^https:\/\/st[ace][ae][a-z]{1,4}o[mn][a-z]{4,8}y[a-z]?\.com\//$doc,to=com|~steamcommunity.com
|
|
3391
3375
|
/^https:\/\/steam\.(?:community)?workshop-?[a-z]+\.com\//$doc,to=com|~steamcommunity.com
|
|
3392
3376
|
||steam.communityart-work.com^$all
|
|
3393
3377
|
||steamcomuniry.com^$all
|
|
3394
3378
|
||steamcommunlyt.com^$all
|
|
3395
3379
|
||steemcommuntiy.com^$all
|
|
3396
3380
|
||stemcommunty.com^$all
|
|
3397
|
-
||staemcommunnitty.com^$all
|
|
3398
|
-
||staemcomunnutty.com^$all
|
|
3399
3381
|
||workshop-users.com^$all
|
|
3400
3382
|
||cn-steam.com^$all
|
|
3401
3383
|
||com/p/jcod-ppsr/huasdirjdo^$doc,to=~steamcommunity.com
|
|
3384
|
+
/redeemwalletcode/gift/*$doc,to=~steamcommunity.com|~steampowered.com
|
|
3402
3385
|
! garena
|
|
3403
3386
|
/^https:\/\/(?:www\.)?(?:ff[-.])?member[-.]gare[a-z]+a(?:\.pro)?\.vn\//$doc,to=vn|~garena.vn
|
|
3404
3387
|
/^https:\/\/(?:www\.)?(?:ff[-.])?men?mber[-.]garena\.vn\//$doc,to=vn|~garena.vn
|
|
3405
3388
|
||garerna.vn^$all,to=~garena.vn
|
|
3406
3389
|
||gasenna.id.vn^$all,to=~garena.vn
|
|
3407
|
-
||garenaa.id.vn^$all,to=~garena.vn
|
|
3408
3390
|
||gaerana.io.vn^$all,to=~garena.vn
|
|
3409
3391
|
||gasenna.io.vn^$all,to=~garena.vn
|
|
3410
3392
|
||gerarna.io.vn^$all,to=~garena.vn
|
|
@@ -3412,21 +3394,18 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3412
3394
|
||doivangfreefiregarena.io.vn^$all,to=~garena.vn
|
|
3413
3395
|
||garenae.vn^$all,to=~garena.vn
|
|
3414
3396
|
||garenaea.vn^$all,to=~garena.vn
|
|
3415
|
-
||garecna.vn^$all,to=~garena.vn
|
|
3416
3397
|
! mobilelegends
|
|
3417
3398
|
||mobilelegendsmycode.com^$all
|
|
3418
3399
|
||exchange-mlbb.go-midfer.com^$all
|
|
3419
3400
|
! pubg
|
|
3420
3401
|
||pubg-arena.top^$all
|
|
3421
3402
|
||register-turnamen.free.nf^$all
|
|
3422
|
-
||pubgm-zing-vn.com^$all
|
|
3423
3403
|
||sukien-pubg.io.vn^$all
|
|
3424
3404
|
||napthepubg.mobi^$all
|
|
3425
3405
|
/volt/*?nox=$doc,to=ai|com
|
|
3426
3406
|
||kraftonevent.com^$all
|
|
3427
3407
|
||pubgxbest.com^$all
|
|
3428
3408
|
! google
|
|
3429
|
-
||google-stare.com^$all
|
|
3430
3409
|
||play-quartz-sanctuary.xyz^$doc
|
|
3431
3410
|
||datahub.center^$all
|
|
3432
3411
|
||channelhub.info^$all
|
|
@@ -3447,9 +3426,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3447
3426
|
||graettingerlaw.com^$all
|
|
3448
3427
|
||post.nationalrent.ru^$all
|
|
3449
3428
|
||gocolonial.local-user.com^$all
|
|
3450
|
-
||skype-com.cn^$all
|
|
3451
3429
|
||officesoftcn.com^$all
|
|
3452
|
-
||sishui.site^$all
|
|
3453
3430
|
||athenasbaklava.com^$all
|
|
3454
3431
|
||e-outlook-online.com^$all
|
|
3455
3432
|
||serverdata.ch^$all
|
|
@@ -3461,7 +3438,7 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3461
3438
|
||santangelo.eng.br/owasetup/$all
|
|
3462
3439
|
||arvgroup.az/hash/$all
|
|
3463
3440
|
||pages.dev/smart89/$doc
|
|
3464
|
-
/^https:\/\/[a-f0-9]{58}\.pages\.dev\//$doc,to=pages.dev
|
|
3441
|
+
/^https:\/\/(?:[a-f0-9]+\.)?[a-f0-9]{58}\.pages\.dev\//$doc,to=pages.dev
|
|
3465
3442
|
||acir.postofficeweb.com/grupoacir/$all
|
|
3466
3443
|
||storageapi-new.fleek.co/*/yss/ind.html$all
|
|
3467
3444
|
||wwwservicemsnlive-*.hubspotpagebuilder.com^$all
|
|
@@ -3484,8 +3461,10 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3484
3461
|
:8443/impact?impact=$doc
|
|
3485
3462
|
||todordigital.co.uk^$all
|
|
3486
3463
|
||pub-*.r2.dev/owa.html^$doc
|
|
3464
|
+
||pub-*.r2.dev/owasecure.htm^$doc
|
|
3487
3465
|
||pub-*.r2.dev/onecode55.html^$doc
|
|
3488
3466
|
||pub-*.r2.dev/OneDrive.html^$doc
|
|
3467
|
+
||pub-*.r2.dev/auth_type.html^$doc
|
|
3489
3468
|
||enexdirecto.com^$all
|
|
3490
3469
|
||ccefactoring.com.br/ziujhyhtrer/$doc
|
|
3491
3470
|
/Message%20Centre/mc.php^$doc
|
|
@@ -3513,9 +3492,10 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3513
3492
|
||authsignonstaff*.softr.app^$all
|
|
3514
3493
|
||facture-pdf-secure-*.vercel.app^$all
|
|
3515
3494
|
||hkwordpress.com/public/export/SM-ORDER/excelz/$doc
|
|
3495
|
+
||msoftupdate.*.linodeobjects.com^$all
|
|
3496
|
+
||slobeg.com^$all
|
|
3516
3497
|
! telegram
|
|
3517
3498
|
||telegramhcn.com^$all
|
|
3518
|
-
||newappmssg.ru^$all
|
|
3519
3499
|
||brawllstars.ru^$all
|
|
3520
3500
|
||telegremapp.me^$all
|
|
3521
3501
|
||telegerasm.work^$all
|
|
@@ -3526,24 +3506,23 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3526
3506
|
||dxyezzxkrvqf.top^$all
|
|
3527
3507
|
||telergaom.top^$all
|
|
3528
3508
|
||telergctm.vip^$all
|
|
3509
|
+
||teiegram.work^$all
|
|
3510
|
+
||telegramtn.com^$all
|
|
3511
|
+
||cmtg1.com^$all
|
|
3529
3512
|
||telegrambotsolution.pages.dev^$all
|
|
3530
3513
|
/^https:\/\/www\.telegramk[a-z]\.com\//$doc,to=com|~telegram.org
|
|
3531
|
-
||telegramkv.com^$all
|
|
3532
|
-
||telegramkp.com^$all
|
|
3533
|
-
||cdn-telegram.com^$all
|
|
3534
|
-
||telegramkd.com^$all
|
|
3535
|
-
||telegram-zhongwen.com^$all
|
|
3536
3514
|
||rr.nu^$doc
|
|
3537
3515
|
/^https:\/\/ht[a-z]\d{2}\.vip\//$doc,to=vip
|
|
3538
3516
|
||recouphh.top^$all
|
|
3539
3517
|
||recovery-cr.top^$all
|
|
3540
3518
|
||recovery-gzo.top^$all
|
|
3541
3519
|
/^https:\/\/xy[a-z]\d{2}\.cc\//$doc,to=cc
|
|
3520
|
+
||telegram-*.com/login/index.html^$all
|
|
3521
|
+
||d*wsapp.icu^$doc
|
|
3522
|
+
||telezelm-*.icu^$doc
|
|
3523
|
+
||whatsapp*.icu^$doc
|
|
3542
3524
|
! usps
|
|
3543
3525
|
||uspsparcels.net^$all,to=~usps.com
|
|
3544
|
-
||freeusps.com^$all,to=~usps.com
|
|
3545
|
-
||netusps.com^$all,to=~usps.com
|
|
3546
|
-
||uspssmartpackagelockers.com^$all,to=~usps.com
|
|
3547
3526
|
/^https:\/\/usps\.[-a-z]{6,}\.(?:com|top)\/(?:address\.html|information|verify)\b/$doc,to=com|top|~usps.com
|
|
3548
3527
|
.top/pg?do=$doc,to=top
|
|
3549
3528
|
||wrc-gh.org/redelivery$doc,to=~usps.com
|
|
@@ -3555,23 +3534,35 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3555
3534
|
||mybluehost.me/UNITEDSTATESPOSTAL/$doc,to=~usps.com
|
|
3556
3535
|
||yah.ppl.mybluehost.me^$doc,to=~usps.com
|
|
3557
3536
|
/^https:\/\/transporta[a-z]{8,9}pro\.top\/i\b/$doc,to=top|~usps.com
|
|
3537
|
+
/^https:\/\/[a-z]\.[a-z]{10,}\.top\/us(?:\/|$)/$doc,to=top|~usps.com
|
|
3538
|
+
||infotracklms.top^$all,to=~usps.com
|
|
3539
|
+
/^https:\/\/[a-z]\.[a-z]{10,}\.top\/l(?:\/|$)/$doc,to=top|~usps.com
|
|
3558
3540
|
||usps.*.top^$doc,to=top|~usps.com
|
|
3559
3541
|
||wpenginepowered.com/usps/$doc,to=~usps.com
|
|
3542
|
+
||usps.*.sbs^$doc,to=~usps.com
|
|
3543
|
+
||uspac.sbs^$all,to=~usps.com
|
|
3544
|
+
||informed.delivery*.top^$all,to=~usps.com
|
|
3545
|
+
||info-tracking*.cc^$all,to=~usps.com
|
|
3560
3546
|
! weebly/square phishing
|
|
3561
3547
|
/^https:\/\/(?:[a-z0-9]{2,}-)+10\d{4}\.weeblysite\.com\//$doc,to=weeblysite.com
|
|
3562
3548
|
/^https:\/\/(?:[a-z0-9]{2,}-)+10\d{4}\.square\.site\//$doc,to=square.site
|
|
3563
3549
|
! spotify
|
|
3564
3550
|
||upgradeyourspotify.cc^$all
|
|
3551
|
+
||keepo.io/opddater-spotifykonto-informas/$all
|
|
3565
3552
|
/^https:\/\/[^.]+\.codeanyapp\.com\/wp-content\/.+\/spo[a-z]{2}i\//$doc,to=codeanyapp.com
|
|
3566
3553
|
||codeanyapp.com/*/spotii/$all
|
|
3567
3554
|
||codeanyapp.com/*/spoofi/$all
|
|
3568
3555
|
||mybluehost.me/*/MitID/$doc
|
|
3569
3556
|
||airpos.co.kr/.well-known/pki-validation/*/MitID/$doc
|
|
3570
3557
|
||autolocksmithpro.com/spt/$all
|
|
3558
|
+
||spoti-safe-support*.codeanyapp.com^$all,to=~spotify.com
|
|
3559
|
+
||spoti-*.codeanyapp.com^$doc,to=~spotify.com
|
|
3571
3560
|
||mybluehost.me/spot/Account/$doc
|
|
3572
3561
|
||mybluehost.me/dse/main/$doc
|
|
3573
3562
|
||mybluehost.me/MUSIC/SPOTIFY24K/$doc
|
|
3574
3563
|
||veratv-mtic.vera.com.uy/r/$doc
|
|
3564
|
+
||westpace-support.freewebhostmost.com^$doc
|
|
3565
|
+
||freewebhostmost.com/*/spotify/$doc
|
|
3575
3566
|
! swisspass
|
|
3576
3567
|
||divinedownload.com^$all,to=~swisspass.ch
|
|
3577
3568
|
||swiss-passapp.web.app^$all,to=~swisspass.ch
|
|
@@ -3625,7 +3616,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3625
3616
|
||wcomhost.com/ch/upc/$all,to=~upc.ch
|
|
3626
3617
|
||mememoguls.vip^$doc,to=~mememoguls.com
|
|
3627
3618
|
||spendabit-payment.xyz^$doc,to=~spendabit.co
|
|
3628
|
-
||hub-migrationcardano.com^$doc,to=~cardano.org
|
|
3629
3619
|
||oeth-airdrop.com^$doc,to=~originprotocol.com
|
|
3630
3620
|
||web-tonkeep.website^$doc,to=~tonkeeper.com
|
|
3631
3621
|
||sparkflaretrustline.xyz^$doc,to=~flare.network
|
|
@@ -3644,7 +3634,6 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3644
3634
|
||baseeddbrettt.com^$doc,to=~basedbrett.com
|
|
3645
3635
|
||whitelist-memefi.com^$doc,to=~memefi.club
|
|
3646
3636
|
||bnbfour.net^$doc,to=~bnbfour.meme
|
|
3647
|
-
||laeer3xyz.com^$doc,to=~layer3.xyz
|
|
3648
3637
|
||cyberblast.info^$doc,to=~cyberblast.io
|
|
3649
3638
|
||gz-gmy.com^$all,to=~paxos.com
|
|
3650
3639
|
||tokenpocket-com.cc^$all,to=~tokenpocket.pro
|
|
@@ -3707,16 +3696,15 @@ torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
|
3707
3696
|
||baseguardauth.net^$all,to=~coinbase.com
|
|
3708
3697
|
||coinbase-yield.info^$all,to=~coinbase.com
|
|
3709
3698
|
||cbnotifser.top^$all,to=~coinbase.com
|
|
3710
|
-
||coin-notif.top^$all,to=~coinbase.com
|
|
3711
3699
|
||koinssendspro.top^$all,to=~coinbase.com
|
|
3712
3700
|
||e-stata.ru/track/1/$all,to=~coinbase.com
|
|
3713
|
-
/^https
|
|
3701
|
+
/^https:\/\/(?:[^.]+\.)?\d{6}-coinbase\.com\//$doc,to=com|~coinbase.com
|
|
3714
3702
|
||178368-coinbase.com^$all,to=~coinbase.com
|
|
3715
3703
|
||llq.rsq.mybluehost.me^$all,to=~coinbase.com
|
|
3716
3704
|
||mybluehost.me/wp-admin/maajoun/$doc,to=~coinbase.com
|
|
3705
|
+
||mail.*-coinbase.com^$doc,to=~coinbase.com
|
|
3717
3706
|
! imtoken
|
|
3718
3707
|
||imtoken.org.cn^$all,to=~token.im
|
|
3719
|
-
||imcosom.com^$all,to=~token.im
|
|
3720
3708
|
||scszdm.com^$all,to=~token.im
|
|
3721
3709
|
app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([class])
|
|
3722
3710
|
! pancakeswap
|
|
@@ -3726,6 +3714,8 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3726
3714
|
||pancake-swap*.vercel.app^$doc,to=~pancakeswap.finance
|
|
3727
3715
|
||pancake-nft*.vercel.app^$doc,to=~pancakeswap.finance
|
|
3728
3716
|
||pancakeclaim-*.vercel.app^$doc,to=~pancakeswap.finance
|
|
3717
|
+
! microsoft.microsoftedge.pancakeswap.finance.expolorer.im
|
|
3718
|
+
||pancakeswap.finance.expolorer.im^$all,to=~pancakeswap.finance
|
|
3729
3719
|
||pancake.run^$all,to=~pancakeswap.finance
|
|
3730
3720
|
||pay8-2v-*-gmailcom.vercel.app^$all,to=~pancakeswap.finance
|
|
3731
3721
|
! openphish
|
|
@@ -3736,11 +3726,12 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3736
3726
|
||vangphutai.com^$all,to=~vangphutai.vn
|
|
3737
3727
|
||autoscurt24.de^$all,to=~autoscout24.de
|
|
3738
3728
|
||hk668.cc^$all,to=~yahoo.com
|
|
3739
|
-
||internal-checker.com^$all,to=~id.me
|
|
3740
3729
|
||dc.tensgpt.com^$all,to=~discord.com
|
|
3741
3730
|
||mol-finance.top^$all,to=~mol.co.jp
|
|
3742
3731
|
||carrefour-enbacktoschool4.pages.dev^$all,to=~carrefour.com
|
|
3743
3732
|
||sacolamobile.influenciadormagalu.com.br^$all,to=~sacola.magazineluiza.com.br
|
|
3733
|
+
||globalgrainsadf.com^$all,to=~globalgrain.us
|
|
3734
|
+
||vzla-qr.com^$all,to=~usaa.com
|
|
3744
3735
|
||beluxrepm.followme.fr/FolloWMe$all,to=~realestate.bnpparibas.com
|
|
3745
3736
|
||mybluehost.me/Cope346/$all
|
|
3746
3737
|
||tesakom.com/aa/index.html^$all,to=~ebestsec.co.kr
|
|
@@ -3792,13 +3783,14 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3792
3783
|
||pub-*.r2.dev/traffic.html^$doc,to=~docusign.com
|
|
3793
3784
|
||pub-*.r2.dev/utility_base.html^$doc,to=~docusign.com
|
|
3794
3785
|
||pub-*.r2.dev/docuss_3456787654324567897865433456789.html^$doc,to=~docusign.com
|
|
3786
|
+
||pub-*.r2.dev/gatewaymyoffice.html^$doc,to=~docusign.com
|
|
3787
|
+
||s3.amazonaws.com/*_singlesigninh.html^$doc
|
|
3795
3788
|
||vieclamlazada.vn^$all,to=~lazada.vn
|
|
3796
3789
|
||didongvietstore.com^$all,to=~didongviet.vn
|
|
3797
3790
|
||tin-dung-$doc
|
|
3798
3791
|
||khcn-tindung-$doc
|
|
3799
3792
|
||viettelgroup.com^$all,to=~viettel.com.vn
|
|
3800
3793
|
||khach-hang-the-$doc
|
|
3801
|
-
||lazada.gg^$all
|
|
3802
3794
|
||chamsockhachhang-$doc
|
|
3803
3795
|
! /^https:\/\/hdsaison-?[a-z]{2,}\.(?:cc|com|vip)\//$doc,to=cc|com|vip|~hdsaison.com.vn
|
|
3804
3796
|
/^https?:\/\/dienmayxanh[-a-z0-9]+\.com\//$doc,to=com|~dienmayxanh.com
|
|
@@ -3815,8 +3807,6 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3815
3807
|
||taikhoanvps.com.vn^$all,to=~vps.com.vn
|
|
3816
3808
|
||motaikhoanchungkhoanvps.com^$all,to=~vps.com.vn
|
|
3817
3809
|
||zla963.top^$all,to=~tiki.vn
|
|
3818
|
-
||zla653.top^$all,to=~tiki.vn
|
|
3819
|
-
||tah0a.com^$all,to=~tiki.vn
|
|
3820
3810
|
||dailyssshopee.com^$all,to=~shopee.vn
|
|
3821
3811
|
||clzl.pro^$all,to=~momo.vn
|
|
3822
3812
|
||tpbankvn.workplace.com^$all,to=~tpb.vn
|
|
@@ -3834,23 +3824,17 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3834
3824
|
||uudai-tructuyen-$doc
|
|
3835
3825
|
||uudaikhachhang-$doc
|
|
3836
3826
|
||nang-hang-$doc
|
|
3837
|
-
||businesseventskp.top^$all,to=~tiki.vn
|
|
3838
3827
|
||mojgov.weebly.com^$all,to=~moj.gov.vn
|
|
3839
3828
|
||chinhphu.cc^$all,to=~chinhphu.vn
|
|
3840
|
-
||tcvnhomefic.com^$all,to=~mbbank.com.vn
|
|
3841
3829
|
||lapdatinternet.net^$all,to=~sctv.com.vn
|
|
3842
3830
|
||hethongnhanvien.com^$all,to=~lazada.vn
|
|
3843
3831
|
||lazadaevent.com^$all,to=~lazada.vn
|
|
3844
3832
|
||baovietcom.vip^$all,to=~baovietbank.vn
|
|
3845
3833
|
||hethongvaynhanh247.com^$all
|
|
3846
3834
|
||bethivetranh2024.weebly.com^$all
|
|
3847
|
-
||ebaymall168.shop^$all
|
|
3848
3835
|
||flikois.com^$all
|
|
3849
|
-
||371j.xyz^$all
|
|
3850
3836
|
||momoshopvip.com^$all,to=~momo.vn
|
|
3851
3837
|
||baovietn.vip^$all,to=~baovietbank.vn
|
|
3852
|
-
||shopeesopp.com^$all,to=~shopee.vn
|
|
3853
|
-
||vnviettel.com^$all,to=~viettel.com.vn
|
|
3854
3838
|
||mmbonline01.com^$all,to=~mbbank.com.vn
|
|
3855
3839
|
||govn.cc^$all,to=~gov.vn
|
|
3856
3840
|
||baoviet.vip^$all,to=~baovietbank.vn
|
|
@@ -3892,9 +3876,7 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3892
3876
|
||svgov.cc^$all,to=~gov.vn
|
|
3893
3877
|
||bcavnvnvngov.com^$all,to=~bocongan.gov.vn
|
|
3894
3878
|
||hangtietkiem.online^$all,to=~giaohangtietkiem.vn
|
|
3895
|
-
||giaohangtietkiemvietnam.com^$all,to=~giaohangtietkiem.vn
|
|
3896
3879
|
||vamcvn.org^$all,to=~sbvamc.vn
|
|
3897
|
-
||tongcongtygiaohangtietkiem.com^$all,to=~giaohangtietkiem.vn
|
|
3898
3880
|
||uudauthekhachhanh-$doc
|
|
3899
3881
|
||chamsocthe-$doc
|
|
3900
3882
|
||amazoul.xyz^$all
|
|
@@ -3916,7 +3898,6 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3916
3898
|
||dienlanhdienmayxanhvn.com^$all,to=~dienmayxanh.com
|
|
3917
3899
|
||sendo1.com^$all,to=~sendo.vn
|
|
3918
3900
|
||evnnpcs.com^$all,to=~evn.com.vn
|
|
3919
|
-
||korshoptiktok.com^$all,to=~tiktok.com
|
|
3920
3901
|
||cskhtructuyen-$doc
|
|
3921
3902
|
||shopamzselling.com^$all
|
|
3922
3903
|
||brvgov.com^$all
|
|
@@ -3930,9 +3911,7 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3930
3911
|
||tiktok-svip*.com^$all,to=~tiktok.com
|
|
3931
3912
|
||evaluatetravels.com^$all,to=~traveloka.com
|
|
3932
3913
|
||ocbcccreonline.com^$all,to=~ocb.com.vn
|
|
3933
|
-
||khachhangcnvib.com^$all,to=~vib.com.vn
|
|
3934
3914
|
||vimoney.credit^$all,to=~mbbank.com.vn
|
|
3935
|
-
||ungdung6buoc.com^$all,to=~mbbank.com.vn
|
|
3936
3915
|
||evnsp.com^$all,to=~evn.com.vn
|
|
3937
3916
|
||evnsspc.com^$all,to=~evn.com.vn
|
|
3938
3917
|
||sellings-global.com^$all
|
|
@@ -3940,6 +3919,22 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
3940
3919
|
||zvogo.com^$all
|
|
3941
3920
|
||wrgov.com^$all,to=~gov.vn
|
|
3942
3921
|
||vn-chinhphu.com^$all,to=~dichvucong.gov.vn
|
|
3922
|
+
||khach-hang-$doc
|
|
3923
|
+
||nhantienquocte*.vercel.app^$doc
|
|
3924
|
+
||applecenter.info.vn^$all
|
|
3925
|
+
||mmmbonline.com^$all,to=~mbbank.com.vn
|
|
3926
|
+
||iplus-fianc24h.online^$all,to=~mbbank.com.vn
|
|
3927
|
+
/^https:\/\/giaohangtietkiem\w+\.com\//$doc,to=com|~giaohangtietkiem.vn
|
|
3928
|
+
||khuyenmaidacbiet-$doc
|
|
3929
|
+
||uudaidacbiet-$doc
|
|
3930
|
+
||chinhphu-vn.com^$all,to=~chinhphu.vn
|
|
3931
|
+
||evnspccskh.com^$all,to=~evn.com.vn
|
|
3932
|
+
||shb-bank.com^$all,to=~shb.com.vn
|
|
3933
|
+
||aeoonmallstore.com^$all,to=~aeon.com.vn
|
|
3934
|
+
||nhanvienhanghoa.com^$all,to=~giaohangtietkiem.vn
|
|
3935
|
+
||dichvutonghop.vip^$all,to=~giaohangtietkiem.vn
|
|
3936
|
+
||giaohangtietkiem24.com^$all,to=~giaohangtietkiem.vn
|
|
3937
|
+
||giaohangtietkiemm.net^$all,to=~giaohangtietkiem.vn
|
|
3943
3938
|
||msk.su^$all
|
|
3944
3939
|
||bleyeare.com^$all
|
|
3945
3940
|
||hberify.com^$all
|
|
@@ -4087,7 +4082,6 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
4087
4082
|
||getkmspico.com^$doc
|
|
4088
4083
|
||kmspico10.com^$doc
|
|
4089
4084
|
||kmspicoactivator.net^$doc
|
|
4090
|
-
||kmspicoativador.org^$doc
|
|
4091
4085
|
||kmspicoofficial.com^$doc
|
|
4092
4086
|
||kmspicoportable.com^$doc
|
|
4093
4087
|
||officialkmspico.com^$doc
|
|
@@ -4114,7 +4108,7 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
4114
4108
|
||2d45b3cf2299d8ba038f45cb38aca4f2ecfbcb8d264ba28432ae5c51.com^$doc
|
|
4115
4109
|
||protonge.com^$all
|
|
4116
4110
|
||get-express-vpn.online^$all,to=~expressvpn.com
|
|
4117
|
-
||bloxstrap.*^$doc,
|
|
4111
|
+
||bloxstrap.*^$doc,to=~bloxstrap.pizzaboxer.xyz|~bloxstrap.cc
|
|
4118
4112
|
||bloxstrapmenu.com^$doc
|
|
4119
4113
|
||joannst.shop^$doc,to=~joann.com
|
|
4120
4114
|
||joannclearances.com^$all,to=~joann.com
|
|
@@ -4233,10 +4227,7 @@ app##center#yangchen > iframe#external-frame[src="https://im136.mom/"]:not([clas
|
|
|
4233
4227
|
||onelink.me/*&af_web_dp=$doc
|
|
4234
4228
|
||guide-orientation.tn/go_page.php?$doc
|
|
4235
4229
|
||allsportslivenow.com^$doc
|
|
4236
|
-
||watchliveon24.com^$doc
|
|
4237
4230
|
||livestreaming24.xyz^$doc
|
|
4238
|
-
||astrolivesports.com^$doc
|
|
4239
|
-
||skysportspro.com^$doc
|
|
4240
4231
|
/^https:\/\/(?:www\.)?[-a-z0-9]+\.com\.[-a-z0-9]+\.com\//$doc,to=com,ipaddress=148.251.54.196
|
|
4241
4232
|
/^https:\/\/(?:www\.)?[-a-z0-9]+\.xyz\.[-a-z0-9]+\.com\//$doc,to=com,ipaddress=148.251.54.196
|
|
4242
4233
|
||belliniepecuniaimmobili.*^$doc,to=belliniepecuniaimmobili.*
|
|
@@ -4326,7 +4317,7 @@ adrissa.com.co,americansoda.co.uk,casteloforte.com.br,centerfabril.com.br,forque
|
|
|
4326
4317
|
/\/n\/js(?:drive|nom|sp|v)\.js\b/$script,1p,strict1p
|
|
4327
4318
|
/\/o\/js(?:drive|nom|sp|v)\.js\b/$script,1p,strict1p
|
|
4328
4319
|
||payzoneparking.info^$all
|
|
4329
|
-
/^https?:\/\/[a-z]{
|
|
4320
|
+
/^https?:\/\/[a-z]{7,}\.com\/go\/[a-f0-9]{8}(-[a-f0-9]{4}){3}-[a-f0-9]{12}\b/$doc,match-case,to=com
|
|
4330
4321
|
/^https?:\/\/[-a-z0-9]{8,}\.ru\/\?load=[a-zA-Z0-9]+(-[a-zA-Z0-9]+)+$/$doc,match-case,to=ru
|
|
4331
4322
|
||com/go/$doc,to=com,ipaddress=3.0.82.215
|
|
4332
4323
|
||com/go/$doc,to=com,ipaddress=3.0.178.139
|
|
@@ -4355,8 +4346,46 @@ adrissa.com.co,americansoda.co.uk,casteloforte.com.br,centerfabril.com.br,forque
|
|
|
4355
4346
|
/human-captcha-v*.html^$doc
|
|
4356
4347
|
/captcha-verify-v*.html^$doc
|
|
4357
4348
|
/verify-captcha-v*.html^$doc
|
|
4358
|
-
|
|
4349
|
+
##html > body > div.container.m-p > #checkbox-window.checkbox-window
|
|
4350
|
+
||ajmaboxanherulv*.b-cdn.net^$doc
|
|
4351
|
+
||anti-automation-v*.b-cdn.net^$doc
|
|
4352
|
+
||bot-check-v*.b-cdn.net^$doc
|
|
4353
|
+
||dedicloadpgeing*.b-cdn.net^$doc
|
|
4354
|
+
||file-typ-botcheck*.b-cdn.net^$doc
|
|
4355
|
+
||izmncdnboxuse*.b-cdn.net^$doc
|
|
4356
|
+
||newverifyyourself-system*.b-cdn.net^$doc
|
|
4357
|
+
||nikutjyjgchr*.b-cdn.net^$doc
|
|
4358
|
+
||verification-module-v*.b-cdn.net^$doc
|
|
4359
|
+
||verifyyourself-*system.b-cdn.net^$doc
|
|
4360
|
+
||weoidnet*.b-cdn.net^$doc
|
|
4361
|
+
||fiare-activity.com^$all
|
|
4362
|
+
||chromeupdates.com^$all
|
|
4363
|
+
||fingerboarding.com^$all
|
|
4364
|
+
||foodrailway.cfd^$all
|
|
4365
|
+
||b-cdn.net/get-this-puzzle-solved.html^$doc
|
|
4366
|
+
||b-cdn.net/Recap-v*.html^$doc
|
|
4367
|
+
||b-cdn.net/verf-v*.html^$doc
|
|
4368
|
+
/cf-check.html^$doc
|
|
4369
|
+
/final-step-to-continue.html^$doc
|
|
4370
|
+
/dedicated-captcha-page.html^$doc
|
|
4371
|
+
/hcaptcha-human-check.html^$doc
|
|
4372
|
+
/IQWJDolx.html^$doc
|
|
4373
|
+
/JSKADull.html^$doc
|
|
4374
|
+
/modi-cloudflare-update-new.html^$doc
|
|
4375
|
+
/prove-human-recaptcha.html^$doc
|
|
4376
|
+
/RYFTGJcaptchv*.html^$doc
|
|
4377
|
+
/recaptcha-v*-protocol-$doc
|
|
4378
|
+
/recaptcha-verification.html^$doc
|
|
4379
|
+
/recaptcha_verification*.html^$doc
|
|
4380
|
+
/security-challenge-captcha.html^$doc
|
|
4381
|
+
/SYNCfuzzv*.html^$doc
|
|
4382
|
+
/verify-human-recaptcha.html^$doc
|
|
4383
|
+
/verify-me-first-v*.html^$doc
|
|
4384
|
+
##html[lang] > body:not([class]):not([id]):not([style]) > div.container > div.recaptcha-box
|
|
4385
|
+
/bot-verification-check-re*.html^$doc
|
|
4386
|
+
||exo.io/cloudcask/$doc
|
|
4359
4387
|
/cloudflare-v1-getup-*.html^$doc
|
|
4388
|
+
/modi-cloudflare-update.html^$doc
|
|
4360
4389
|
||rustdesk.co.nz^$doc
|
|
4361
4390
|
||rustdesk.io^$doc
|
|
4362
4391
|
||rustdesk.pl^$doc
|
|
@@ -4367,7 +4396,6 @@ webflow.io##html.w-mod-js:not(.wf-active) > body:not([class]):not([id]) > a[clas
|
|
|
4367
4396
|
||cakewallet.cc^$all,to=~cakewallet.com
|
|
4368
4397
|
||coinomiwallet.cc^$all,to=~coinomi.com
|
|
4369
4398
|
||infinityvvallet.io^$all,to=~infinitywallet.io
|
|
4370
|
-
||va-ez.com^$all,to=~ezpassva.com
|
|
4371
4399
|
||mslive.pro^$all,to=~microstrategy.com
|
|
4372
4400
|
/^https:\/\/gov\.[^.]*gr\.[a-z]{2,6}/$doc,to=~gov|~edu|~gov.gr
|
|
4373
4401
|
||0.gp/greece2^$all,to=~gov.gr
|
|
@@ -4387,7 +4415,6 @@ webflow.io##html.w-mod-js:not(.wf-active) > body:not([class]):not([id]) > a[clas
|
|
|
4387
4415
|
||d3srxd2wvksmqd.cloudfront.net^
|
|
4388
4416
|
||dojy0dg181308.cloudfront.net^
|
|
4389
4417
|
||d9cshxmf0qazr.cloudfront.net^
|
|
4390
|
-
||ixx-kexxx.com^$all,to=~ibx.key.com
|
|
4391
4418
|
||ixxx-blognew.com^$all,to=~ibx.key.com
|
|
4392
4419
|
||info-blog-news.com^$all,to=~ibx.key.com
|
|
4393
4420
|
||new-bllog-i.com^$all,to=~ibx.key.com
|
|
@@ -4425,9 +4452,6 @@ webflow.io##html.w-mod-js:not(.wf-active) > body:not([class]):not([id]) > a[clas
|
|
|
4425
4452
|
/wp-content/plugins/seo-optimizer-pro/sop-script.js
|
|
4426
4453
|
/wp-content/plugins/simple-post-enhancer/spe-script.js
|
|
4427
4454
|
/wp-content/plugins/social-media-integrator/smi-script.js
|
|
4428
|
-
||solomonegbe.com^$all
|
|
4429
|
-
||notion.ramchhaya.com^$all,to=~notion.so
|
|
4430
|
-
||furnotilioin.site^$all,to=~notion.so
|
|
4431
4455
|
||jqueri.at^$all
|
|
4432
4456
|
||jsdelivr.at^$all
|
|
4433
4457
|
||gstatis.co^$all
|
|
@@ -4436,11 +4460,10 @@ webflow.io##html.w-mod-js:not(.wf-active) > body:not([class]):not([id]) > a[clas
|
|
|
4436
4460
|
||noticesgove.top^$all,to=~gov.uk
|
|
4437
4461
|
/^https:\/\/winterpaymen[a-z]{2,5}\.top\//$doc,to=top|~gov.uk
|
|
4438
4462
|
||securevault.top^$all
|
|
4439
|
-
/^https:\/\/usps\.com-(
|
|
4463
|
+
/^https:\/\/usps\.com-(?:[-\w]+\.){1,2}[a-z]{2,4}\//$doc,to=~com|~net|~org|~edu|~gov
|
|
4464
|
+
/^https:\/\/amazon\.com-(?:[-\w]+\.){1,2}[a-z]{2,4}\//$doc,to=~com|~net|~org|~edu|~gov
|
|
4440
4465
|
||orcaslicer.info^$doc
|
|
4441
4466
|
||marabase-bi.com^$doc,to=~mara.com
|
|
4442
|
-
||ev.ri-7a5935gb.com^$all,to=~evri.com
|
|
4443
|
-
||ev.ri-*gb.com^$doc,to=~evri.com
|
|
4444
4467
|
/^https:\/\/www\.air-?up-?[a-z]{2,}\.com\//$doc,to=com|~air-up.com
|
|
4445
4468
|
/^https:\/\/www\.xn--airup[a-z]{5,6}-[a-z0-9]{3}\.com\//$doc,to=com|~air-up.com
|
|
4446
4469
|
||airupgreece.net^$doc,to=~air-up.com
|
|
@@ -4449,6 +4472,94 @@ webflow.io##html.w-mod-js:not(.wf-active) > body:not([class]):not([id]) > a[clas
|
|
|
4449
4472
|
||airupfrance.fr^$doc,to=~air-up.com
|
|
4450
4473
|
||ftuapps.io^$doc
|
|
4451
4474
|
||ftuapps.dev^$doc
|
|
4475
|
+
||farlad.com^$doc
|
|
4452
4476
|
||geekupdates.notion.site/Ultra-Security$doc
|
|
4453
4477
|
||uobretailcreditmanagement.$doc
|
|
4454
4478
|
||blockfiupdates.$doc
|
|
4479
|
+
||uploadfox.net^$inline-script
|
|
4480
|
+
uploadfox.net###ad-gs-05
|
|
4481
|
+
||allinoursite.com^$doc
|
|
4482
|
+
||bteux.com^$doc
|
|
4483
|
+
||childrenoftheclouds.com^$doc
|
|
4484
|
+
||dating-express.com^$doc
|
|
4485
|
+
||doorsstormsy.shop^$doc
|
|
4486
|
+
||emailservicesnetau.com^$doc
|
|
4487
|
+
||euromaillinnk.com^$doc
|
|
4488
|
+
||findthorman.shop^$doc
|
|
4489
|
+
||glaters.com^$doc
|
|
4490
|
+
||homtail.shop^$doc
|
|
4491
|
+
||keydoordasher.shop^$doc
|
|
4492
|
+
||mybach.xyz^$doc
|
|
4493
|
+
||threeneptuneboot.com^$doc
|
|
4494
|
+
/unsub/unsub^$doc
|
|
4495
|
+
/unsub_sent.php|$doc,method=post
|
|
4496
|
+
/^https?:\/\/www\.[a-z]{9,20}\.com\/o-[a-z]{4}-[a-z]\d6-[a-f0-9]{32}\b/$doc,match-case,to=com
|
|
4497
|
+
/^https?:\/\/[a-z]+\.[a-z]{4,}\/oop\/\d+_md(?:\/\d+){5}\b/$doc,match-case
|
|
4498
|
+
##html > body.hold-transition.theme-primary.bg-img[style^="background-image"][style*="wallpaperaccess.com"][style*="background-repeat"][style*="background-size"]
|
|
4499
|
+
##html > body > div.container > form#unsubscribe-form[onsubmit="submitUnsubscribeForm(event)"]
|
|
4500
|
+
##html > body > div.content > dl > dd.dd1 > div.min_sider > form#form1[action="unsubscribe.php"]
|
|
4501
|
+
##html > body.body > div.container > div.content > form > table.optoutForm
|
|
4502
|
+
! Pretending to be a government service
|
|
4503
|
+
||detranrapido.co^$all
|
|
4504
|
+
||pagamentocnh.com^$all
|
|
4505
|
+
||diteringion.com^$all
|
|
4506
|
+
||creditcable.info^$all
|
|
4507
|
+
||steamcomunutty.com^$all
|
|
4508
|
+
||klingxai.com^$all
|
|
4509
|
+
||popular-resort-ads.com^$doc,to=~ads.google.com
|
|
4510
|
+
||trackwpmd.top^$all,to=~usps.com
|
|
4511
|
+
://backcb.one^$all
|
|
4512
|
+
||marcjacobsusa.us^$all,to=~marcjacobs.com
|
|
4513
|
+
||madgicxde.com^$all,to=~madgicx.com
|
|
4514
|
+
||gxsearch.club^$all
|
|
4515
|
+
||dynamicopenfonts.app^$all
|
|
4516
|
+
||staticfonts.com^$all
|
|
4517
|
+
||static-fonts.com^$all
|
|
4518
|
+
||semrushshop.com^$all,to=~semrush.com
|
|
4519
|
+
||brinifcall.com^$all
|
|
4520
|
+
||megadrive.solutions^$all
|
|
4521
|
+
||geeksprosoftwareprints.org^$all
|
|
4522
|
+
||select-easy123print.com^$all
|
|
4523
|
+
||printcaretech.com^$all
|
|
4524
|
+
||editproai.$all,to=editproai.org|editproai.pro
|
|
4525
|
+
||proai.club^$all
|
|
4526
|
+
||lesivs.com^$doc
|
|
4527
|
+
||blackfriday-shoe.top^$all
|
|
4528
|
+
||stussycanadablackfriday.com^$all,to=~stussy.com
|
|
4529
|
+
||longchampblackfriday.com^$all,to=~longchamp
|
|
4530
|
+
||jcrewblackfriday.com^$all,to=~jcrew.com
|
|
4531
|
+
||hottest-bag.com^$all,to=~louisvuitton.com
|
|
4532
|
+
||dopeblackfriday.shop^$all
|
|
4533
|
+
||llbeanblackfridays.shop^$all,to=~llbean.com
|
|
4534
|
+
||makitablackfriday.shop^$all,to=~makitatools.com
|
|
4535
|
+
||eu-blochdance.shop^$all,to=~blochworld.com
|
|
4536
|
+
||ikea-euonline.com^$all,to=~ikea.com
|
|
4537
|
+
||gardena-eu.com^$all,to=~gardena.com
|
|
4538
|
+
||northfacedeals.shop^$all,to=~thenorthface.com
|
|
4539
|
+
||stylevibe.xyz^$all,to=~usps.com
|
|
4540
|
+
||igetintopc.com^$all
|
|
4541
|
+
||usps-packages-*.com^$doc,to=~usps.com
|
|
4542
|
+
||info-trackingcas.cc^$all,to=~usps.com
|
|
4543
|
+
||backend.store.eset.co.il/pub/*/ESETUnleashed_*.zip^$all
|
|
4544
|
+
||gnxuohpr.icu^$all,to=~mexc.com
|
|
4545
|
+
||mexcgbaip.vip^$all,to=~mexc.com
|
|
4546
|
+
||www.*.icu^$doc,ipaddress=/^(13\.227\.254\.\d{2}|2600:9000:2(00a|1d1):[a-z0-9]{2}00:1[1c]:(7b7c|2741):(1ac|2d0)0:93a1)$/
|
|
4547
|
+
||www.*.vip^$doc,ipaddress=/^(13\.227\.254\.\d{2}|2600:9000:2(00a|1d1):[a-z0-9]{2}00:1[1c]:(7b7c|2741):(1ac|2d0)0:93a1)$/
|
|
4548
|
+
||advairmds.ru^$all,to=~bbc.com
|
|
4549
|
+
! fake cloudflare captcha
|
|
4550
|
+
||pub-549d59daefd74f7583e1766800fe7b07.r2.dev^
|
|
4551
|
+
||r-tiktok.com^$all,to=~tiktok.com
|
|
4552
|
+
||salomonoutletstoresusa.com^$all,to=~salomon.com
|
|
4553
|
+
||winfreebigwindeal.top^$all
|
|
4554
|
+
! fake dating
|
|
4555
|
+
/^https:\/\/[0-9a-z]{7}\.([0-9a-z]{7})\.top\/[0-9a-z]{7}\?t=\1&cid=[0-9a-z]+/$document,to=top,match-case
|
|
4556
|
+
||dhldeliveryhome2.info^$all,to=~dhl.com
|
|
4557
|
+
||thetollroads.com-*.cfd^$all,to=~thetollroads.com
|
|
4558
|
+
||dtioykqj1u8de.cloudfront.net^$all,to=~amazon.co.jp
|
|
4559
|
+
||photonlabs.app^$all
|
|
4560
|
+
||jaowomous.xyz^$all
|
|
4561
|
+
?id=*&p1=*&p2=*&p3=*&p4=$doc
|
|
4562
|
+
||partners-tds.com^$all
|
|
4563
|
+
||likeyoumakehappy.xyz^$all,to=~alza.sk
|
|
4564
|
+
||ninnjaofficial.com^$all,to=~ninjakitchen.com
|
|
4565
|
+
||gtrewe.co.in^$all
|