@browserless.io/browserless 2.0.0-beta-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 +674 -0
- package/LICENSE +6 -0
- package/README.md +132 -0
- package/assets/logo.png +0 -0
- package/bin/browserless.js +227 -0
- package/browser.json +7 -0
- package/build/browserless.d.ts +33 -0
- package/build/browserless.js +146 -0
- package/build/browsers/cdp-chromium.d.ts +41 -0
- package/build/browsers/cdp-chromium.js +287 -0
- package/build/browsers/index.d.ts +26 -0
- package/build/browsers/index.js +183 -0
- package/build/browsers/playwright-chromium.d.ts +34 -0
- package/build/browsers/playwright-chromium.js +106 -0
- package/build/browsers/playwright-firefox.d.ts +34 -0
- package/build/browsers/playwright-firefox.js +101 -0
- package/build/browsers/playwright-webkit.d.ts +34 -0
- package/build/browsers/playwright-webkit.js +101 -0
- package/build/config.d.ts +138 -0
- package/build/config.js +349 -0
- package/build/constants.d.ts +4 -0
- package/build/constants.js +4 -0
- package/build/data/classes.json +1 -0
- package/build/data/selectors.json +1 -0
- package/build/exports.d.ts +20 -0
- package/build/exports.js +22 -0
- package/build/file-system.d.ts +24 -0
- package/build/file-system.js +46 -0
- package/build/hooks.d.ts +5 -0
- package/build/hooks.js +20 -0
- package/build/http.d.ts +175 -0
- package/build/http.js +104 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +39 -0
- package/build/limiter.d.ts +24 -0
- package/build/limiter.js +147 -0
- package/build/limiter.spec.d.ts +1 -0
- package/build/limiter.spec.js +241 -0
- package/build/metrics.d.ts +24 -0
- package/build/metrics.js +86 -0
- package/build/metrics.spec.d.ts +1 -0
- package/build/metrics.spec.js +35 -0
- package/build/mime-types.d.ts +1 -0
- package/build/mime-types.js +328 -0
- package/build/monitoring.d.ts +13 -0
- package/build/monitoring.js +38 -0
- package/build/routes/chromium/http/content-post.body.json +514 -0
- package/build/routes/chromium/http/content-post.d.ts +34 -0
- package/build/routes/chromium/http/content-post.js +109 -0
- package/build/routes/chromium/http/content-post.query.json +183 -0
- package/build/routes/chromium/http/content-post.response.json +5 -0
- package/build/routes/chromium/http/download-post.body.json +32 -0
- package/build/routes/chromium/http/download-post.d.ts +16 -0
- package/build/routes/chromium/http/download-post.js +92 -0
- package/build/routes/chromium/http/download-post.query.json +120 -0
- package/build/routes/chromium/http/download-post.response.json +4 -0
- package/build/routes/chromium/http/function-post.body.json +32 -0
- package/build/routes/chromium/http/function-post.d.ts +18 -0
- package/build/routes/chromium/http/function-post.js +53 -0
- package/build/routes/chromium/http/function-post.query.json +120 -0
- package/build/routes/chromium/http/function-post.response.json +4 -0
- package/build/routes/chromium/http/pdf-post.body.json +654 -0
- package/build/routes/chromium/http/pdf-post.d.ts +35 -0
- package/build/routes/chromium/http/pdf-post.js +107 -0
- package/build/routes/chromium/http/pdf-post.query.json +120 -0
- package/build/routes/chromium/http/pdf-post.response.json +5 -0
- package/build/routes/chromium/http/performance.body.json +26 -0
- package/build/routes/chromium/http/performance.d.ts +17 -0
- package/build/routes/chromium/http/performance.js +30 -0
- package/build/routes/chromium/http/performance.query.json +120 -0
- package/build/routes/chromium/http/performance.response.json +7 -0
- package/build/routes/chromium/http/scrape-post.body.json +561 -0
- package/build/routes/chromium/http/scrape-post.d.ts +106 -0
- package/build/routes/chromium/http/scrape-post.js +205 -0
- package/build/routes/chromium/http/scrape-post.query.json +183 -0
- package/build/routes/chromium/http/scrape-post.response.json +325 -0
- package/build/routes/chromium/http/screenshot-post.body.json +604 -0
- package/build/routes/chromium/http/screenshot-post.d.ts +37 -0
- package/build/routes/chromium/http/screenshot-post.js +124 -0
- package/build/routes/chromium/http/screenshot-post.query.json +120 -0
- package/build/routes/chromium/http/screenshot-post.response.json +5 -0
- package/build/routes/chromium/tests/content.spec.d.ts +1 -0
- package/build/routes/chromium/tests/content.spec.js +285 -0
- package/build/routes/chromium/tests/download.spec.d.ts +1 -0
- package/build/routes/chromium/tests/download.spec.js +67 -0
- package/build/routes/chromium/tests/function.spec.d.ts +1 -0
- package/build/routes/chromium/tests/function.spec.js +245 -0
- package/build/routes/chromium/tests/pdf.spec.d.ts +1 -0
- package/build/routes/chromium/tests/pdf.spec.js +333 -0
- package/build/routes/chromium/tests/performance.spec.d.ts +1 -0
- package/build/routes/chromium/tests/performance.spec.js +124 -0
- package/build/routes/chromium/tests/scrape.spec.d.ts +1 -0
- package/build/routes/chromium/tests/scrape.spec.js +354 -0
- package/build/routes/chromium/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/chromium/tests/screenshot.spec.js +339 -0
- package/build/routes/chromium/tests/websocket.spec.d.ts +1 -0
- package/build/routes/chromium/tests/websocket.spec.js +309 -0
- package/build/routes/chromium/utils/function/client.d.ts +26 -0
- package/build/routes/chromium/utils/function/client.js +66 -0
- package/build/routes/chromium/utils/function/handler.d.ts +18 -0
- package/build/routes/chromium/utils/function/handler.js +95 -0
- package/build/routes/chromium/utils/performance/child.d.ts +1 -0
- package/build/routes/chromium/utils/performance/child.js +29 -0
- package/build/routes/chromium/utils/performance/main.d.ts +3 -0
- package/build/routes/chromium/utils/performance/main.js +65 -0
- package/build/routes/chromium/utils/performance/types.d.ts +21 -0
- package/build/routes/chromium/utils/performance/types.js +1 -0
- package/build/routes/chromium/ws/browser.d.ts +6 -0
- package/build/routes/chromium/ws/browser.js +11 -0
- package/build/routes/chromium/ws/browser.query.json +120 -0
- package/build/routes/chromium/ws/cdp-chromium.d.ts +6 -0
- package/build/routes/chromium/ws/cdp-chromium.js +11 -0
- package/build/routes/chromium/ws/cdp-chromium.query.json +120 -0
- package/build/routes/chromium/ws/page.d.ts +6 -0
- package/build/routes/chromium/ws/page.js +11 -0
- package/build/routes/chromium/ws/page.query.json +120 -0
- package/build/routes/chromium/ws/playwright-chromium.d.ts +6 -0
- package/build/routes/chromium/ws/playwright-chromium.js +19 -0
- package/build/routes/chromium/ws/playwright-chromium.query.json +100 -0
- package/build/routes/firefox/tests/websocket.spec.d.ts +1 -0
- package/build/routes/firefox/tests/websocket.spec.js +104 -0
- package/build/routes/firefox/ws/playwright-firefox.d.ts +6 -0
- package/build/routes/firefox/ws/playwright-firefox.js +19 -0
- package/build/routes/firefox/ws/playwright-firefox.query.json +100 -0
- package/build/routes/management/http/config-get.d.ts +25 -0
- package/build/routes/management/http/config-get.js +43 -0
- package/build/routes/management/http/config-get.response.json +107 -0
- package/build/routes/management/http/metrics-get.d.ts +4 -0
- package/build/routes/management/http/metrics-get.js +24 -0
- package/build/routes/management/http/metrics-get.response.json +94 -0
- package/build/routes/management/http/metrics-total-get.d.ts +4 -0
- package/build/routes/management/http/metrics-total-get.js +60 -0
- package/build/routes/management/http/metrics-total-get.response.json +72 -0
- package/build/routes/management/http/sessions-get.d.ts +4 -0
- package/build/routes/management/http/sessions-get.js +21 -0
- package/build/routes/management/http/sessions-get.response.json +221 -0
- package/build/routes/management/http/static-get.d.ts +3 -0
- package/build/routes/management/http/static-get.js +67 -0
- package/build/routes/management/tests/management.spec.d.ts +1 -0
- package/build/routes/management/tests/management.spec.js +41 -0
- package/build/routes/webkit/tests/websocket.spec.d.ts +1 -0
- package/build/routes/webkit/tests/websocket.spec.js +104 -0
- package/build/routes/webkit/ws/playwright-webkit.d.ts +6 -0
- package/build/routes/webkit/ws/playwright-webkit.js +19 -0
- package/build/routes/webkit/ws/playwright-webkit.query.json +100 -0
- package/build/server.d.ts +38 -0
- package/build/server.js +365 -0
- package/build/shim.d.ts +9 -0
- package/build/shim.js +54 -0
- package/build/shim.spec.d.ts +1 -0
- package/build/shim.spec.js +114 -0
- package/build/types.d.ts +360 -0
- package/build/types.js +6 -0
- package/build/utils.d.ts +111 -0
- package/build/utils.js +570 -0
- package/build/webhooks.d.ts +11 -0
- package/build/webhooks.js +43 -0
- package/docker/base/.dockerignore +16 -0
- package/docker/base/Dockerfile +70 -0
- package/docker/chrome/.dockerignore +16 -0
- package/docker/chrome/Dockerfile +40 -0
- package/docker/firefox/.dockerignore +16 -0
- package/docker/firefox/Dockerfile +39 -0
- package/docker/multi/.dockerignore +16 -0
- package/docker/multi/Dockerfile +37 -0
- package/docker/sdk/.dockerignore +16 -0
- package/docker/sdk/Dockerfile +34 -0
- package/docker/webkit/.dockerignore +16 -0
- package/docker/webkit/Dockerfile +40 -0
- package/extensions/screencast/background.js +143 -0
- package/extensions/screencast/content_script.js +18 -0
- package/extensions/screencast/manifest.json +19 -0
- package/extensions/ublock/1p-filters.html +69 -0
- package/extensions/ublock/3p-filters.html +119 -0
- package/extensions/ublock/LICENSE.txt +674 -0
- package/extensions/ublock/_locales/ar/messages.json +1290 -0
- package/extensions/ublock/_locales/az/messages.json +1290 -0
- package/extensions/ublock/_locales/be/messages.json +1290 -0
- package/extensions/ublock/_locales/bg/messages.json +1290 -0
- package/extensions/ublock/_locales/bn/messages.json +1290 -0
- package/extensions/ublock/_locales/br_FR/messages.json +1290 -0
- package/extensions/ublock/_locales/bs/messages.json +1290 -0
- package/extensions/ublock/_locales/ca/messages.json +1290 -0
- package/extensions/ublock/_locales/cs/messages.json +1290 -0
- package/extensions/ublock/_locales/cv/messages.json +1290 -0
- package/extensions/ublock/_locales/da/messages.json +1290 -0
- package/extensions/ublock/_locales/de/messages.json +1290 -0
- package/extensions/ublock/_locales/el/messages.json +1290 -0
- package/extensions/ublock/_locales/en/messages.json +1292 -0
- package/extensions/ublock/_locales/en_GB/messages.json +1290 -0
- package/extensions/ublock/_locales/eo/messages.json +1290 -0
- package/extensions/ublock/_locales/es/messages.json +1290 -0
- package/extensions/ublock/_locales/et/messages.json +1290 -0
- package/extensions/ublock/_locales/eu/messages.json +1290 -0
- package/extensions/ublock/_locales/fa/messages.json +1290 -0
- package/extensions/ublock/_locales/fi/messages.json +1290 -0
- package/extensions/ublock/_locales/fil/messages.json +1290 -0
- package/extensions/ublock/_locales/fr/messages.json +1290 -0
- package/extensions/ublock/_locales/fy/messages.json +1290 -0
- package/extensions/ublock/_locales/gl/messages.json +1290 -0
- package/extensions/ublock/_locales/gu/messages.json +1290 -0
- package/extensions/ublock/_locales/he/messages.json +1290 -0
- package/extensions/ublock/_locales/hi/messages.json +1290 -0
- package/extensions/ublock/_locales/hr/messages.json +1290 -0
- package/extensions/ublock/_locales/hu/messages.json +1290 -0
- package/extensions/ublock/_locales/hy/messages.json +1290 -0
- package/extensions/ublock/_locales/id/messages.json +1290 -0
- package/extensions/ublock/_locales/it/messages.json +1290 -0
- package/extensions/ublock/_locales/ja/messages.json +1290 -0
- package/extensions/ublock/_locales/ka/messages.json +1290 -0
- package/extensions/ublock/_locales/kk/messages.json +1290 -0
- package/extensions/ublock/_locales/kn/messages.json +1290 -0
- package/extensions/ublock/_locales/ko/messages.json +1290 -0
- package/extensions/ublock/_locales/ku/messages.json +1290 -0
- package/extensions/ublock/_locales/lt/messages.json +1290 -0
- package/extensions/ublock/_locales/lv/messages.json +1290 -0
- package/extensions/ublock/_locales/mk/messages.json +1290 -0
- package/extensions/ublock/_locales/ml/messages.json +1290 -0
- package/extensions/ublock/_locales/mr/messages.json +1290 -0
- package/extensions/ublock/_locales/ms/messages.json +1290 -0
- package/extensions/ublock/_locales/nb/messages.json +1290 -0
- package/extensions/ublock/_locales/nl/messages.json +1290 -0
- package/extensions/ublock/_locales/no/messages.json +1290 -0
- package/extensions/ublock/_locales/oc/messages.json +1290 -0
- package/extensions/ublock/_locales/pa/messages.json +1290 -0
- package/extensions/ublock/_locales/pl/messages.json +1290 -0
- package/extensions/ublock/_locales/pt_BR/messages.json +1290 -0
- package/extensions/ublock/_locales/pt_PT/messages.json +1290 -0
- package/extensions/ublock/_locales/ro/messages.json +1290 -0
- package/extensions/ublock/_locales/ru/messages.json +1290 -0
- package/extensions/ublock/_locales/si/messages.json +1290 -0
- package/extensions/ublock/_locales/sk/messages.json +1290 -0
- package/extensions/ublock/_locales/sl/messages.json +1290 -0
- package/extensions/ublock/_locales/so/messages.json +1290 -0
- package/extensions/ublock/_locales/sq/messages.json +1290 -0
- package/extensions/ublock/_locales/sr/messages.json +1290 -0
- package/extensions/ublock/_locales/sv/messages.json +1290 -0
- package/extensions/ublock/_locales/sw/messages.json +1290 -0
- package/extensions/ublock/_locales/ta/messages.json +1290 -0
- package/extensions/ublock/_locales/te/messages.json +1290 -0
- package/extensions/ublock/_locales/th/messages.json +1290 -0
- package/extensions/ublock/_locales/tr/messages.json +1290 -0
- package/extensions/ublock/_locales/uk/messages.json +1290 -0
- package/extensions/ublock/_locales/ur/messages.json +1290 -0
- package/extensions/ublock/_locales/vi/messages.json +1290 -0
- package/extensions/ublock/_locales/zh_CN/messages.json +1290 -0
- package/extensions/ublock/_locales/zh_TW/messages.json +1290 -0
- package/extensions/ublock/about.html +63 -0
- package/extensions/ublock/advanced-settings.html +42 -0
- package/extensions/ublock/asset-viewer.html +50 -0
- package/extensions/ublock/assets/assets.json +903 -0
- package/extensions/ublock/assets/resources/scriptlets.js +4255 -0
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +65576 -0
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +33219 -0
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/README.md +29 -0
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +3732 -0
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +15431 -0
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/LICENSE.md +42 -0
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +1970 -0
- package/extensions/ublock/assets/ublock/badlists.txt +77 -0
- package/extensions/ublock/assets/ublock/badware.min.txt +3033 -0
- package/extensions/ublock/assets/ublock/filters.min.txt +23419 -0
- package/extensions/ublock/assets/ublock/privacy.min.txt +575 -0
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +99 -0
- package/extensions/ublock/assets/ublock/unbreak.min.txt +2448 -0
- package/extensions/ublock/background.html +12 -0
- package/extensions/ublock/cloud-ui.html +23 -0
- package/extensions/ublock/code-viewer.html +53 -0
- package/extensions/ublock/css/1p-filters.css +26 -0
- package/extensions/ublock/css/3p-filters.css +250 -0
- package/extensions/ublock/css/about.css +3 -0
- package/extensions/ublock/css/advanced-settings.css +26 -0
- package/extensions/ublock/css/asset-viewer.css +79 -0
- package/extensions/ublock/css/click2load.css +53 -0
- package/extensions/ublock/css/cloud-ui.css +104 -0
- package/extensions/ublock/css/code-viewer.css +67 -0
- package/extensions/ublock/css/codemirror.css +326 -0
- package/extensions/ublock/css/common.css +347 -0
- package/extensions/ublock/css/dashboard-common.css +55 -0
- package/extensions/ublock/css/dashboard.css +115 -0
- package/extensions/ublock/css/devtools.css +22 -0
- package/extensions/ublock/css/document-blocked.css +146 -0
- package/extensions/ublock/css/dyna-rules.css +79 -0
- package/extensions/ublock/css/epicker-ui.css +270 -0
- package/extensions/ublock/css/fa-icons.css +149 -0
- package/extensions/ublock/css/fonts/Inter/Inter-Regular.woff2 +0 -0
- package/extensions/ublock/css/fonts/Inter/Inter-SemiBold.woff2 +0 -0
- package/extensions/ublock/css/fonts/Inter/LICENSE.txt +93 -0
- package/extensions/ublock/css/fonts/Metropolis/Metropolis-Regular.woff2 +0 -0
- package/extensions/ublock/css/fonts/Metropolis/Metropolis-SemiBold.woff2 +0 -0
- package/extensions/ublock/css/fonts/Metropolis/README.md +25 -0
- package/extensions/ublock/css/fonts/Metropolis/UNLICENSE +24 -0
- package/extensions/ublock/css/logger-ui-inspector.css +116 -0
- package/extensions/ublock/css/logger-ui.css +978 -0
- package/extensions/ublock/css/popup-fenix.css +778 -0
- package/extensions/ublock/css/settings.css +74 -0
- package/extensions/ublock/css/support.css +110 -0
- package/extensions/ublock/css/themes/default.css +526 -0
- package/extensions/ublock/css/whitelist.css +22 -0
- package/extensions/ublock/dashboard.html +47 -0
- package/extensions/ublock/devtools.html +58 -0
- package/extensions/ublock/document-blocked.html +64 -0
- package/extensions/ublock/dyna-rules.html +67 -0
- package/extensions/ublock/img/cloud.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/README +9 -0
- package/extensions/ublock/img/flags-of-the-world/ad.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ae.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/af.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ag.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ai.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/al.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/am.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ao.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/aq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ar.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/as.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/at.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/au.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/aw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ax.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/az.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ba.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/be.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/br.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/by.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ca.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ch.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ci.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ck.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/co.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/de.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/do.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ec.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ee.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/eg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/eh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/er.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/es.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/et.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ga.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-eng.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-nir.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-sct.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-wls.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ge.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ht.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/id.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ie.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/il.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/im.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/in.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/io.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/iq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ir.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/is.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/it.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/je.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ke.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ki.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/km.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ky.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/la.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/li.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ls.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ly.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ma.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/md.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/me.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ml.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ms.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/my.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/na.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ne.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ng.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ni.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/no.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/np.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/om.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pe.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ph.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ps.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/py.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/qa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/re.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ro.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/rs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ru.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/rw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/se.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/si.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/so.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ss.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/st.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/td.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/th.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/to.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ua.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ug.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/um.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/us.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/uy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/uz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/va.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ve.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/wf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ws.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/xk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ye.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/yt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/za.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/zm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/zw.png +0 -0
- package/extensions/ublock/img/fontawesome/LICENSE.txt +25 -0
- package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +79 -0
- package/extensions/ublock/img/help16.png +0 -0
- package/extensions/ublock/img/icon_128.png +0 -0
- package/extensions/ublock/img/icon_16-loading.png +0 -0
- package/extensions/ublock/img/icon_16-off.png +0 -0
- package/extensions/ublock/img/icon_16.png +0 -0
- package/extensions/ublock/img/icon_32-loading.png +0 -0
- package/extensions/ublock/img/icon_32-off.png +0 -0
- package/extensions/ublock/img/icon_32.png +0 -0
- package/extensions/ublock/img/icon_64-loading.png +0 -0
- package/extensions/ublock/img/icon_64-off.png +0 -0
- package/extensions/ublock/img/icon_64.png +0 -0
- package/extensions/ublock/img/material-design.svg +16 -0
- package/extensions/ublock/img/photon.svg +16 -0
- package/extensions/ublock/img/ublock-defs.svg +27 -0
- package/extensions/ublock/img/ublock.svg +44 -0
- package/extensions/ublock/is-webrtc-supported.html +9 -0
- package/extensions/ublock/js/1p-filters.js +336 -0
- package/extensions/ublock/js/3p-filters.js +867 -0
- package/extensions/ublock/js/about.js +34 -0
- package/extensions/ublock/js/advanced-settings.js +194 -0
- package/extensions/ublock/js/asset-viewer.js +112 -0
- package/extensions/ublock/js/assets.js +1448 -0
- package/extensions/ublock/js/background.js +404 -0
- package/extensions/ublock/js/base64-custom.js +246 -0
- package/extensions/ublock/js/benchmarks.js +421 -0
- package/extensions/ublock/js/biditrie.js +947 -0
- package/extensions/ublock/js/cachestorage.js +510 -0
- package/extensions/ublock/js/click2load.js +60 -0
- package/extensions/ublock/js/cloud-ui.js +238 -0
- package/extensions/ublock/js/code-viewer.js +311 -0
- package/extensions/ublock/js/codemirror/search-thread.js +199 -0
- package/extensions/ublock/js/codemirror/search.js +504 -0
- package/extensions/ublock/js/codemirror/ubo-dynamic-filtering.js +239 -0
- package/extensions/ublock/js/codemirror/ubo-static-filtering.js +1126 -0
- package/extensions/ublock/js/commands.js +181 -0
- package/extensions/ublock/js/console.js +59 -0
- package/extensions/ublock/js/contentscript-extra.js +662 -0
- package/extensions/ublock/js/contentscript.js +1366 -0
- package/extensions/ublock/js/contextmenu.js +270 -0
- package/extensions/ublock/js/cosmetic-filtering.js +983 -0
- package/extensions/ublock/js/dashboard-common.js +215 -0
- package/extensions/ublock/js/dashboard.js +166 -0
- package/extensions/ublock/js/devtools.js +184 -0
- package/extensions/ublock/js/diff-updater.js +288 -0
- package/extensions/ublock/js/document-blocked.js +230 -0
- package/extensions/ublock/js/dom.js +213 -0
- package/extensions/ublock/js/dyna-rules.js +678 -0
- package/extensions/ublock/js/dynamic-net-filtering.js +488 -0
- package/extensions/ublock/js/epicker-ui.js +924 -0
- package/extensions/ublock/js/fa-icons.js +129 -0
- package/extensions/ublock/js/filtering-context.js +461 -0
- package/extensions/ublock/js/filtering-engines.js +50 -0
- package/extensions/ublock/js/hnswitches.js +289 -0
- package/extensions/ublock/js/hntrie.js +780 -0
- package/extensions/ublock/js/html-filtering.js +465 -0
- package/extensions/ublock/js/httpheader-filtering.js +213 -0
- package/extensions/ublock/js/i18n.js +346 -0
- package/extensions/ublock/js/is-webrtc-supported.js +52 -0
- package/extensions/ublock/js/logger-ui-inspector.js +652 -0
- package/extensions/ublock/js/logger-ui.js +3028 -0
- package/extensions/ublock/js/logger.js +84 -0
- package/extensions/ublock/js/lz4.js +190 -0
- package/extensions/ublock/js/messaging.js +2095 -0
- package/extensions/ublock/js/pagestore.js +1140 -0
- package/extensions/ublock/js/popup-fenix.js +1529 -0
- package/extensions/ublock/js/redirect-engine.js +494 -0
- package/extensions/ublock/js/redirect-resources.js +193 -0
- package/extensions/ublock/js/reverselookup-worker.js +287 -0
- package/extensions/ublock/js/reverselookup.js +223 -0
- package/extensions/ublock/js/scriptlet-filtering.js +556 -0
- package/extensions/ublock/js/scriptlets/cosmetic-logger.js +376 -0
- package/extensions/ublock/js/scriptlets/cosmetic-off.js +48 -0
- package/extensions/ublock/js/scriptlets/cosmetic-on.js +48 -0
- package/extensions/ublock/js/scriptlets/cosmetic-report.js +142 -0
- package/extensions/ublock/js/scriptlets/dom-inspector.js +906 -0
- package/extensions/ublock/js/scriptlets/dom-survey-elements.js +72 -0
- package/extensions/ublock/js/scriptlets/dom-survey-scripts.js +126 -0
- package/extensions/ublock/js/scriptlets/epicker.js +1365 -0
- package/extensions/ublock/js/scriptlets/load-3p-css.js +67 -0
- package/extensions/ublock/js/scriptlets/load-large-media-all.js +62 -0
- package/extensions/ublock/js/scriptlets/load-large-media-interactive.js +299 -0
- package/extensions/ublock/js/scriptlets/noscript-spoof.js +89 -0
- package/extensions/ublock/js/scriptlets/should-inject-contentscript.js +40 -0
- package/extensions/ublock/js/scriptlets/subscriber.js +113 -0
- package/extensions/ublock/js/scriptlets/updater.js +101 -0
- package/extensions/ublock/js/settings.js +317 -0
- package/extensions/ublock/js/start.js +509 -0
- package/extensions/ublock/js/static-dnr-filtering.js +497 -0
- package/extensions/ublock/js/static-ext-filtering-db.js +171 -0
- package/extensions/ublock/js/static-ext-filtering.js +184 -0
- package/extensions/ublock/js/static-filtering-io.js +144 -0
- package/extensions/ublock/js/static-filtering-parser.js +4459 -0
- package/extensions/ublock/js/static-net-filtering.js +5631 -0
- package/extensions/ublock/js/storage.js +1683 -0
- package/extensions/ublock/js/support.js +335 -0
- package/extensions/ublock/js/tab.js +1178 -0
- package/extensions/ublock/js/tasks.js +42 -0
- package/extensions/ublock/js/text-encode.js +275 -0
- package/extensions/ublock/js/text-utils.js +107 -0
- package/extensions/ublock/js/theme.js +151 -0
- package/extensions/ublock/js/traffic.js +1260 -0
- package/extensions/ublock/js/ublock.js +696 -0
- package/extensions/ublock/js/uri-utils.js +175 -0
- package/extensions/ublock/js/url-net-filtering.js +336 -0
- package/extensions/ublock/js/utils.js +208 -0
- package/extensions/ublock/js/vapi-background-ext.js +254 -0
- package/extensions/ublock/js/vapi-background.js +1802 -0
- package/extensions/ublock/js/vapi-client-extra.js +312 -0
- package/extensions/ublock/js/vapi-client.js +280 -0
- package/extensions/ublock/js/vapi-common.js +308 -0
- package/extensions/ublock/js/vapi.js +89 -0
- package/extensions/ublock/js/wasm/README.md +24 -0
- package/extensions/ublock/js/wasm/biditrie.wasm +0 -0
- package/extensions/ublock/js/wasm/biditrie.wat +728 -0
- package/extensions/ublock/js/wasm/hntrie.wasm +0 -0
- package/extensions/ublock/js/wasm/hntrie.wat +724 -0
- package/extensions/ublock/js/webext.js +164 -0
- package/extensions/ublock/js/whitelist.js +258 -0
- package/extensions/ublock/lib/codemirror/LICENSE +21 -0
- package/extensions/ublock/lib/codemirror/README.md +47 -0
- package/extensions/ublock/lib/codemirror/addon/comment/comment.js +211 -0
- package/extensions/ublock/lib/codemirror/addon/display/panel.js +133 -0
- package/extensions/ublock/lib/codemirror/addon/edit/closebrackets.js +201 -0
- package/extensions/ublock/lib/codemirror/addon/edit/matchbrackets.js +160 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldcode.js +157 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldgutter.css +20 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldgutter.js +163 -0
- package/extensions/ublock/lib/codemirror/addon/hint/show-hint.css +36 -0
- package/extensions/ublock/lib/codemirror/addon/hint/show-hint.js +509 -0
- package/extensions/ublock/lib/codemirror/addon/merge/merge.css +119 -0
- package/extensions/ublock/lib/codemirror/addon/merge/merge.js +1006 -0
- package/extensions/ublock/lib/codemirror/addon/scroll/annotatescrollbar.js +128 -0
- package/extensions/ublock/lib/codemirror/addon/search/matchesonscrollbar.css +8 -0
- package/extensions/ublock/lib/codemirror/addon/search/searchcursor.js +296 -0
- package/extensions/ublock/lib/codemirror/addon/selection/active-line.js +72 -0
- package/extensions/ublock/lib/codemirror/lib/codemirror.css +350 -0
- package/extensions/ublock/lib/codemirror/lib/codemirror.js +9800 -0
- package/extensions/ublock/lib/codemirror/mode/css/css.js +864 -0
- package/extensions/ublock/lib/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
- package/extensions/ublock/lib/codemirror/mode/javascript/javascript.js +942 -0
- package/extensions/ublock/lib/codemirror/mode/xml/xml.js +413 -0
- package/extensions/ublock/lib/codemirror/theme/night.css +27 -0
- package/extensions/ublock/lib/csstree/LICENSE +19 -0
- package/extensions/ublock/lib/csstree/css-tree.js +17 -0
- package/extensions/ublock/lib/diff/README.md +34 -0
- package/extensions/ublock/lib/diff/swatinem_diff.js +272 -0
- package/extensions/ublock/lib/hsluv/LICENSE +20 -0
- package/extensions/ublock/lib/hsluv/README +3 -0
- package/extensions/ublock/lib/hsluv/hsluv-0.1.0.min.js +8 -0
- package/extensions/ublock/lib/js-beautify/LICENSE +9 -0
- package/extensions/ublock/lib/js-beautify/README +5 -0
- package/extensions/ublock/lib/js-beautify/beautifier.min.js +2 -0
- package/extensions/ublock/lib/lz4/README.md +52 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-any.js +151 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-js.js +297 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-wasm.js +195 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec.wasm +0 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec.wat +745 -0
- package/extensions/ublock/lib/publicsuffixlist/publicsuffixlist.js +641 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/README.md +29 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/publicsuffixlist.wasm +0 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/publicsuffixlist.wat +322 -0
- package/extensions/ublock/lib/punycode.js +493 -0
- package/extensions/ublock/lib/regexanalyzer/CHANGES.md +15 -0
- package/extensions/ublock/lib/regexanalyzer/README.md +14 -0
- package/extensions/ublock/lib/regexanalyzer/regex.js +2276 -0
- package/extensions/ublock/logger-ui.html +232 -0
- package/extensions/ublock/managed_storage.json +73 -0
- package/extensions/ublock/manifest.json +115 -0
- package/extensions/ublock/no-dashboard.html +27 -0
- package/extensions/ublock/popup-fenix.html +114 -0
- package/extensions/ublock/settings.html +98 -0
- package/extensions/ublock/support.html +131 -0
- package/extensions/ublock/web_accessible_resources/1x1.gif +0 -0
- package/extensions/ublock/web_accessible_resources/2x2.png +0 -0
- package/extensions/ublock/web_accessible_resources/32x32.png +0 -0
- package/extensions/ublock/web_accessible_resources/3x2.png +0 -0
- package/extensions/ublock/web_accessible_resources/README.txt +11 -0
- package/extensions/ublock/web_accessible_resources/addthis_widget.js +39 -0
- package/extensions/ublock/web_accessible_resources/amazon_ads.js +70 -0
- package/extensions/ublock/web_accessible_resources/amazon_apstag.js +62 -0
- package/extensions/ublock/web_accessible_resources/ampproject_v0.js +34 -0
- package/extensions/ublock/web_accessible_resources/chartbeat.js +30 -0
- package/extensions/ublock/web_accessible_resources/click2load.html +28 -0
- package/extensions/ublock/web_accessible_resources/doubleclick_instream_ad_status.js +1 -0
- package/extensions/ublock/web_accessible_resources/empty +0 -0
- package/extensions/ublock/web_accessible_resources/epicker-ui.html +76 -0
- package/extensions/ublock/web_accessible_resources/fingerprint2.js +55 -0
- package/extensions/ublock/web_accessible_resources/fingerprint3.js +45 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_analytics.js +110 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_cx_api.js +36 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_ga.js +130 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_inpage_linkid.js +28 -0
- package/extensions/ublock/web_accessible_resources/google-ima.js +855 -0
- package/extensions/ublock/web_accessible_resources/googlesyndication_adsbygoogle.js +56 -0
- package/extensions/ublock/web_accessible_resources/googletagmanager_gtm.js +43 -0
- package/extensions/ublock/web_accessible_resources/googletagservices_gpt.js +153 -0
- package/extensions/ublock/web_accessible_resources/hd-main.js +46 -0
- package/extensions/ublock/web_accessible_resources/ligatus_angular-tag.js +29 -0
- package/extensions/ublock/web_accessible_resources/monkeybroker.js +43 -0
- package/extensions/ublock/web_accessible_resources/mxpnl_mixpanel.js +51 -0
- package/extensions/ublock/web_accessible_resources/nobab.js +87 -0
- package/extensions/ublock/web_accessible_resources/nobab2.js +42 -0
- package/extensions/ublock/web_accessible_resources/noeval-silent.js +28 -0
- package/extensions/ublock/web_accessible_resources/noeval.js +30 -0
- package/extensions/ublock/web_accessible_resources/nofab.js +67 -0
- package/extensions/ublock/web_accessible_resources/noop-0.1s.mp3 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-0.5s.mp3 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-1s.mp4 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-vmap1.0.xml +1 -0
- package/extensions/ublock/web_accessible_resources/noop.css +1 -0
- package/extensions/ublock/web_accessible_resources/noop.html +5 -0
- package/extensions/ublock/web_accessible_resources/noop.js +3 -0
- package/extensions/ublock/web_accessible_resources/noop.json +1 -0
- package/extensions/ublock/web_accessible_resources/noop.txt +1 -0
- package/extensions/ublock/web_accessible_resources/outbrain-widget.js +72 -0
- package/extensions/ublock/web_accessible_resources/popads-dummy.js +30 -0
- package/extensions/ublock/web_accessible_resources/popads.js +40 -0
- package/extensions/ublock/web_accessible_resources/prebid-ads.js +26 -0
- package/extensions/ublock/web_accessible_resources/scorecardresearch_beacon.js +31 -0
- package/extensions/ublock/whitelist.html +63 -0
- package/external/.gitkeep +0 -0
- package/fonts/Calibri Bold Italic.ttf +0 -0
- package/fonts/Calibri Bold.TTF +0 -0
- package/fonts/Calibri Italic.ttf +0 -0
- package/fonts/Calibri Light Italic.ttf +0 -0
- package/fonts/Calibri Light.ttf +0 -0
- package/fonts/Calibri Regular.ttf +0 -0
- package/fonts/Emoji.ttf +0 -0
- package/fonts/SegoeUI-Bold.ttf +0 -0
- package/fonts/SegoeUI-Light.ttf +0 -0
- package/fonts/SegoeUI-Regular.ttf +0 -0
- package/fonts/SegoeUI-Semibold.ttf +0 -0
- package/fonts/SegoeUI-Semilight.ttf +0 -0
- package/fonts/Tahoma Bold.ttf +0 -0
- package/fonts/Tahoma.ttf +0 -0
- package/fonts/fonts.conf +21 -0
- package/package.json +177 -0
- package/scripts/build-function.js +18 -0
- package/scripts/build-open-api.js +274 -0
- package/scripts/build-schemas.js +86 -0
- package/scripts/build-selectors.js +36 -0
- package/scripts/clean.js +7 -0
- package/scripts/install-adblock.js +45 -0
- package/scripts/install-cdp-json.js +37 -0
- package/scripts/start.sh +30 -0
- package/scripts/test.sh +17 -0
- package/src/browserless.ts +253 -0
- package/src/browsers/cdp-chromium.ts +422 -0
- package/src/browsers/index.ts +296 -0
- package/src/browsers/playwright-chromium.ts +168 -0
- package/src/browsers/playwright-firefox.ts +161 -0
- package/src/browsers/playwright-webkit.ts +161 -0
- package/src/config.ts +426 -0
- package/src/constants.ts +4 -0
- package/src/exports.ts +23 -0
- package/src/file-system.ts +54 -0
- package/src/hooks.ts +37 -0
- package/src/http.ts +157 -0
- package/src/index.ts +41 -0
- package/src/limiter.spec.ts +365 -0
- package/src/limiter.ts +225 -0
- package/src/metrics.spec.ts +49 -0
- package/src/metrics.ts +108 -0
- package/src/mime-types.ts +332 -0
- package/src/monitoring.ts +53 -0
- package/src/routes/chromium/http/content-post.ts +238 -0
- package/src/routes/chromium/http/download-post.ts +162 -0
- package/src/routes/chromium/http/function-post.ts +98 -0
- package/src/routes/chromium/http/pdf-post.ts +234 -0
- package/src/routes/chromium/http/performance.ts +71 -0
- package/src/routes/chromium/http/scrape-post.ts +439 -0
- package/src/routes/chromium/http/screenshot-post.ts +262 -0
- package/src/routes/chromium/tests/content.spec.ts +340 -0
- package/src/routes/chromium/tests/download.spec.ts +77 -0
- package/src/routes/chromium/tests/function.spec.ts +279 -0
- package/src/routes/chromium/tests/pdf.spec.ts +375 -0
- package/src/routes/chromium/tests/performance.spec.ts +155 -0
- package/src/routes/chromium/tests/scrape.spec.ts +414 -0
- package/src/routes/chromium/tests/screenshot.spec.ts +387 -0
- package/src/routes/chromium/tests/websocket.spec.ts +407 -0
- package/src/routes/chromium/utils/function/client.ts +99 -0
- package/src/routes/chromium/utils/function/handler.ts +172 -0
- package/src/routes/chromium/utils/performance/child.ts +38 -0
- package/src/routes/chromium/utils/performance/main.ts +90 -0
- package/src/routes/chromium/utils/performance/types.ts +24 -0
- package/src/routes/chromium/ws/browser.ts +31 -0
- package/src/routes/chromium/ws/cdp-chromium.ts +31 -0
- package/src/routes/chromium/ws/page.ts +31 -0
- package/src/routes/chromium/ws/playwright-chromium.ts +44 -0
- package/src/routes/firefox/tests/websocket.spec.ts +146 -0
- package/src/routes/firefox/ws/playwright-firefox.ts +44 -0
- package/src/routes/management/http/config-get.ts +82 -0
- package/src/routes/management/http/metrics-get.ts +43 -0
- package/src/routes/management/http/metrics-total-get.ts +89 -0
- package/src/routes/management/http/sessions-get.ts +39 -0
- package/src/routes/management/http/static-get.ts +109 -0
- package/src/routes/management/tests/management.spec.ts +71 -0
- package/src/routes/webkit/tests/websocket.spec.ts +146 -0
- package/src/routes/webkit/ws/playwright-webkit.ts +44 -0
- package/src/server.ts +609 -0
- package/src/shim.spec.ts +154 -0
- package/src/shim.ts +78 -0
- package/src/types.ts +470 -0
- package/src/utils.ts +787 -0
- package/src/webhooks.ts +50 -0
- package/static/docs/browserless-logo.png +0 -0
- package/static/docs/docs.js +2 -0
- package/static/docs/index.html +71 -0
- package/static/docs/swagger.json +4232 -0
- package/static/favicon-32x32.png +0 -0
- package/static/function/client.js +31623 -0
- package/static/function/index.html +12 -0
- package/tsconfig.json +31 -0
|
@@ -0,0 +1,3033 @@
|
|
|
1
|
+
! Title: uBlock filters – Badware risks
|
|
2
|
+
! Expires: 5 days
|
|
3
|
+
! Last modified: Wed, 22 Nov 2023 14:04:38 +0000
|
|
4
|
+
! Diff-Path: %diffpath%#ublock-badware
|
|
5
|
+
! Diff-Name: ublock-badware
|
|
6
|
+
! Diff-Expires: 5 hours
|
|
7
|
+
! License: https://github.com/uBlockOrigin/uAssets/blob/master/LICENSE
|
|
8
|
+
! *** uAssets:filters/badware.txt ***
|
|
9
|
+
! Using request of type `document` will cause the whole site to be blocked through
|
|
10
|
+
! strict blocking, yet the site will render properly if a user still decides to
|
|
11
|
+
! go ahead.
|
|
12
|
+
! 2014-10-22: https://assiste.com/01Net.html
|
|
13
|
+
! 2013-03-25: https://www.malekal.com/pctutotuto4pc-association-avec-01net/
|
|
14
|
+
! 2012-10-31: https://www.journaldunet.com/solutions/dsi/des-malwares-sur-telecharger-com-01net-1012.shtml
|
|
15
|
+
! 2012-10-30: https://www.lesnumeriques.com/appli-logiciel/telecharger-depuis-01net-nuit-gravement-a-sante-pc-n26763.html
|
|
16
|
+
! 2012-06-17: https://www.malekal.com/01net-pc-optimizer-pour-ne-pas-optimiser-son-pc/
|
|
17
|
+
! 2012-02-17: http://neosting.net/logiciels/01net-et-softonic-ajoutent-aussi-un-installeur-publicitaire.html (Dead page)
|
|
18
|
+
||01net.com/telecharger/$doc
|
|
19
|
+
! 2015-03-11: https://blog.emsisoft.com/en/12678/mind-the-pup-top-download-portals-to-avoid/
|
|
20
|
+
! 2015-01-21: https://www.howtogeek.com/207692/yes-every-freeware-download-site-is-serving-crapware-heres-the-proof/
|
|
21
|
+
! 2015-01-11: https://www.howtogeek.com/198622/heres-what-happens-when-you-install-the-top-10-download.com-apps/
|
|
22
|
+
! 2012-06-27: https://insecure.org/news/download-com-fiasco.html
|
|
23
|
+
! 2011-12-05: https://seclists.org/nmap-announce/2011/5
|
|
24
|
+
! 2011-08-22: https://www.extremetech.com/computing/93504-download-com-wraps-downloads-in-bloatware-lies-about-motivations
|
|
25
|
+
! ||download.cnet.com^$doc
|
|
26
|
+
||flexytalk.net^
|
|
27
|
+
||quickdomainfwd.com^
|
|
28
|
+
||vlc.de^$doc
|
|
29
|
+
||audacity.de^$doc
|
|
30
|
+
||havenworks.com^$doc
|
|
31
|
+
! ||ublock.org^$doc
|
|
32
|
+
~support.ublock.org,ublock.org##main::before:style(content: 'uBlock is unrelated to the well-known uBlock Origin.' !important; font-size: 32px !important; color: red !important; font-weight: bold !important;)
|
|
33
|
+
support.ublock.org##div.hero-unit > div.search-box--hero-unit::before:style(content: 'uBlock is unrelated to the well-known uBlock Origin.' !important; font-size: var(--font-size-h2) !important; color: red !important; font-weight: bold !important;)
|
|
34
|
+
||7zip.es^$doc
|
|
35
|
+
||7zip.fr^$doc
|
|
36
|
+
||7zip.it^$doc
|
|
37
|
+
||adblock.fr^$doc
|
|
38
|
+
||aresgalaxy.es^$doc
|
|
39
|
+
||audacity.es^$doc
|
|
40
|
+
||audacity.fr^$doc
|
|
41
|
+
||audacity.it^$doc
|
|
42
|
+
||audacity.pl^$doc
|
|
43
|
+
||azureus.es^$doc
|
|
44
|
+
||bittorrent.es^$doc
|
|
45
|
+
||bleachbit.com^$doc
|
|
46
|
+
||blender3d.es^$doc
|
|
47
|
+
||blender3d.fr^$doc
|
|
48
|
+
||bluestacksdownloads.com^$doc
|
|
49
|
+
||calibre.it^$doc
|
|
50
|
+
||celestia.es^$doc
|
|
51
|
+
||celestia.fr^$doc
|
|
52
|
+
||clonezilla.es^$doc
|
|
53
|
+
||clonezilla.fr^$doc
|
|
54
|
+
||clonezilla.it^$doc
|
|
55
|
+
||cyberduck.de^$doc
|
|
56
|
+
||cyberduck.es^$doc
|
|
57
|
+
||cyberduck.fr^$doc
|
|
58
|
+
||cyberduck.it^$doc
|
|
59
|
+
||filezilla.es^$doc
|
|
60
|
+
||filezilla.fr^$doc
|
|
61
|
+
||filezilla.it^$doc
|
|
62
|
+
||filezilla.net^$doc
|
|
63
|
+
||filezilla.pl^$doc
|
|
64
|
+
||freefilesync.com^$doc
|
|
65
|
+
||freerapid.fr^$doc
|
|
66
|
+
||garagebandforpc.org^$doc
|
|
67
|
+
||gimp.es^$doc
|
|
68
|
+
||gparted.fr^$doc
|
|
69
|
+
||gparted.it^$doc
|
|
70
|
+
||greenshot.fr^$doc
|
|
71
|
+
||greenshot.org^$doc
|
|
72
|
+
||handbrake.es^$doc
|
|
73
|
+
||handbrake.it^$doc
|
|
74
|
+
||inkscape.es^$doc
|
|
75
|
+
||inkscape.fr^$doc
|
|
76
|
+
||inkscape.it^$doc
|
|
77
|
+
||izarc.fr^$doc
|
|
78
|
+
||jdownloader.fr^$doc
|
|
79
|
+
||keepass.com^$doc
|
|
80
|
+
||keepass.de^$doc
|
|
81
|
+
||keepass.es^$doc
|
|
82
|
+
||keepass.fr^$doc
|
|
83
|
+
||keepass.it^$doc
|
|
84
|
+
||keepassxc.com^$doc
|
|
85
|
+
||notepad2.com^$doc
|
|
86
|
+
||office.org^$doc
|
|
87
|
+
||open-office.fr^$doc
|
|
88
|
+
||paintnet.es^$doc
|
|
89
|
+
||paintnet.fr^$doc
|
|
90
|
+
||paintnet.it^$doc
|
|
91
|
+
||pdfsam.com^$doc
|
|
92
|
+
||peazip.com^$doc
|
|
93
|
+
||qbittorrent.com^$doc
|
|
94
|
+
||scribus.fr^$doc
|
|
95
|
+
||scribus.it^$doc
|
|
96
|
+
||senuti.org^$doc
|
|
97
|
+
||smplayer.org^$doc
|
|
98
|
+
||stellarium.es^$doc
|
|
99
|
+
||stellarium.fr^$doc
|
|
100
|
+
||truecrypt.fr^$doc
|
|
101
|
+
||truecrypt.it^$doc
|
|
102
|
+
||truecrypt.pl^$doc
|
|
103
|
+
||unetbootin.net^$doc
|
|
104
|
+
||unetbootin.org^$doc
|
|
105
|
+
||utorrent.it^$doc
|
|
106
|
+
||virtualbox.es^$doc
|
|
107
|
+
||virtualbox.pl^$doc
|
|
108
|
+
||newsharecounts.s3-us-west-2.amazonaws.com/nsc.js$script
|
|
109
|
+
||googlo.co^$doc
|
|
110
|
+
||yahoo-news.co^$doc
|
|
111
|
+
||chairgaubsy.com^$doc
|
|
112
|
+
||epailseptox.com^$doc
|
|
113
|
+
||hentaiplaytime.com^$doc
|
|
114
|
+
||notification-time.com^$doc
|
|
115
|
+
||viewmypdf.com^$doc
|
|
116
|
+
! com-guest.info badware
|
|
117
|
+
||com-guest.info^$doc
|
|
118
|
+
! foxload.com badware
|
|
119
|
+
||foxload.com^$doc
|
|
120
|
+
! aksia.co badware
|
|
121
|
+
! Ref: https://www.bleepingcomputer.com/news/security/phisher-announces-more-attacks-against-hedge-funds-and-financial-firms/
|
|
122
|
+
||aksia.co^$doc
|
|
123
|
+
! ReImagePlus links
|
|
124
|
+
! Ref: https://forums.malwarebytes.com/topic/194200-removal-instructions-for-reimage-repair/
|
|
125
|
+
windowsreport.com##.code-block
|
|
126
|
+
appuals.com##.appua-reimage-top
|
|
127
|
+
appuals.com##.info.box
|
|
128
|
+
pcseguro.es,sauguspc.lt,sichernpc.de,ugetfix.com,wyleczpc.pl##.download_button_info_texts
|
|
129
|
+
pcseguro.es,sauguspc.lt,sichernpc.de,ugetfix.com,wyleczpc.pl##.js-download_button_additional_links
|
|
130
|
+
pcseguro.es,sauguspc.lt,sichernpc.de,ugetfix.com,wyleczpc.pl##.primary_download
|
|
131
|
+
pcseguro.es,sauguspc.lt,sichernpc.de,ugetfix.com,wyleczpc.pl##.sidebar_download_inner
|
|
132
|
+
pcseguro.es,sauguspc.lt,sichernpc.de,ugetfix.com,wyleczpc.pl##div.attention-button-box-green
|
|
133
|
+
thewindowsclub.com##.entry-content > div > strong:has-text(find & fix Windows error)
|
|
134
|
+
majorgeeks.com##b:has(a[target^="reimage"])
|
|
135
|
+
||majorgeeks.com/images/icons/red_icon_18x17px.png$image
|
|
136
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.attention-button-wrap:has-text(Reimage)
|
|
137
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.ui-content > .win
|
|
138
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.sidebar_download_inner > :not(.voting-box):not(.colorbg-grey)
|
|
139
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##th:has-text(/^Detection$/)
|
|
140
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##th:has-text(/^Detection$/) + td
|
|
141
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.js-download_button_offer
|
|
142
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.primary_download
|
|
143
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.automatic_removal_list
|
|
144
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.quick-download-button-placeholder
|
|
145
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.nfc-bottom-right:has-text(Reimage)
|
|
146
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##a:has-text(Reimage)
|
|
147
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.quick-download-button-text
|
|
148
|
+
||reimageplus.com^$doc
|
|
149
|
+
! Lapsed domains that once hosted adblock lists, several of whom are now used for bad purposes
|
|
150
|
+
||gjtech.net^$doc
|
|
151
|
+
||securemecca.com^$doc
|
|
152
|
+
! Badware
|
|
153
|
+
||kuhoot.it^$doc
|
|
154
|
+
! Fake cloudflare screen
|
|
155
|
+
||gmboxx.com^
|
|
156
|
+
||mr.media-bucket.com^
|
|
157
|
+
||pl.allsports4free.club^
|
|
158
|
+
||pl.allsports4u.club^
|
|
159
|
+
||discount.s3blog.org^
|
|
160
|
+
||s3blog.org^$3p
|
|
161
|
+
||dataprovider.biz^
|
|
162
|
+
||tplinkextender.net^
|
|
163
|
+
||upload4earn.org^$doc
|
|
164
|
+
||newsfile.club^$doc
|
|
165
|
+
||clickpush.biz^$doc
|
|
166
|
+
||buzzadnetwork.com^$all
|
|
167
|
+
||abcdserver.com^$all
|
|
168
|
+
||americanoverlook.com^
|
|
169
|
+
||anonnews.co^
|
|
170
|
+
||channel-7-news.com^
|
|
171
|
+
||embols.com^
|
|
172
|
+
||endingthefed.com^
|
|
173
|
+
||goneleft.com^
|
|
174
|
+
||nephef.com^
|
|
175
|
+
||newsbreakshere.com^
|
|
176
|
+
||rilenews.com^
|
|
177
|
+
||thecontroversialfiles.net^
|
|
178
|
+
||voxtribune.com^
|
|
179
|
+
||checkisreal.com^
|
|
180
|
+
||mysecurify.com^
|
|
181
|
+
||developsincelock.com^
|
|
182
|
+
||gabriellalovecats.com^
|
|
183
|
+
||jackielovedogs.com^
|
|
184
|
+
||tomorrowwillbehotmaybe.com^
|
|
185
|
+
||wiilberedmodels.com^
|
|
186
|
+
||apple.com-*.live^
|
|
187
|
+
! some badware testing around
|
|
188
|
+
||cobalten.com^$all
|
|
189
|
+
! redirect from egy best
|
|
190
|
+
||stremanp.com^$all
|
|
191
|
+
! redirects
|
|
192
|
+
||nextyourcontent.com^$all
|
|
193
|
+
||geniusdexchange.com^$all
|
|
194
|
+
||securecloud-smart.com^$all
|
|
195
|
+
||doctopdftech.com^$all
|
|
196
|
+
||best2019-games-web4.com^$all
|
|
197
|
+
||track-enable.com^$all
|
|
198
|
+
||searchdimension.com^$all
|
|
199
|
+
||beqbox.com^
|
|
200
|
+
||bblck.me^$all
|
|
201
|
+
||glinks.co^$all
|
|
202
|
+
/?track=*&key=$all
|
|
203
|
+
||getsecuritysuite.com^$all
|
|
204
|
+
! SpyHunter links
|
|
205
|
+
! Ref: https://blog.malwarebytes.com/detections/pup-optional-spyhunter/
|
|
206
|
+
howtoremove.guide##div[style^="border:2px"]
|
|
207
|
+
howtoremove.guide##.entry-content > div:has-text(Special Offer)
|
|
208
|
+
howtoremove.guide###solution_v2_de
|
|
209
|
+
howtoremove.guide###alt_content_main_div > p:has-text(SpyHunter)
|
|
210
|
+
howtoremove.guide###gray_de
|
|
211
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##.automatic_removal_list_w > .ar_block_description
|
|
212
|
+
2-spyware.com,novirus.uk,faravirus.ro,uirusu.jp,virusi.hr,wubingdu.cn,avirus.hu,ioys.gr,odstranitvirus.cz,tanpavirus.web.id,utanvirus.se,virukset.fi,losvirus.es,virusler.info.tr,semvirus.pt,lesvirus.fr,senzavirus.it,dieviren.de,viruset.no,usunwirusa.pl,zondervirus.nl,bedynet.ru,virusai.lt,virusi.bg,viirused.ee,udenvirus.dk##a:has-text(SpyHunter)
|
|
213
|
+
||tncrun.net^$all
|
|
214
|
+
||d3125zvx5yi5sj.cloudfront.net^$all
|
|
215
|
+
! thepiratebay3 .com bad
|
|
216
|
+
thepiratebay3.com^$all
|
|
217
|
+
||procdnvids.net^
|
|
218
|
+
||prostream.to^
|
|
219
|
+
||mybestclick.net^$3p
|
|
220
|
+
||verified-extensions.com^
|
|
221
|
+
||smsiak.pl^$doc
|
|
222
|
+
||smsy24.pl^$doc
|
|
223
|
+
! redirecting domains / fraud
|
|
224
|
+
||video-adblock.com^$all
|
|
225
|
+
||vid-adblocker.com^$all
|
|
226
|
+
||multiadblock.com^$all
|
|
227
|
+
||popsads.link^$all
|
|
228
|
+
||adverdirect.com^$all
|
|
229
|
+
||euphe-gun.com^$all
|
|
230
|
+
||bestwinexperience.com^$all
|
|
231
|
+
||traffic-go.com^$all
|
|
232
|
+
||bainushe.com^$all
|
|
233
|
+
||streamssitesearch.com^$all
|
|
234
|
+
||trackertrak.com^$all
|
|
235
|
+
||catbeardx.com^$all
|
|
236
|
+
||newsinform.net^$all
|
|
237
|
+
||bingstyle.com^$all
|
|
238
|
+
||redirekted.com^$all
|
|
239
|
+
||ptookaih.net^$all
|
|
240
|
+
||blockskipad.com^$all
|
|
241
|
+
||adpopblocker.com^$all
|
|
242
|
+
||teenyreligious.com^$all
|
|
243
|
+
||redirectsstm.click^$all
|
|
244
|
+
||trafficjunction.com^$all
|
|
245
|
+
||arclk.net^$all
|
|
246
|
+
||clkepd.com^$all
|
|
247
|
+
||btnativenav.com^$all
|
|
248
|
+
||1111sale.us^$all
|
|
249
|
+
||litance-viestside.icu^$all
|
|
250
|
+
||omgtnc.com^$all
|
|
251
|
+
||bector-blotance.xyz^$all
|
|
252
|
+
||bestoffer21.info^$all
|
|
253
|
+
||n06.biz^$all
|
|
254
|
+
||um-bredirect.com^$all
|
|
255
|
+
||terlaby.com^$all
|
|
256
|
+
||aff2021.com^$all
|
|
257
|
+
||claspedtwelve.com^$all
|
|
258
|
+
||glbltraffic.com^$all
|
|
259
|
+
||0redirc.com^$all
|
|
260
|
+
||inspirationhistorical.com^$all
|
|
261
|
+
||maroohost.online^$all
|
|
262
|
+
||rollmeout.xyz^$all
|
|
263
|
+
||rouonixon.com^$all
|
|
264
|
+
||amigosdetuciudad.com^$all
|
|
265
|
+
||bb-delivery.icu^$all
|
|
266
|
+
||incorphishor.com^$all
|
|
267
|
+
||phygical-questall.icu^$all
|
|
268
|
+
||praterage-colled.com^$all
|
|
269
|
+
||womeniovers.net^$all
|
|
270
|
+
||fictiongroin.com^$all
|
|
271
|
+
||goaffmy.com^$all
|
|
272
|
+
||pwrtds.com^$all
|
|
273
|
+
||trackbyfast.com^$all
|
|
274
|
+
||trfrc.com^$all
|
|
275
|
+
||1ts11.top^$all
|
|
276
|
+
||dating.hdxvideos.ru^$all
|
|
277
|
+
||cngcpy.com^$all
|
|
278
|
+
||elevisions.biz^$all
|
|
279
|
+
||eneverals.biz^$all
|
|
280
|
+
||harzfriends.de^$all
|
|
281
|
+
||moviesboys.com/*.shtml$doc
|
|
282
|
+
||name0fbestway.com^$all
|
|
283
|
+
||netund.com^$all
|
|
284
|
+
||sex-is-here.com/*.shtml$doc
|
|
285
|
+
||sexall.net/*.shtml$doc
|
|
286
|
+
||upshroomishtor.com^$all
|
|
287
|
+
||urtyert.com^$all
|
|
288
|
+
||quellaplentyresolute.com^$all
|
|
289
|
+
||hsrvu.com^$all
|
|
290
|
+
||adtr1.com^$all
|
|
291
|
+
||axdsz.pro^$all
|
|
292
|
+
||datingapp.live^$all
|
|
293
|
+
||retargetcore.com^$all
|
|
294
|
+
.com/c/*?s1=$doc,domain=com
|
|
295
|
+
.net/c/*?s1=$doc,domain=net
|
|
296
|
+
/tds/ae?tds_campaign=$doc
|
|
297
|
+
||adating.link^$all
|
|
298
|
+
||arthyredir.com^$all
|
|
299
|
+
||aslnk.link^$all
|
|
300
|
+
||benaughty.com^$all
|
|
301
|
+
||searchdatestoday.com^$all
|
|
302
|
+
||bnewsblite.me^$all
|
|
303
|
+
||ckre.net^$all
|
|
304
|
+
||doprinplupr.com^$all
|
|
305
|
+
||gotohouse2.cc^$all
|
|
306
|
+
||letmessagenow.com^$all
|
|
307
|
+
||x-soft.club^$all
|
|
308
|
+
||apilond.com^$all
|
|
309
|
+
||tracklyfast.com^$all
|
|
310
|
+
||atzekromchan.com^$all
|
|
311
|
+
||pupok.link^$all
|
|
312
|
+
||ntvpevnts.com^$all
|
|
313
|
+
||aditserve.com^$all
|
|
314
|
+
||onclickclear.com^$all
|
|
315
|
+
/bdv_rd.dbm?ownid=$doc
|
|
316
|
+
?bid=0.*&search_referrer_domain=$doc
|
|
317
|
+
||btpnav.com^$all
|
|
318
|
+
||veysag.com^$all
|
|
319
|
+
||fecebook.com^$all
|
|
320
|
+
||festinus.xyz^$all
|
|
321
|
+
||secureleadsforever.com^$all
|
|
322
|
+
/apop/redirect/zone/*$doc,popup
|
|
323
|
+
||belbenback.live^$all
|
|
324
|
+
/?pl=*&sm=$doc
|
|
325
|
+
! hacked and abused for redirect
|
|
326
|
+
tech4yougadgets.com##^meta[http-equiv="refresh"]
|
|
327
|
+
tech4yougadgets.com##^script[src^="data:text/javascript;base64,"]
|
|
328
|
+
tech4yougadgets.com##+js(aopr, Notification)
|
|
329
|
+
||aleks-avto-rnd.ru^$all
|
|
330
|
+
||trk.setting-nervous-steady-noted.xyz^$all
|
|
331
|
+
||clicks.affstrack.com^
|
|
332
|
+
||weledying-jessed.com^$all
|
|
333
|
+
?zoneid=*&cost=0.$doc
|
|
334
|
+
/zcredirect?visitid=*&iframeDetected=false|$doc
|
|
335
|
+
*/zcvisitor/*?campaignid$doc
|
|
336
|
+
||tweitter.com^$all
|
|
337
|
+
||mqdownload.com^$all
|
|
338
|
+
/pop-click?sid=*&data=$doc
|
|
339
|
+
/click?a=*&aff_click_id=$doc
|
|
340
|
+
||trwl1.com^$all
|
|
341
|
+
||clixwells.com^$all
|
|
342
|
+
||wxhiojortldjyegtkx.bid^$all
|
|
343
|
+
||pushmeup.art^$all
|
|
344
|
+
||pushub.net^$all
|
|
345
|
+
||adserver*/?sdomain=$doc,popup
|
|
346
|
+
||date4sex.pro^$all
|
|
347
|
+
/click.php?data=$doc
|
|
348
|
+
&adspot_id=*&cost=0.$doc
|
|
349
|
+
||s4f.net^$all
|
|
350
|
+
||onlyfreetoonporn.com^$all
|
|
351
|
+
||tilda.gb.net^$all
|
|
352
|
+
||cleardexchange.com^$all
|
|
353
|
+
||duellosheliced.com^$all
|
|
354
|
+
||mokedirect.xyz^$all
|
|
355
|
+
||srvpcn.com^$all
|
|
356
|
+
||lone1y.com^$all
|
|
357
|
+
||tr1net.com^$all
|
|
358
|
+
||usdownload.widost.com^$all
|
|
359
|
+
||cpttrcklnk.com^$all
|
|
360
|
+
||neighborhoodsluts.com^$all
|
|
361
|
+
.xyz/video.php?=*&dating_xyz_0&&0$frame
|
|
362
|
+
||0redird.com^$all
|
|
363
|
+
||turnhub.net^$all
|
|
364
|
+
/click?pid=*&sub1=$doc
|
|
365
|
+
! fraud => https://forums.lanik.us/viewtopic.php?f=90&t=45586
|
|
366
|
+
||411medias.com^$all
|
|
367
|
+
||zedplays.com^$all
|
|
368
|
+
||special-update.online^$all
|
|
369
|
+
||success-news.net^$all
|
|
370
|
+
||aloha-news.net^$all
|
|
371
|
+
||bookgr8.com^$all
|
|
372
|
+
||internetspeedtracker.com^$all
|
|
373
|
+
||system-update-new-2021.com^$all
|
|
374
|
+
||m7c4d5r7.stackpathcdn.com^$all
|
|
375
|
+
||worldactualstories.com^$all
|
|
376
|
+
||allhugenewz.com^$all
|
|
377
|
+
||download-app.net^$all
|
|
378
|
+
||lib2.biz^$all
|
|
379
|
+
||myactualblog.com^$all
|
|
380
|
+
||ne03.biz^$all
|
|
381
|
+
||pu4.biz^$all
|
|
382
|
+
||privatesinglesmeet.com^$all
|
|
383
|
+
||readytosinglesmeet.com^$all
|
|
384
|
+
||cleanphonefast.com^$all
|
|
385
|
+
||fastphonebooster.com^$all
|
|
386
|
+
||reimageplusminus.me^$all
|
|
387
|
+
||flashymass.com^$all
|
|
388
|
+
||luckywinner-web1.com^$all
|
|
389
|
+
||theshoparound.com^$all
|
|
390
|
+
||loverfuck.com^$all
|
|
391
|
+
||profi-para.com^$all
|
|
392
|
+
||onlineplus.click^$all
|
|
393
|
+
||jashautchord.com^$all
|
|
394
|
+
||trafempire.com^$all
|
|
395
|
+
||goads.pro^$all
|
|
396
|
+
||iamnaughty.com^$all
|
|
397
|
+
||iwantu.com^$all
|
|
398
|
+
||myhotdates.com^$all
|
|
399
|
+
||onenightfriend.com^$doc
|
|
400
|
+
||buddygays.com^$all
|
|
401
|
+
||localsnapsext.com^$all
|
|
402
|
+
||heartmedia.biz^$all
|
|
403
|
+
/click.php?key=*cost=$doc,popup
|
|
404
|
+
||totaltopposts.com^$all
|
|
405
|
+
||djin.site^$all
|
|
406
|
+
||ourhypewords.com^$all
|
|
407
|
+
||antivirus.landerhd.com^$all
|
|
408
|
+
||to6s.biz^$all
|
|
409
|
+
||sweetgirls.date^$all
|
|
410
|
+
||fast-travel.org^$all
|
|
411
|
+
||typiccor.com^$all
|
|
412
|
+
||wholedailyfeed.com^$all
|
|
413
|
+
/?clck=*&sid=$doc
|
|
414
|
+
||love7date.info^$all
|
|
415
|
+
||bestsecretflirt.com^$all
|
|
416
|
+
||toplov.com^$all
|
|
417
|
+
||gegenhartz.de^$all
|
|
418
|
+
||marootrack.co^$all
|
|
419
|
+
||besty-deals.com^$all
|
|
420
|
+
&dci=*&tds_campaign=$doc
|
|
421
|
+
||eudoxia-myr.com^$all
|
|
422
|
+
||revpu.sh^$all
|
|
423
|
+
||listen-heres.com^$all
|
|
424
|
+
/smartlink/?a=$doc
|
|
425
|
+
||date.sexpartnercommunity.com/landing/*$doc
|
|
426
|
+
/ll/click.php?key=$doc
|
|
427
|
+
/?ip=*&uclickhash=$doc
|
|
428
|
+
||cheaterboss.com^$all
|
|
429
|
+
||wholewowblog.com^$all
|
|
430
|
+
||cumshots.com^$all
|
|
431
|
+
||multiflings.com^$all
|
|
432
|
+
||real-women-online.com^$all
|
|
433
|
+
/?camp=*&cost=0.$doc
|
|
434
|
+
||monglitch.monster^$all
|
|
435
|
+
||d13nu0oomnx5ti.cloudfront.net^
|
|
436
|
+
||quickdates1.com^$all
|
|
437
|
+
||getmackeepersoftpro.xyz^$all
|
|
438
|
+
||familysimulator.$all
|
|
439
|
+
||instaflrt.com^$all
|
|
440
|
+
||singlesgetmatched.com^$all
|
|
441
|
+
||feelmyfile.info^$all
|
|
442
|
+
||dougale.com^$all
|
|
443
|
+
||adblockfast.com^$all
|
|
444
|
+
||bookofsex.com^$all
|
|
445
|
+
||mydirtytinders.com^$all
|
|
446
|
+
||fuckmore.com^$all
|
|
447
|
+
||dotchaudou.com^$all
|
|
448
|
+
||greengoplatform.com^$all
|
|
449
|
+
||transportgoline.com^$all
|
|
450
|
+
||gobacktothefuture.biz^$all
|
|
451
|
+
||cofounderspecials.com^$all
|
|
452
|
+
||weatherplllatform.com^$all
|
|
453
|
+
||mauptaub.com^$all
|
|
454
|
+
||see-what-is-trending.com^$all
|
|
455
|
+
||owlfolk.com^$all
|
|
456
|
+
||onlyfreelesbianporn.com^$all
|
|
457
|
+
||family-simulators.com^$all
|
|
458
|
+
||your-dates-tonight.com^$all
|
|
459
|
+
||familysimulatorgame.com^$all
|
|
460
|
+
||trackingboost.com^$all
|
|
461
|
+
||update-protection.com^$all
|
|
462
|
+
||asiaxdate.com^$all
|
|
463
|
+
||hotsimulator.com^$all
|
|
464
|
+
/aff.php?*&data2=$doc
|
|
465
|
+
/tds/ae?*&clickid=$doc
|
|
466
|
+
/?clickid=*&ptracker=$doc
|
|
467
|
+
||mous9.biz^$all
|
|
468
|
+
||ourcommonnews.com^$all
|
|
469
|
+
||vehicle-insurance-quote.com^$all
|
|
470
|
+
^lpkey=*&uclickhash=$doc
|
|
471
|
+
||systemupdatesy.life^$all
|
|
472
|
+
||d135aysof2oufc.cloudfront.net^$all
|
|
473
|
+
/?banner=*&phone=$doc
|
|
474
|
+
||advidates.com^$all
|
|
475
|
+
||dvjqvdfujjvvkuyvhjqdvbjcmioljbhjmijq.s3.ap-northeast-1.amazonaws.com^$all
|
|
476
|
+
/2/index.html#|$doc
|
|
477
|
+
/?clickid=*&cost=0.$doc
|
|
478
|
+
/index.php?key=*&t1=$doc
|
|
479
|
+
||cmprotraf.club^$all
|
|
480
|
+
||prelandappslab.com^$all
|
|
481
|
+
/registration?theme=*&a_aid=$doc
|
|
482
|
+
.top/prize/*.php?c=$doc
|
|
483
|
+
||di02.biz^$all
|
|
484
|
+
||adultonlineplay.com^$all
|
|
485
|
+
||fastandslut.com^$all
|
|
486
|
+
&click_price=0.*&click_id=$doc
|
|
487
|
+
?brand=*&model=*&lptoken=$doc
|
|
488
|
+
?brand=*&fingerprint_=$doc
|
|
489
|
+
||familialsimulation.com^$all
|
|
490
|
+
/\/(?:[0-9a-z]{7,25}-){9,13}[0-9a-z]{10,15}\/(?:[0-9a-z]+\/)+index\.php/$doc
|
|
491
|
+
||imilroshoors.com^$all
|
|
492
|
+
||trackhere.pl^$all
|
|
493
|
+
||datingformeeting.com^$all
|
|
494
|
+
||serving-passthrough.com^$all
|
|
495
|
+
/_dating\d\/index\.html\?aref=/$doc
|
|
496
|
+
||familysimulators.$all
|
|
497
|
+
^apb=*&ata=mobilemdots^$doc
|
|
498
|
+
||uoutube.com^$all
|
|
499
|
+
! kkomj.ofchildr.buzz
|
|
500
|
+
||ofchildr.buzz^$all
|
|
501
|
+
||0redire.com^$all
|
|
502
|
+
||celxkpdir.com^$all
|
|
503
|
+
||xonedart-2.live^$all
|
|
504
|
+
^cep=*&zoneid=$doc
|
|
505
|
+
^cep=*&s1=$doc
|
|
506
|
+
.top/robot4*&a=$doc,domain=top
|
|
507
|
+
||androidnotice.com^$all
|
|
508
|
+
||wholenicefeed.com^$all
|
|
509
|
+
||updaterlife.com^$all
|
|
510
|
+
^s=*&ssk=*&svar=*&z=$doc
|
|
511
|
+
/?cid=*&dom=$doc
|
|
512
|
+
^s1=*&click_id=$doc
|
|
513
|
+
||totalrecaptcha.top^$all
|
|
514
|
+
/?type=*&button=2&clickid=$doc
|
|
515
|
+
||valrogrowth.com^$all
|
|
516
|
+
^device_model=*&p1=https$doc
|
|
517
|
+
||5.61.55.143^
|
|
518
|
+
://0.*.biz/?p=$doc
|
|
519
|
+
.biz/sw/w1s.js|$script,3p
|
|
520
|
+
||mo11.biz^$all
|
|
521
|
+
/click.php?key=*&cpc=0&$doc
|
|
522
|
+
||37.1.213.100^
|
|
523
|
+
/?p=*&sub1=$doc
|
|
524
|
+
.xyz/ddos/1tn.html?clickid=$doc
|
|
525
|
+
://e.*.top/video/?c=$doc
|
|
526
|
+
/?srv_id=*#$doc
|
|
527
|
+
||fearlessfont.info^$all
|
|
528
|
+
||love88.club^$all
|
|
529
|
+
.html?cep=*&cost=0.$doc
|
|
530
|
+
/1/index.html?p1=https%$doc
|
|
531
|
+
||familysexsimulators.io^$all
|
|
532
|
+
||23.109.87.170^
|
|
533
|
+
.live/1*.html?cep=$doc
|
|
534
|
+
||edfringe.com/*.php$all
|
|
535
|
+
||jmdinfotechs.com^$all
|
|
536
|
+
||grakorte.com^$all
|
|
537
|
+
/click.php?key=*&zone_id=$doc
|
|
538
|
+
||dearosaka.com^$all
|
|
539
|
+
/domredirect?visitid=$doc
|
|
540
|
+
||smart-redirecting.com^
|
|
541
|
+
?adTagId=*&extclickid=$doc
|
|
542
|
+
||namebawancitel.gq^
|
|
543
|
+
/antibot/ab.php$xhr,1p
|
|
544
|
+
||androiddetection.com^$all
|
|
545
|
+
||elooksjustli.one^
|
|
546
|
+
||ikouthaupi.com^$all
|
|
547
|
+
||keepsclean.com^$all
|
|
548
|
+
||magictrack1.com^
|
|
549
|
+
||my-cleaner.info^$all
|
|
550
|
+
||news-zolehe.com^$all
|
|
551
|
+
||ready-for-download.com^
|
|
552
|
+
||rcuacroossonec.com.ua^
|
|
553
|
+
||taitlastwebegan.com^$all
|
|
554
|
+
||thbstvd.com^
|
|
555
|
+
||vpn-connection-security.com^$all
|
|
556
|
+
||yourpcnotification.com^$all
|
|
557
|
+
||ztzguv.com^$all
|
|
558
|
+
/SRC/SRC.php?c=$doc
|
|
559
|
+
&tb=redirect&allb=redirect&ob=redirect&href=$doc
|
|
560
|
+
||belittlepads.com^$all
|
|
561
|
+
||go2click.online^$all
|
|
562
|
+
||datingmeetnet.com^$all
|
|
563
|
+
||bndl-trp.com^$all
|
|
564
|
+
||clean-2-clean.club^$all
|
|
565
|
+
||top-official-app.com^$all
|
|
566
|
+
||saworbpox.com^$all
|
|
567
|
+
||pornonenight.com^$all
|
|
568
|
+
||youfindadate.top^$all
|
|
569
|
+
?z=*&ymid=$doc
|
|
570
|
+
||xypthe.com^
|
|
571
|
+
||besluor.com^
|
|
572
|
+
/jr.php?gz=$doc
|
|
573
|
+
/g?visitorid=*&extra_data2=|$doc
|
|
574
|
+
||fehbsu.com^$all
|
|
575
|
+
.com/play-2?h=*=eyJ&si1=$doc
|
|
576
|
+
||cacto.cyou^
|
|
577
|
+
||intrlguingdates.net^$all
|
|
578
|
+
/\.com\/proc\.php\?[0-9a-f]{40}$/$doc
|
|
579
|
+
||postyourlife.com^$all
|
|
580
|
+
||rplnd60.com^$all
|
|
581
|
+
||djpjwf.com^$all
|
|
582
|
+
||iwinprize.xyz^$all
|
|
583
|
+
||shosril.com^
|
|
584
|
+
||meetamate.site^
|
|
585
|
+
||niceelitdating.top^$all
|
|
586
|
+
||dm09.biz^$all
|
|
587
|
+
/click.php?key=*&dj_placement=$doc
|
|
588
|
+
||floppyredirect.click^$all
|
|
589
|
+
&srv_id=terra#$doc
|
|
590
|
+
||ultimate-clean.club^$all
|
|
591
|
+
||pcconelove.xyz^$all
|
|
592
|
+
||premiumapps.cfd^
|
|
593
|
+
||funuf.fun^$all
|
|
594
|
+
||video.redwap.cam^$all
|
|
595
|
+
||play.freeplayvideo.com^
|
|
596
|
+
||cractica.xyz^$doc
|
|
597
|
+
||beyourxfriend.com^$all
|
|
598
|
+
||bybygnom.com^$all
|
|
599
|
+
||paderrer.com^$all
|
|
600
|
+
||best-site-online.com^
|
|
601
|
+
||haffnetworkmm.com^$all
|
|
602
|
+
/jump/next.php?r=$doc
|
|
603
|
+
||softronline.click^
|
|
604
|
+
/?clickid=*&t2=.$doc
|
|
605
|
+
||skipalos.xyz^$all
|
|
606
|
+
||makenoads.com^$all
|
|
607
|
+
||dateclique.life^
|
|
608
|
+
||family-simulators.io^$doc
|
|
609
|
+
||familyfornicate.com^$doc
|
|
610
|
+
||speedtestnow.site^$all
|
|
611
|
+
||programprotacol0.com^$all
|
|
612
|
+
||lovedatee.net^$all
|
|
613
|
+
/dating_lp?keyword=$doc
|
|
614
|
+
.space/bonus/*.php?c=$doc
|
|
615
|
+
||club-gagnant.online^$all
|
|
616
|
+
||srengin.com^$all
|
|
617
|
+
/common-player-arrow/index.html?var=*&zoneid=$doc
|
|
618
|
+
/common-player/index.html?var=*&zoneid=$doc
|
|
619
|
+
/not-a-robot/index.html?$doc
|
|
620
|
+
||dating.service2u.shop^$all
|
|
621
|
+
||amazonaws.com/www.yournewlocalflingfinder7.com/$all
|
|
622
|
+
||dirtyfree.games^$all
|
|
623
|
+
||familycheaters.net^$all
|
|
624
|
+
||register.blissfulltimes.com^$doc
|
|
625
|
+
.com/pl?o=*&subid=$doc
|
|
626
|
+
||geheimerseitensprung.com^$all
|
|
627
|
+
||matches4you.info^$all
|
|
628
|
+
||reifenachbarn.com^$all
|
|
629
|
+
/zclkredirect?visitid=$doc
|
|
630
|
+
||done-install.com^$all
|
|
631
|
+
||eboka.vip^$all
|
|
632
|
+
||sanubix.vip^$all
|
|
633
|
+
||magniffic-strean.com^$all
|
|
634
|
+
||felicitakam.ru^$all
|
|
635
|
+
||livestreamchatme.com^$all
|
|
636
|
+
||livechatlove.store^$all
|
|
637
|
+
||naughtymets.com^$all
|
|
638
|
+
||linkprotecttrck.com^$all
|
|
639
|
+
||www3secure.com^$all
|
|
640
|
+
||midnighthookup.today^$all
|
|
641
|
+
||padsthai.com^$all
|
|
642
|
+
||doppelsbangers.com^$all
|
|
643
|
+
||gometabank.com^$all
|
|
644
|
+
||dirtyflirt9.com^$all
|
|
645
|
+
||bestvideo.cloud^$all
|
|
646
|
+
||bmtracks.com^$all
|
|
647
|
+
||doublebangers.com^$all
|
|
648
|
+
||waytau.com^$all
|
|
649
|
+
||laddler.site^$all
|
|
650
|
+
||bintrr.top^$all
|
|
651
|
+
||tricksygirlw.com^$all
|
|
652
|
+
||bustymeets.com^$all
|
|
653
|
+
||aht42trk.com^$all
|
|
654
|
+
/^https:\/\/[0-9a-z]{3,}\.[-a-z]{10,}\.(?:li[fv]e|top|xyz)\/[a-z]{8}\/\?utm_campaign=\w{40,}/$doc,match-case,domain=life|live|top|xyz
|
|
655
|
+
/^https:\/\/[a-z]{2,3}\d\.biz\/go\/[0-9a-z]{15,18}$/$doc,domain=biz
|
|
656
|
+
! e.g. https://to3s.biz/?p=gi4tgnjwgu5gi3bpgy2tmmy
|
|
657
|
+
/^https:\/\/to\ds\.biz\/\?p=/$doc,domain=biz
|
|
658
|
+
! fake dating/prize/video sites
|
|
659
|
+
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{4,}\.[a-z]{2,11}\/(?:[0-9a-z]{6,8}\/)?\/?(?:article\d{4}\.doc)?\?u=[0-9a-z]{7}&o=[0-9a-z]{7}/$doc,frame,match-case
|
|
660
|
+
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{4,}\.[a-z]{2,11}\/(?:[0-9a-z]{6,8}\/)?\/?(?:article\d{4}\.doc)?\?o=[0-9a-z]{7}&u=[0-9a-z]{7}/$doc,frame,match-case
|
|
661
|
+
.live/web/?sid=t*~$doc
|
|
662
|
+
! push notification scam
|
|
663
|
+
/^https:\/\/(?:www\d\.)?[-a-z]{6,}\.(?:com|info|net|org)\/(?=[-_a-zA-Z]{0,42}\d)(?=[-_0-9a-z]{0,42}[A-Z])[-_0-9a-zA-Z]{43}\/\?cid=[-_0-9a-zA-Z]{10,36}(?:&qs\d=\S+)?&(?:s|pub)id=[-_0-9a-z{}]{1,32}(?:&s=0\.\d+)?(?:#\S+)?$/$doc,match-case,domain=com|info|net|org
|
|
664
|
+
/^https:\/\/(?:www\d\.)?[-a-z]{6,}\.(?:com|info|net|org)\/(?=[-_a-zA-Z]{0,42}\d)(?=[-_0-9a-z]{0,42}[A-Z])[-_0-9a-zA-Z]{43}\/\?(?:pub|s)id=[-_0-9a-z{}]{1,32}(?:&qs\d=\S+)?&cid=[-_0-9a-zA-Z]{10,36}(?:&s=0\.\d+)?(?:#\S+)?$/$doc,match-case,domain=com|info|net|org
|
|
665
|
+
||ogtrk.net^
|
|
666
|
+
||secureconv-dl.com^$all
|
|
667
|
+
||91.241.60.117^$all
|
|
668
|
+
||mfilecloud.com^$all
|
|
669
|
+
||xsharenode.com^$all
|
|
670
|
+
||gamesfuny.space^$all
|
|
671
|
+
||yuppdownload.com^$doc
|
|
672
|
+
||expert-top.com^$doc
|
|
673
|
+
||mega-share.pro^$doc
|
|
674
|
+
||soft-updt.com^$doc
|
|
675
|
+
||faslhd.com^$all
|
|
676
|
+
||official-expert.org^$doc
|
|
677
|
+
||file-uploud.site^$all
|
|
678
|
+
||linksoft.site^$all
|
|
679
|
+
||soft-file-free.com^$doc
|
|
680
|
+
||progtechguru.com^$doc
|
|
681
|
+
||progtechguru.org^$doc
|
|
682
|
+
||pcworlds.net^$doc
|
|
683
|
+
||portsoft2022.ru^$doc
|
|
684
|
+
||firstsoftapp.com^$doc
|
|
685
|
+
||expertstudiopro.com^$doc
|
|
686
|
+
||pcworlds.us^$doc
|
|
687
|
+
||gopcworlds.net^$doc
|
|
688
|
+
||link-ii.info^$all
|
|
689
|
+
||expertprosoft.com^$all
|
|
690
|
+
||thepcworld.net^$all
|
|
691
|
+
||lorealis.vip^$doc
|
|
692
|
+
||one-click.cc^$all
|
|
693
|
+
||descarga.pw^$doc
|
|
694
|
+
||top-cheats.com^$all
|
|
695
|
+
||thepcworlds.com^$doc
|
|
696
|
+
||extsoft.app^$all
|
|
697
|
+
||hifix.pro^$doc
|
|
698
|
+
||extra-soft.org^$doc
|
|
699
|
+
||self-games.com^$doc
|
|
700
|
+
||extra-software.com^$doc
|
|
701
|
+
||mega-gratis.com^$doc
|
|
702
|
+
||softextra.net^$doc
|
|
703
|
+
||pcworld-one.net^$doc
|
|
704
|
+
||pc-gratis.com^$doc
|
|
705
|
+
||progamerhack.com^$doc
|
|
706
|
+
||winterseyegaming.com^$doc
|
|
707
|
+
||drop-cloud.org^$all
|
|
708
|
+
||soft-lab.pw^$doc
|
|
709
|
+
||trumpcheat.com^$doc
|
|
710
|
+
||cheats.ink^$doc
|
|
711
|
+
||elitcorp.space^$doc
|
|
712
|
+
||www.youtube.com/@download-link/$doc
|
|
713
|
+
||www.youtube.com/@Download-lin/$doc
|
|
714
|
+
||www.youtube.com/@download_archive/$doc
|
|
715
|
+
||www.youtube.com/@download_here/$doc
|
|
716
|
+
||allsft.info^$doc
|
|
717
|
+
||allsft.pro^$doc
|
|
718
|
+
||cheat-world.site^$doc
|
|
719
|
+
||clc-link.me^$all
|
|
720
|
+
||soft-portal.me^$doc
|
|
721
|
+
||gamehacks.xyz^$doc
|
|
722
|
+
||pengwincheat.fun^$doc
|
|
723
|
+
||nicesoftware.site^$all
|
|
724
|
+
||upload.advgroup.ru/4Fb01xn1$all
|
|
725
|
+
||mediafire.com/folder/5fifwp6upg5et/$doc
|
|
726
|
+
||mediafire.com/folder/j7a69k9mmm7xl/$doc
|
|
727
|
+
||mediafire.com/folder/ibugwdrgkxppd/$doc
|
|
728
|
+
||tautarahack.fun^$doc
|
|
729
|
+
||hellhacks.fun^$doc
|
|
730
|
+
||tophacks.pro^$doc
|
|
731
|
+
||lavacheat.com^$doc
|
|
732
|
+
.systems/signup?ad_domain=$doc,popup
|
|
733
|
+
! fake software updaters /redirections
|
|
734
|
+
||1perpersqe1.com^$all
|
|
735
|
+
||atnpx.com^
|
|
736
|
+
||best-winplace.life^$all
|
|
737
|
+
||checkup08.biz^
|
|
738
|
+
||getvottak.com^
|
|
739
|
+
||illuminatelocks.com^
|
|
740
|
+
||mfroute.com^
|
|
741
|
+
||miserve-chanics.com^
|
|
742
|
+
||track-149uew.link^
|
|
743
|
+
||update-phone-today.com^
|
|
744
|
+
||webpushcloud.top^
|
|
745
|
+
||workerz1.com^
|
|
746
|
+
||xpayperinstx2.com^
|
|
747
|
+
||zoneforyourprize.life^
|
|
748
|
+
||zvideo-live.com^
|
|
749
|
+
/index.php?uid=*&code=ad^$doc
|
|
750
|
+
||koitushinterneinnehmen.s3.eu-central-1.amazonaws.com^$all
|
|
751
|
+
||my-hookup-clubs1.com^$all
|
|
752
|
+
||localsexfinderxxx4.com^$all
|
|
753
|
+
||sinder8.com^$all
|
|
754
|
+
||bigosext69.com^$all
|
|
755
|
+
||captcharesolving-universe.com^$all
|
|
756
|
+
! scam
|
|
757
|
+
||trfcbooost.com^$all
|
|
758
|
+
||turboadblocker.com^$all
|
|
759
|
+
||mysearchflow.com^$all
|
|
760
|
+
||youtuba.com^$all
|
|
761
|
+
||polyhymnia-mar.com^$all
|
|
762
|
+
! Typosquatting: redirects to scam sites
|
|
763
|
+
||bestbut.com^$all
|
|
764
|
+
||girhub.com^$all
|
|
765
|
+
||gmkail.com^$all
|
|
766
|
+
||goglle.com^$all
|
|
767
|
+
||linkefdin.com^
|
|
768
|
+
||twitterr.com^$all
|
|
769
|
+
||yautube.com^$all
|
|
770
|
+
||yourube.com^$all
|
|
771
|
+
||youtubee.com^$all
|
|
772
|
+
||youtunbe.com^$all
|
|
773
|
+
||youutube.com^$all
|
|
774
|
+
||youvetube.com^$all
|
|
775
|
+
! "looks like typo squatting"
|
|
776
|
+
||wanderlust.rocks^$all
|
|
777
|
+
||harmlessmessage.com^$all
|
|
778
|
+
||hushemail.net^$all
|
|
779
|
+
||hushmailservice.com^$all
|
|
780
|
+
||lavaboom.net^$all
|
|
781
|
+
||privacyharbor.net^$all
|
|
782
|
+
||privacyharbors.com^$all
|
|
783
|
+
||prontonmailpro.com^$all
|
|
784
|
+
||protonmails.com^$all
|
|
785
|
+
||protonmails.net^$all
|
|
786
|
+
||safemessagesystems.com^$all
|
|
787
|
+
||silencemail.com^$all
|
|
788
|
+
||tutamail.net^$all
|
|
789
|
+
||tutanoto.com^$all
|
|
790
|
+
||messagesafe.net^$all
|
|
791
|
+
||msgsafe.net^$all
|
|
792
|
+
||best4fuck.com^$all
|
|
793
|
+
||kuaizip.com^$all
|
|
794
|
+
! ||zhuangjizhuli.com^$all
|
|
795
|
+
! ||zhuangjizhuli.net^$all
|
|
796
|
+
||win.zjwhr.top^$all
|
|
797
|
+
||geekotg.com^$all
|
|
798
|
+
||xiaobaixitong.com^$all
|
|
799
|
+
||daque.cn^$all
|
|
800
|
+
||dabaicai.com^$all
|
|
801
|
+
||qqfzn.com^$all
|
|
802
|
+
||lubuntu.net^$doc
|
|
803
|
+
/^https:\/\/serch\d{2}\.biz\/\?p=/$doc,domain=biz
|
|
804
|
+
! ||driverfix.com^$doc
|
|
805
|
+
||gghacks.com^$all
|
|
806
|
+
||rewardsgiantusa.com^$doc
|
|
807
|
+
||promotionsonlineusa.com^$doc
|
|
808
|
+
||displayoptoffers.com^$doc
|
|
809
|
+
||sweepstakesalerts.com^$doc
|
|
810
|
+
||qualityhealth.com^$doc
|
|
811
|
+
||consumerproductsusa.com^$doc
|
|
812
|
+
||get-cracked.com^$all
|
|
813
|
+
||tinyurl.com/gp84uz2$doc
|
|
814
|
+
||mediafiire.com^$doc
|
|
815
|
+
||onlinepromotionsusa.com^$doc
|
|
816
|
+
||greenadblocker.com^$doc
|
|
817
|
+
||flash.cn^$all
|
|
818
|
+
||superdatenow3.com^$doc
|
|
819
|
+
||hentai-tube.me^$doc
|
|
820
|
+
||skyblockmods.com^$doc
|
|
821
|
+
||foxmods.xyz^$doc
|
|
822
|
+
! Phishing/Malware/Scams
|
|
823
|
+
||octopus-warriors.com^$all
|
|
824
|
+
||futuretesla.net^$all
|
|
825
|
+
||full-nitro.com^$all
|
|
826
|
+
! phishing /malicious
|
|
827
|
+
||gesas.it^$doc
|
|
828
|
+
||techinnsrl.com^$doc
|
|
829
|
+
||studiogiamberardino.it^$doc
|
|
830
|
+
||eniedu.com^$doc
|
|
831
|
+
||gamletaarnhuset.no^$doc
|
|
832
|
+
||possessedcrackinghart.com^$all
|
|
833
|
+
||adblock-pro-download.com^$all
|
|
834
|
+
||reepratic.com^$all
|
|
835
|
+
||5vcjzwb1tsnd82g.caflu87p1d.ru^$all
|
|
836
|
+
! phishing /scam /malware
|
|
837
|
+
||cs2-twitchs.com^$all
|
|
838
|
+
||dogehype.com^$all
|
|
839
|
+
||cosmicdrift.co^$all
|
|
840
|
+
||deltaproject.dev^$all
|
|
841
|
+
||rblx.land^$all
|
|
842
|
+
||csnegotiable.com^$all
|
|
843
|
+
||olympofreptiles.io^$all
|
|
844
|
+
||connect-csgo.com^$all
|
|
845
|
+
||events-csgo.com^$all
|
|
846
|
+
||nbryb.com^$all
|
|
847
|
+
||onemacusa.com^$all
|
|
848
|
+
||realnetnews.com^$all
|
|
849
|
+
||rogueleader.org^$all
|
|
850
|
+
||suggestive.com/deals/?cid=$doc
|
|
851
|
+
||discordap.$all
|
|
852
|
+
||discord*.gift^$all,domain=~discord.gift
|
|
853
|
+
||discord*.gifts^$all,domain=~discord.gifts
|
|
854
|
+
||discord-give.$all
|
|
855
|
+
||discord-nitro.$all
|
|
856
|
+
||discordgift.$all,domain=~discordgift.site
|
|
857
|
+
||dlscord*.$all
|
|
858
|
+
||dlscrod*.$all
|
|
859
|
+
||freediscordnitro.$all
|
|
860
|
+
||privatespace.click^$all
|
|
861
|
+
||ww-softs.com^$all
|
|
862
|
+
||updatemobilee.com^$all
|
|
863
|
+
||supreme-ad-blocker.info^$all
|
|
864
|
+
||buyadvupfor24.com^$all
|
|
865
|
+
||erdeallyighab.com^$all
|
|
866
|
+
||allprizesforme.com^$all
|
|
867
|
+
||tekhacks.net^$all
|
|
868
|
+
||freedownloadfiles.org^$all
|
|
869
|
+
||tw-goldenwinner-57.com^$doc
|
|
870
|
+
||fasterfiles.net^$all
|
|
871
|
+
||yunosurveys.com^$all
|
|
872
|
+
||a1475.com^$all
|
|
873
|
+
||ts-group.com^$all
|
|
874
|
+
||88btbtt.com^$all
|
|
875
|
+
||musmentportal.com^$all
|
|
876
|
+
! fake domain
|
|
877
|
+
||jinshanduba.org.cn^$all
|
|
878
|
+
||phpstat.cntcm.com.cn/phpstat/count/abceffgh/abceffgh.js^$script
|
|
879
|
+
||cdn.discordapp.com/attachments/916391647955279943/*^$all
|
|
880
|
+
||sideload.net^$doc
|
|
881
|
+
||stc.tools^$doc
|
|
882
|
+
||stcverify.com^$doc
|
|
883
|
+
||1980s.click^$doc
|
|
884
|
+
goharpc.com,pccrackbox.com,cracklabel.com,keystool.com,pcwarezbox.com,10crack.com,crackproductkey.com,profullversion.com,crackswall.com,crackpcsoft.net,proappcrack.com,crackwinz.com,genuineactivator.com,topcracked.com,fullcrackedpc.com,rootcracks.org,idmfullcrack.info,thecrackbox.com,idmpatched.com,autocracking.com,productkeyfree.org,patchcracks.com,cracksole.com,allsoftwarekeys.com,softwar2crack.com,procracks.net,productkeyforfree.com,bypassapp.com,zgamespc.com,newproductkey.com,serialkeysfree.org,wazusoft.com,getpcsofts.net,rootscrack.com,activators4windows.com,crackfury.com,torrentfilefree.com,9to5crack.com,greencracks.com,procrackhere.com,proproductkey.com,crack11.com,centerapps.net,freelicensekey.org,pcsoftz.net,freecrackdownload.com,f4file.com,serialkey360.com##[onclick*="open"]
|
|
885
|
+
serialkey89.com,installcracks.com,crackserialkey.co,maliksofts.com,crackpropc.com,ayeshapc.com,crackhomes.com,crackspro.co,crackknow.com,4howcrack.com,trycracksoftware.com,getprocrack.co,activationkeys.co,organiccrack.com,softwarance.com,procrackkey.co,download4mac.com,freeactivationkeys.org,explorecrack.com,okproductkey.com,downloadpc.net,up4pc.com,hitproversion.com,cracktube.net,abbaspc.net,crackdownload.org,crackdownload.me,corecrack.com,windowsactivator.info,keygenstore.com,procrackpc.co,getmacos.org,latestproductkey.co,shanpc.com,crackpckey.com,torrentfilefree.com,patchcracks.com,idmfullversion.com,wareskey.com,crackbell.com,newproductkey.com,osproductkey.com,serialkeysfree.org,autocracking.com,crackzoom.com,greencracks.com,profullversion.com,crackswall.com,rootcracks.org,licensekeys.org,softserialkey.com,free4pc.org,productkeys.org,crackedfine.com,idmcrackeys.com,crackedhere.com,licensekeysfree.org,trycracksetup.com,crackedsoft.org,assadpc.com,thecrackbox.com,crackproductkey.com,cracklabel.com,keystool.com,crackedpcs.com,cracksmad.com,licensekeyup.com,chcracked.com,finalcracked.com,activatorpros.com,crackedmod.com,whitecracked.com,cracksoon.com,boxcracked.com,activationkey.org,serialkeypatch.org,crackedsoftpc.com,proapkcrack.com,softscracked.com,freeappstorepc.com,reallpccrack.com,crackfullkey.net,hmzapc.com,zcracked.com,usecracked.com,crackedversion.com,aryancrack.com,piratespc.net,reallcrack.com,fultech.org,crackpro.org,cracksray.com,pcwarezbox.com,cracksmat.com,crackxpoint.com,startcrack.co,crackbros.com,pcfullversion.com,sjcrack.com##center > [class*="buttonPress-"]
|
|
886
|
+
free4pc.org,warezcrack.net,freeprosoftz.com,vcracks.com,crackthere.com,keygenfile.net,scracked.com,cyberspc.com,softzcrack.com,crackintopc.com,zslicensekey.com,procrackpc.com,crackshere.com,crackdj.com,cracktopc.com,serialsofts.com,prosoftlink.com,zscracked.com,crackvip.com,windowcrack.com,softsnew.com,licensecrack.net,vstpatch.net,newcrack.info,topkeygen.com,vsthomes.com,vstserial.com,procrackerz.com,pcfullcrack.org,keygenpc.com,bicfic.com,ikcrack.com,downloadcracker.com,karancrack.com,piratesfile.com,activatorwin.com,starcrack.net,crackproduct.com,dgkcrack.com,crackglobal.com,crackcan.com,keygendownloads.com,crackpatched.com,windowsactivators.org,serialsoft.org,crackit.org,productscrack.com,crackurl.info,crackroot.net,crackmak.com,seeratpc.com,crackmix.com,piratepc.me,activators4windows.com,letcracks.com,latestcracked.com,proproductkey.com,fullversionforever.com,vlsoft.net,topcracked.com,goharpc.com,crackeado.net,freecrackdownload.com,assadpc.com,fileoye.com,f4file.com,crackpcsoft.net,crackwinz.com,excrack.com,mahcrack.com,get4pcs.com,keygenwin.com,mycrackfree.com,crackfullpro.com,crackkey4u.com,fileserialkey.com,cracksdat.com,crackgrid.com,licensekeysfree.com,crackkeymac.com,freecrack4u.com,getintomac.net,protocrack.com,crackreview.com,activatorskey.com,kuyhaa.cc,cracktel.com,up4crack.com,cracksmat.com,crackbros.com,pcfullversion.com,crackcut.com##div[class^="code-block code-block-"]
|
|
887
|
+
crackkits.com,rootcracks.co,crackwatch.org,crackfix.net,origincrack.com,procrackerz.com,crackhub.org,crackrules.com,zeemalcrack.com,haxmac.cc,cracka2zsoft.com,clevercracks.com,crackpropc.com,crackspro.co,crackknow.com,onhax.in,haxpc.net##.getox
|
|
888
|
+
alicracks.com,win-crack.com,productkeyfree.org,productkeyforfree.com,wazusoft.com,piratesfile.com,kalicrack.com,sadeempc.com,letcracks.com,topkeygen.com,thepiratecity.co##center > a
|
|
889
|
+
cracksoftwaress.net##div[style="float: none; margin:10px 0 10px 0; text-align:center;"]
|
|
890
|
+
haxnode.net##[id^="haxno-"]
|
|
891
|
+
||xforce-cracks.com^$doc
|
|
892
|
+
||fileisready.com^$doc
|
|
893
|
+
/?act=*&epcVIP=$doc
|
|
894
|
+
||yip.su/latestfiles|$all
|
|
895
|
+
||cli.re/premiumfiles|$all
|
|
896
|
+
||coronasfapps.net^$doc
|
|
897
|
+
||sustac.com^$all
|
|
898
|
+
||theannoyingsite.com^$all
|
|
899
|
+
.top/vpnupdate/*/index.html$doc
|
|
900
|
+
||smartklick.biz^$all
|
|
901
|
+
||zoosk.online^$all
|
|
902
|
+
||fulptube.org^$all
|
|
903
|
+
||i7ece0xrg4nx.com^$all
|
|
904
|
+
*/bouncy.php?*&inPopUp=$all
|
|
905
|
+
||1redirc.com^$all
|
|
906
|
+
||nutrientassumptionclaims.com^$all
|
|
907
|
+
||onpharmvermen.com^$doc
|
|
908
|
+
||sale24-pills.com^$doc
|
|
909
|
+
||junk-cleaner.org^$all
|
|
910
|
+
||hdvideosnet.com^
|
|
911
|
+
||shaktilar.xyz^$all
|
|
912
|
+
||fullcrack.vn^$all
|
|
913
|
+
/rtbfeed.php?$image,3p
|
|
914
|
+
||phone-analyzer.com^$doc
|
|
915
|
+
!#if !env_mobile
|
|
916
|
+
/^http:\/\/[a-z]{5}\.[a-z]{5}\.com\/[a-z]{10}\.apk$/$doc,match-case,domain=com
|
|
917
|
+
!#endif
|
|
918
|
+
||fetishpartner.com^$all
|
|
919
|
+
||facevideosc.com^$all
|
|
920
|
+
/?c=propeller&lpid=$all
|
|
921
|
+
||geoflix.me^$all
|
|
922
|
+
||skymods.net^$all
|
|
923
|
+
||hypixelstorexyz.pages.dev^$all
|
|
924
|
+
! torrdroidforpc. com
|
|
925
|
+
||landkemoty.click^$all
|
|
926
|
+
||slugmefilehos.xyz^$all
|
|
927
|
+
||tinyurl.com/setup-full-version$doc
|
|
928
|
+
torrdroidforpc.com##[href^="http://slugmefilehos.xyz/"]
|
|
929
|
+
||haxsoft.com^$all
|
|
930
|
+
||sxfyjygs.com^$all
|
|
931
|
+
||zenlytrade.com^$all
|
|
932
|
+
||rubika.ir^$all,domain=~web.rubika.ir|~m.rubika.ir
|
|
933
|
+
||letrigaze.live^$all
|
|
934
|
+
||buyqpfire.xyz^$all
|
|
935
|
+
||luckypapa.top^$all
|
|
936
|
+
||nbsfmradio.com^$all
|
|
937
|
+
||ngazi.co.tz^$all
|
|
938
|
+
||video-watch1.com^$all
|
|
939
|
+
||musicinmysoul.biz^$all
|
|
940
|
+
||choseoffhandsight.com^$all
|
|
941
|
+
||metamasku.cc^$all
|
|
942
|
+
||downloadpro.online^$all
|
|
943
|
+
||install1nstall1.com^$all
|
|
944
|
+
||factor1right.com^$all
|
|
945
|
+
||speedsoft-one.com^$all
|
|
946
|
+
||whitefuulsoft.com^$all
|
|
947
|
+
||softredtech.com^$all
|
|
948
|
+
||downloadfreexx1.com^$all
|
|
949
|
+
||flymylife.info^$all
|
|
950
|
+
||kochava.com^
|
|
951
|
+
||neptunclicks.com^
|
|
952
|
+
||oolomos.com^$all
|
|
953
|
+
||arakusus.com^$all
|
|
954
|
+
||imgfil.com^$all
|
|
955
|
+
||urlcod.com^$all
|
|
956
|
+
||tiurll.com^$all
|
|
957
|
+
||urlca.com^$all
|
|
958
|
+
||gowtos.com^$all
|
|
959
|
+
||lomogd.com^$all
|
|
960
|
+
||nosnou.com^$all
|
|
961
|
+
||munkop.com^$all
|
|
962
|
+
||voutew.com^$all
|
|
963
|
+
||abukss.com^$all
|
|
964
|
+
||amonro.com^$all
|
|
965
|
+
||kiknu.com^$all
|
|
966
|
+
||konmm.com^$all
|
|
967
|
+
||bibtu.com^$all
|
|
968
|
+
||xiuty.com^$all
|
|
969
|
+
||pejik.com^$all
|
|
970
|
+
||oyndr.com^$all
|
|
971
|
+
||lpoms.com^$all
|
|
972
|
+
||psfmi.com^$all
|
|
973
|
+
||gftet.com^$all
|
|
974
|
+
||fwern.com^$all
|
|
975
|
+
||ytomb.com^$all
|
|
976
|
+
||gghut.com^$all
|
|
977
|
+
||nkmoo.com^$all
|
|
978
|
+
||nnjou.com^$all
|
|
979
|
+
||foilf.com^$all
|
|
980
|
+
||vlyyg.com^$all
|
|
981
|
+
||pimlm.com^$all
|
|
982
|
+
||mciun.com^$all
|
|
983
|
+
||sanff.com^$all
|
|
984
|
+
||gghhe.com^$all
|
|
985
|
+
||ooppnm.com^$all
|
|
986
|
+
/axad/?lpkey=$doc
|
|
987
|
+
||vlcdownloads.com^$all
|
|
988
|
+
||borntiecalm.live^$all
|
|
989
|
+
&t=main9|$doc,domain=live
|
|
990
|
+
&t=main9ljs|$doc,domain=live
|
|
991
|
+
&t=main9expsess|$doc,domain=live
|
|
992
|
+
||hypixei.com^$all
|
|
993
|
+
||msverify.dev^$all
|
|
994
|
+
||microauth.ru^$all
|
|
995
|
+
! Fake Steam website
|
|
996
|
+
||99box.com^$all
|
|
997
|
+
||block-ads-now.com^$all
|
|
998
|
+
||ezadblocker.com^$all
|
|
999
|
+
||watchadsfree.com^$all
|
|
1000
|
+
||discordoauthverification.onrender.com^$all
|
|
1001
|
+
||barlear.ru^$all
|
|
1002
|
+
||mc-hypixel.store^$all
|
|
1003
|
+
||kaminarisubs.net^$all
|
|
1004
|
+
||galeden.cn^$all
|
|
1005
|
+
! Phishing gathered from Twitter
|
|
1006
|
+
||3utilities.com^$all
|
|
1007
|
+
||engagingtheheart.com^$all
|
|
1008
|
+
||cpuz.beerworldstore.com^$all
|
|
1009
|
+
||bafybeidzp4sgidm4rvsc32fofkhbz5bdotbekov4mnwzejakvnzhhohysa.ipfs.dweb.link^$all
|
|
1010
|
+
||cpu-id.top^$all
|
|
1011
|
+
.top/index-install.html|$doc
|
|
1012
|
+
||r39-g003-h8ig0w-u8f0we8-fgw0rgf-0we880e-rhgth.obs.ap-southeast-2.myhuaweicloud.com^$all
|
|
1013
|
+
||bafybeiexjty7qmufu5jvbyln5ce5mue2lqw2htafc3api4wwsefxet5k54.ipfs.dweb.link^$all
|
|
1014
|
+
||jlydxj.com^$all
|
|
1015
|
+
||chargerlogistics-dot-exceldocsverification.uk.r.appspot.com^$all
|
|
1016
|
+
||bizerba-dot-azure-projectfiles.uk.r.appspot.com^$all
|
|
1017
|
+
||aidla64.com^$all
|
|
1018
|
+
||uahora.com^$all
|
|
1019
|
+
||cpuild.app^$all
|
|
1020
|
+
||alda64.com^$all
|
|
1021
|
+
||aida64ex.com^$all
|
|
1022
|
+
||metamaskw.cc^$all
|
|
1023
|
+
||taylormadesells.com^$all
|
|
1024
|
+
||withaaglad.top^$all
|
|
1025
|
+
||aajdrp.com^$all
|
|
1026
|
+
||italianlottery.com^$all
|
|
1027
|
+
||metamasek.cc^$all
|
|
1028
|
+
||theexpressiveteacher.com^$all
|
|
1029
|
+
||trashtotreasurecreativerecycling.com^$all
|
|
1030
|
+
||jacksoncookphotography.com^$all
|
|
1031
|
+
||michaelinachrysalis.com^$all
|
|
1032
|
+
||ipfs.io/ipfs/QmeBkobLEam5YyjG5Yq5HoaXe9J1AZpia3urjNeSXfhjMj|$doc
|
|
1033
|
+
||kucoinhi.com^$all
|
|
1034
|
+
||qhyhw.com^$all
|
|
1035
|
+
||kangawabeank.com^$all
|
|
1036
|
+
||007itshop.com^$all
|
|
1037
|
+
||megancroft.bond^$all
|
|
1038
|
+
||tonghongad.com^$all
|
|
1039
|
+
||thndg.com^$all
|
|
1040
|
+
||e-tax-nta.web.app^$all
|
|
1041
|
+
||ogdwild.bond^$all
|
|
1042
|
+
||haouwebb.bond^$all
|
|
1043
|
+
||sutarnbbe.bond^$all
|
|
1044
|
+
||dinglike.com^$all
|
|
1045
|
+
||stgami-o.top^$all
|
|
1046
|
+
||ib-aieonobanck-co-jp.top^$all
|
|
1047
|
+
||blisterlngdate.com^$all
|
|
1048
|
+
||fapello.xyz^$all
|
|
1049
|
+
||jsbetzh.com^$all
|
|
1050
|
+
||sersdlos.cyou^$all
|
|
1051
|
+
||pf0755.cn^$all
|
|
1052
|
+
||baoding66.top^$all
|
|
1053
|
+
||hohshops.com^$all
|
|
1054
|
+
||yanrefael.com^$all
|
|
1055
|
+
||amzpma.com^$all
|
|
1056
|
+
||hjxvcyu.com^$all
|
|
1057
|
+
||bojsror.space^$all
|
|
1058
|
+
||restgzxdg.top^$all
|
|
1059
|
+
||hehekakao.com^$all
|
|
1060
|
+
||bavaria-cup.ru^$all
|
|
1061
|
+
||patriothomestore.com^$all
|
|
1062
|
+
||ameixosszpxpass.top^$all
|
|
1063
|
+
||buyshflat.life^$all
|
|
1064
|
+
||jdongktx.com^$all
|
|
1065
|
+
||techguykev.com^$all
|
|
1066
|
+
||anzenns.com^$all
|
|
1067
|
+
||paekatcerd.com^$all
|
|
1068
|
+
||easy-vipmarkets.com^$all
|
|
1069
|
+
||pppfgz.wiki^$all
|
|
1070
|
+
||luckypapa.xyz^$doc
|
|
1071
|
+
||reviewspay.cc^$all
|
|
1072
|
+
||jsdushid.com^$all
|
|
1073
|
+
||manage-fpw-my-sakura-fpw-jp-fpw.impulsion.mu^$all
|
|
1074
|
+
||honda-law-office.jp/wp-includes/70038/Earthcorejp/|$doc
|
|
1075
|
+
||metamasktoken.cc^$all
|
|
1076
|
+
||cutxkfair.live^$all
|
|
1077
|
+
||itsaol.com^$all
|
|
1078
|
+
||guiyangouya.com^$all
|
|
1079
|
+
||fenglaila.com^$all
|
|
1080
|
+
||hbjingyao.com^$all
|
|
1081
|
+
||tokyu-dept.site^$all
|
|
1082
|
+
||fairymeeting.com^$all
|
|
1083
|
+
||qhigh.com^$all
|
|
1084
|
+
||yoinst.com^$doc
|
|
1085
|
+
||shindaan.com^$doc
|
|
1086
|
+
||almostmy.com^$all
|
|
1087
|
+
||mkwlejfnaklglkasdjg.com^$all
|
|
1088
|
+
||capitalfa.jp^$all
|
|
1089
|
+
||caponefx.com^$all
|
|
1090
|
+
||ifavoritebuy.com^$all
|
|
1091
|
+
||jpzone.vip^$all
|
|
1092
|
+
||tripmall.online^$all
|
|
1093
|
+
||aeonhelp.org^$all
|
|
1094
|
+
||appslipe.com^$all
|
|
1095
|
+
||tokyobag.shop^$all
|
|
1096
|
+
||zozo-jp.shop^$all
|
|
1097
|
+
||erdfkhxrnanm.top^$all
|
|
1098
|
+
||tfehmsag.xyz^$all
|
|
1099
|
+
||authority-uspser.top^$all
|
|
1100
|
+
||www.uspertest.vip^$all
|
|
1101
|
+
||benneteb18.shop^$all
|
|
1102
|
+
||bergeord20.shop^$all
|
|
1103
|
+
||geraidce16.shop^$all
|
|
1104
|
+
||maxwecor19.shop^$all
|
|
1105
|
+
||natymano17.shop^$all
|
|
1106
|
+
||roryeico21.shop^$all
|
|
1107
|
+
||xqfefdkey.xyz^$all
|
|
1108
|
+
||corre-os.top^$all
|
|
1109
|
+
||aeonasco.com^$all
|
|
1110
|
+
||pocket-888.com^$all
|
|
1111
|
+
! scam sites
|
|
1112
|
+
||adblock-one-protection.com^$all
|
|
1113
|
+
||browser-updating.com^$all
|
|
1114
|
+
||webuzz.me^$doc
|
|
1115
|
+
||crosmall.homes^$all
|
|
1116
|
+
||coup-ling.net^$all
|
|
1117
|
+
||coup-ling-dm.net^$all
|
|
1118
|
+
||pulan.site^$all
|
|
1119
|
+
||thostco.club^$all
|
|
1120
|
+
||jpmalls.xyz^$all
|
|
1121
|
+
||gokinjolove.jp^$all
|
|
1122
|
+
||gokinjolove.net^$all
|
|
1123
|
+
||misstt.top^$all
|
|
1124
|
+
||wonsy.top^$all
|
|
1125
|
+
||hornygirlsinapp.com^$all
|
|
1126
|
+
||id001.jp^$all
|
|
1127
|
+
||xbav.one^$all
|
|
1128
|
+
||ligmono.top^$all
|
|
1129
|
+
||10un.jp^$doc
|
|
1130
|
+
||22dssklove-love.com^$doc
|
|
1131
|
+
||3tuhabe.info^$doc
|
|
1132
|
+
||404joyful.com^$doc
|
|
1133
|
+
||4256-on.biz^$doc
|
|
1134
|
+
||5dgja.com^$doc
|
|
1135
|
+
||6aqr9j.com^$doc
|
|
1136
|
+
||8senjya.jp^$doc
|
|
1137
|
+
||a-divination.com^$doc
|
|
1138
|
+
||ad7mylo.com^$doc
|
|
1139
|
+
||advice-obtrusive.com^$doc
|
|
1140
|
+
||after-pop-abc.com^$doc
|
|
1141
|
+
||aiai-talk.com^$doc
|
|
1142
|
+
||aiaitalk.com^$doc
|
|
1143
|
+
||alicekdsod.com^$doc
|
|
1144
|
+
||amour.bliss-trance.com^$doc
|
|
1145
|
+
||amusementpalacegonow.com^$doc
|
|
1146
|
+
||any2st777fhy.com^$doc
|
|
1147
|
+
||aol-park.jp^$doc
|
|
1148
|
+
||applaud-acclaim.com^$doc
|
|
1149
|
+
||aqmessage.jp^$doc
|
|
1150
|
+
||armed-postulation.com^$doc
|
|
1151
|
+
||asetpun.com^$doc
|
|
1152
|
+
||astraeus-star.site^$doc
|
|
1153
|
+
||best-chat.net^$doc
|
|
1154
|
+
||best-friendd.net^$doc
|
|
1155
|
+
||best-friendd2022.net^$doc
|
|
1156
|
+
||bestxchat.net^$doc
|
|
1157
|
+
||bluew-web.com^$doc
|
|
1158
|
+
||cabinet-office-go.com^$doc
|
|
1159
|
+
||can-pq-dee.com^$doc
|
|
1160
|
+
||car-na.jp^$doc
|
|
1161
|
+
||cbcdnkyyxubdsrmg.com^$doc
|
|
1162
|
+
||cdypsqghdgrw.com^$doc
|
|
1163
|
+
||ce-ent.biz^$doc
|
|
1164
|
+
||ce-free.biz^$doc
|
|
1165
|
+
||ces-ent.biz^$doc
|
|
1166
|
+
||ces-free.biz^$doc
|
|
1167
|
+
||ch3l.net^$doc
|
|
1168
|
+
||chl3.net^$doc
|
|
1169
|
+
||clubfukugyou.work^$doc
|
|
1170
|
+
||cosmos01.com^$doc
|
|
1171
|
+
||cple.jp^$doc
|
|
1172
|
+
||date-app.net^$doc
|
|
1173
|
+
||days-neighborhood.com^$doc
|
|
1174
|
+
||decided-decision.com^$doc
|
|
1175
|
+
||determinatioon.jp^$doc
|
|
1176
|
+
||dev.san47itu54szkk.jp^$doc
|
|
1177
|
+
||di-ana.jp^$doc
|
|
1178
|
+
||difficultba2cjeh.jp^$doc
|
|
1179
|
+
||dosukoudo.net^$doc
|
|
1180
|
+
||dot-acc.xyz^$doc
|
|
1181
|
+
||drct-match.com^$doc
|
|
1182
|
+
||drct-match.net^$doc
|
|
1183
|
+
||dydynight.org^$doc
|
|
1184
|
+
||eag1eag1e.com^$doc
|
|
1185
|
+
||easternuifbs0y1.jp^$doc
|
|
1186
|
+
||elegant-erection.com^$doc
|
|
1187
|
+
||en-kakuri.biz^$doc
|
|
1188
|
+
||en-mu-su-bi.com^$doc
|
|
1189
|
+
||entertainment-undamped.net^$doc
|
|
1190
|
+
||epel-felmier.com^$doc
|
|
1191
|
+
||everyinfox2023.com^$doc
|
|
1192
|
+
||eyes-luv-u.com^$doc
|
|
1193
|
+
||f2f-free.biz^$doc
|
|
1194
|
+
||fallenw8bi.jp^$doc
|
|
1195
|
+
||fapp.work^$doc
|
|
1196
|
+
||fl-0wer685hjdp300.com^$doc
|
|
1197
|
+
||fle652.net^$doc
|
|
1198
|
+
||flk41.com^$doc
|
|
1199
|
+
||followingj2f8n.jp^$doc
|
|
1200
|
+
||formatch.co.jp^$doc
|
|
1201
|
+
||fortune-fate.jp^$doc
|
|
1202
|
+
||fortune-koun.jp^$doc
|
|
1203
|
+
||fortune-luna.com^$doc
|
|
1204
|
+
||friendxroom.com^$doc
|
|
1205
|
+
||ft-sou.com^$doc
|
|
1206
|
+
||fukumaneki-888.com^$doc
|
|
1207
|
+
||fukumaneki2211.com^$doc
|
|
1208
|
+
||g-a-y.jp^$doc
|
|
1209
|
+
||g6-gonight.org^$doc
|
|
1210
|
+
||gabfbnaqodnvfafnj.com^$doc
|
|
1211
|
+
||gandestin0.jp^$doc
|
|
1212
|
+
||girls.a-makeup.com^$doc
|
|
1213
|
+
||gm-ent.biz^$doc
|
|
1214
|
+
||gm-free.biz^$doc
|
|
1215
|
+
||gokusenn.jp^$doc
|
|
1216
|
+
||goldenluck.jp^$doc
|
|
1217
|
+
||happy468.net^$doc
|
|
1218
|
+
||happymethod55.com^$doc
|
|
1219
|
+
||hi-a-so-bi.net^$doc
|
|
1220
|
+
||himatalk77.net^$doc
|
|
1221
|
+
||himichat999.net^$doc
|
|
1222
|
+
||home4ugoog10you.com^$doc
|
|
1223
|
+
||homeseventen.com^$doc
|
|
1224
|
+
||hope-for-shiningday.com^$doc
|
|
1225
|
+
||hori-hori.xyz^$doc
|
|
1226
|
+
||hp-dy.net^$doc
|
|
1227
|
+
||hphp-dy.net^$doc
|
|
1228
|
+
||i.redi-ana.jp^$doc
|
|
1229
|
+
||i2019.jp^$doc
|
|
1230
|
+
||in.other-geronica.com^$doc
|
|
1231
|
+
||indiscerptible-provisionally.jp^$doc
|
|
1232
|
+
||infoemphasiseleventh.com^$doc
|
|
1233
|
+
||infooperationsqueeze.com^$doc
|
|
1234
|
+
||infosmellleather.com^$doc
|
|
1235
|
+
||indi-ana.jp^$doc
|
|
1236
|
+
||ir0d0ri.jp^$doc
|
|
1237
|
+
||iri195.net^$doc
|
|
1238
|
+
||irie3.net^$doc
|
|
1239
|
+
||iuckgzcbceycgjs.com^$doc
|
|
1240
|
+
||ivy2241u.jp^$doc
|
|
1241
|
+
||jamjamjam.biz^$doc
|
|
1242
|
+
||job0w4zjnk.jp^$doc
|
|
1243
|
+
||k-colorful.jp^$doc
|
|
1244
|
+
||k-smilegallery.com^$doc
|
|
1245
|
+
||k0fu9.jp^$doc
|
|
1246
|
+
||k1wa.jp^$doc
|
|
1247
|
+
||kaiun-com.com^$doc
|
|
1248
|
+
||kaiun-park.jp^$doc
|
|
1249
|
+
||keep.secret-ace.com^$doc
|
|
1250
|
+
||key8qt3x.jp^$doc
|
|
1251
|
+
||kin-hakobune777.com^$doc
|
|
1252
|
+
||koifull.jp^$doc
|
|
1253
|
+
||koiroom.net^$doc
|
|
1254
|
+
||koiroomnotice.net^$doc
|
|
1255
|
+
||kouhad0.jp^$doc
|
|
1256
|
+
||koun-yogen.com^$doc
|
|
1257
|
+
||l-one-one.com^$doc
|
|
1258
|
+
||l-thr-thr.com^$doc
|
|
1259
|
+
||l-two-two.com^$doc
|
|
1260
|
+
||l0vekatsu.com^$doc
|
|
1261
|
+
||largeagw5fky.jp^$doc
|
|
1262
|
+
||lightn5.com^$doc
|
|
1263
|
+
||lin-link.net^$doc
|
|
1264
|
+
||line-line-biz.com^$doc
|
|
1265
|
+
||link-service.net^$doc
|
|
1266
|
+
||linkage-linkage.com^$doc
|
|
1267
|
+
||log.xi-cascade.com^$doc
|
|
1268
|
+
||lonely9ec8.jp^$doc
|
|
1269
|
+
||love-fit.jp^$doc
|
|
1270
|
+
||love-letter-dm.com^$doc
|
|
1271
|
+
||love-letter.info^$doc
|
|
1272
|
+
||love.sweet199.com^$doc
|
|
1273
|
+
||loveaholics.com^$doc
|
|
1274
|
+
||lovemelo.jp^$doc
|
|
1275
|
+
||lover-stream.com^$doc
|
|
1276
|
+
||luuce.jp^$doc
|
|
1277
|
+
||lzogdlorkfssui.net^$doc
|
|
1278
|
+
||machi-match.info^$doc
|
|
1279
|
+
||madnna.jp^$doc
|
|
1280
|
+
||madnna.net^$doc
|
|
1281
|
+
||mangogo.jp^$doc
|
|
1282
|
+
||mangogo.work^$doc
|
|
1283
|
+
||married-court.com^$doc
|
|
1284
|
+
||match-mate.jp^$doc
|
|
1285
|
+
||match-mate.net^$doc
|
|
1286
|
+
||matimati.site^$doc
|
|
1287
|
+
||maytail.jp^$doc
|
|
1288
|
+
||meetingc5owe.jp^$doc
|
|
1289
|
+
||meguri-eye.net^$doc
|
|
1290
|
+
||meguri-y.net^$doc
|
|
1291
|
+
||meltiness.jp^$doc
|
|
1292
|
+
||message117.jp^$doc
|
|
1293
|
+
||mith-ril.net^$doc
|
|
1294
|
+
||mobaapo.net^$doc
|
|
1295
|
+
||moody-night.net^$doc
|
|
1296
|
+
||moogle-set.space^$doc
|
|
1297
|
+
||moogle-set.website^$doc
|
|
1298
|
+
||moonsupermoon.moonmoonsunmoon.com^$doc
|
|
1299
|
+
||muhamed-online.com^$doc
|
|
1300
|
+
||my7love.xyz^$doc
|
|
1301
|
+
||mystic-wonder.com^$doc
|
|
1302
|
+
||naja59jg.com^$doc
|
|
1303
|
+
||navi-match.net^$doc
|
|
1304
|
+
||near-s.com^$doc
|
|
1305
|
+
||nearing.jp^$doc
|
|
1306
|
+
||neverthelessadvertising.com^$doc
|
|
1307
|
+
||new.hpk0fu9.jp^$doc
|
|
1308
|
+
||newencounter.pw^$doc
|
|
1309
|
+
||nexttvuo1z.jp^$doc
|
|
1310
|
+
||nova.great-chat.net^$doc
|
|
1311
|
+
||ntt4p6tgc.com^$doc
|
|
1312
|
+
||nuclear5ugsbz3p.jp^$doc
|
|
1313
|
+
||nydlaepytwuekwhfyvivsf.com^$doc
|
|
1314
|
+
||on-glamour.xyz^$doc
|
|
1315
|
+
||one-chan-love.love^$doc
|
|
1316
|
+
||one-match01.com^$doc
|
|
1317
|
+
||onega.jp^$doc
|
|
1318
|
+
||onegaga.jp^$doc
|
|
1319
|
+
||opposite8cgp14y6.jp^$doc
|
|
1320
|
+
||oprirgreifeuprdlojeocg.com^$doc
|
|
1321
|
+
||originatepour.com^$doc
|
|
1322
|
+
||osubstancenasubstitute.com^$doc
|
|
1323
|
+
||otona-nona.biz^$doc
|
|
1324
|
+
||otonanona.jp^$doc
|
|
1325
|
+
||otonatime.net^$doc
|
|
1326
|
+
||oyasu-mi.tokyo^$doc
|
|
1327
|
+
||p2p-ent.biz^$doc
|
|
1328
|
+
||paesbeaqerdrsheuboapyh.com^$doc
|
|
1329
|
+
||pair-online.jp^$doc
|
|
1330
|
+
||piasukai.xyz^$doc
|
|
1331
|
+
||pinkredwhitereef.greenreef.net^$doc
|
|
1332
|
+
||plati-num.com^$doc
|
|
1333
|
+
||pockpocket.com^$doc
|
|
1334
|
+
||poorup2zo.jp^$doc
|
|
1335
|
+
||pr0m.site^$doc
|
|
1336
|
+
||privatelife.jp^$doc
|
|
1337
|
+
||psg.make9-salon.com^$doc
|
|
1338
|
+
||purpleiyvf.com^$doc
|
|
1339
|
+
||r30address.com^$doc
|
|
1340
|
+
||r30deai.com^$doc
|
|
1341
|
+
||reddishpurple.com^$doc
|
|
1342
|
+
||reverita-t.jp^$doc
|
|
1343
|
+
||rhsrthrtjhe.com^$doc
|
|
1344
|
+
||ripiai.com^$doc
|
|
1345
|
+
||romancetime.jp^$doc
|
|
1346
|
+
||romancetrain.jp^$doc
|
|
1347
|
+
||royalclass-dm.com^$doc
|
|
1348
|
+
||royalclass.info^$doc
|
|
1349
|
+
||s4fk.destin0.jp^$doc
|
|
1350
|
+
||salon1999.net^$doc
|
|
1351
|
+
||salonoshirase.net^$doc
|
|
1352
|
+
||sen-no-y-t.com^$doc
|
|
1353
|
+
||shells.pairapple.net^$doc
|
|
1354
|
+
||sickfwk9.jp^$doc
|
|
1355
|
+
||skpt9s.jp^$doc
|
|
1356
|
+
||slow-piercer.com^$doc
|
|
1357
|
+
||sns-pair.net^$doc
|
|
1358
|
+
||soul-ft.com^$doc
|
|
1359
|
+
||southern0olgwc.jp^$doc
|
|
1360
|
+
||space-high.com^$doc
|
|
1361
|
+
||spirilp3000.com^$doc
|
|
1362
|
+
||spirituallounge-3000.com^$doc
|
|
1363
|
+
||spkouhad0.jp^$doc
|
|
1364
|
+
||ssg.qui261rd22.jp^$doc
|
|
1365
|
+
||sugarboxxx.net^$doc
|
|
1366
|
+
||sugulove.com^$doc
|
|
1367
|
+
||suite0-free0.com^$doc
|
|
1368
|
+
||sun.kgi5fgwpp8.com^$doc
|
|
1369
|
+
||supervisionwyorf4.jp^$doc
|
|
1370
|
+
||sweetmemo.net^$doc
|
|
1371
|
+
||sweetmemoryy.com^$doc
|
|
1372
|
+
||t1a.jp^$doc
|
|
1373
|
+
||tadaapo123.com^$doc
|
|
1374
|
+
||tadaapomail.com^$doc
|
|
1375
|
+
||tadamatch.com^$doc
|
|
1376
|
+
||tenluuce.jp^$doc
|
|
1377
|
+
||terinron.com^$doc
|
|
1378
|
+
||thanks-dot.com^$doc
|
|
1379
|
+
||trgxchjiskfsxee.com^$doc
|
|
1380
|
+
||tsumalabo.jp^$doc
|
|
1381
|
+
||tttt.star095.com^$doc
|
|
1382
|
+
||tumalabo.net^$doc
|
|
1383
|
+
||tyotto.jp^$doc
|
|
1384
|
+
||tyotyo.biz^$doc
|
|
1385
|
+
||u3ig.com^$doc
|
|
1386
|
+
||undetermined-whitish.com^$doc
|
|
1387
|
+
||uniquemjbd9fu.jp^$doc
|
|
1388
|
+
||urbanv8dg.jp^$doc
|
|
1389
|
+
||ura-nai-best.com^$doc
|
|
1390
|
+
||uu.universsee.com^$doc
|
|
1391
|
+
||vanilla-japan.net^$doc
|
|
1392
|
+
||verita-t.jp^$doc
|
|
1393
|
+
||very.bes-tplay.com^$doc
|
|
1394
|
+
||vip.trust-site.net^$doc
|
|
1395
|
+
||we.success-vichada.com^$doc
|
|
1396
|
+
||with.2-on-line.com^$doc
|
|
1397
|
+
||y3tkz53rz.com^$doc
|
|
1398
|
+
||yu0287tk.com^$doc
|
|
1399
|
+
||yumajhsbsff.com^$doc
|
|
1400
|
+
||zmrbkwtmbvzmznv.com^$doc
|
|
1401
|
+
||ztkjjhkzaidpanu.com^$doc
|
|
1402
|
+
||2dfjwa.com^$doc
|
|
1403
|
+
||8ngpmu.com^$doc
|
|
1404
|
+
||addicted-to-u.com^$doc
|
|
1405
|
+
||af6frm.com^$doc
|
|
1406
|
+
||apple22cd.com^$doc
|
|
1407
|
+
||back-rich.com^$doc
|
|
1408
|
+
||cherry.mermaid77c.com^$doc
|
|
1409
|
+
||dgduwb.com^$doc
|
|
1410
|
+
||eeu5dt.com^$doc
|
|
1411
|
+
||jivo-ce.jp^$doc
|
|
1412
|
+
||md47ez.com^$doc
|
|
1413
|
+
||online2022-shopping.com^$doc
|
|
1414
|
+
||ptn9tf.com^$doc
|
|
1415
|
+
||uxzdx5.com^$doc
|
|
1416
|
+
||whimsicalrain.com^$doc
|
|
1417
|
+
||6464f046fd436e46h.buzz^$all
|
|
1418
|
+
||franceexpress.net^$all
|
|
1419
|
+
||funwithflies.online^$all
|
|
1420
|
+
||japanshopforsale.fun^$all
|
|
1421
|
+
||japanshopforsale.store^$all
|
|
1422
|
+
||khjkhk.store^$all
|
|
1423
|
+
||malayriyabukhar.xyz^$all
|
|
1424
|
+
||meeturdate.com^$all
|
|
1425
|
+
||merachatkaghar.xyz^$all
|
|
1426
|
+
||myjapanonlineshop.xyz^$all
|
|
1427
|
+
||mynameserverok.xyz^$all
|
|
1428
|
+
||newdomainleloyarjaldiseab.beauty^$all
|
|
1429
|
+
||newdomianleloyarjaldiseabto.quest^$all
|
|
1430
|
+
||newsonclik.com^$all
|
|
1431
|
+
||slapcleaner.com^$all
|
|
1432
|
+
||tatikhale.xyz^$all
|
|
1433
|
+
||2226wurpatw.tokyo^$doc
|
|
1434
|
+
||ab5sa.com^$doc
|
|
1435
|
+
||app.plum375ap.com^$doc
|
|
1436
|
+
||asiansgetnaughty.com^$doc
|
|
1437
|
+
||blackstunners.com^$doc
|
|
1438
|
+
||bxg-h.jp^$doc
|
|
1439
|
+
||budhump.com^$doc
|
|
1440
|
+
||busisma1.com^$doc
|
|
1441
|
+
||connect-wp.net^$doc
|
|
1442
|
+
||electro-magneticwave.com^$doc
|
|
1443
|
+
||eternal.mobius-loop.net^$doc
|
|
1444
|
+
||fukuinnnokotoba.com^$doc
|
|
1445
|
+
||humpbuds.com^$doc
|
|
1446
|
+
||like.delight-light.net^$doc
|
|
1447
|
+
||line-bs.com^$doc
|
|
1448
|
+
||localsgowild.com^$doc
|
|
1449
|
+
||naughtyfever.com^$doc
|
|
1450
|
+
||nw-fzi.jp^$doc
|
|
1451
|
+
||oo.opaall.com^$doc
|
|
1452
|
+
||or-nl.jp^$doc
|
|
1453
|
+
||sldg02.com^$doc
|
|
1454
|
+
||sll-lp1f.com^$doc
|
|
1455
|
+
||smart-chat.info^$doc
|
|
1456
|
+
||tenseikaiun.com^$doc
|
|
1457
|
+
||ui7aud5ei4uhx7.com^$doc
|
|
1458
|
+
||v1v-g1ft-o7.com^$doc
|
|
1459
|
+
||wish-spiritua.net^$doc
|
|
1460
|
+
||woman-busi.com^$doc
|
|
1461
|
+
||world-vision-central.com^$doc
|
|
1462
|
+
||chaljakismat.xyz^$all
|
|
1463
|
+
||betonclickone.com^$all
|
|
1464
|
+
||japanshopforsale.online^$all
|
|
1465
|
+
||jpsilversingle.com^$all
|
|
1466
|
+
||omiaijapan.net^$all
|
|
1467
|
+
||japanclothing.in^$all
|
|
1468
|
+
||secure-57v.pages.dev^$all
|
|
1469
|
+
||sweepsdomains.co.uk^$all
|
|
1470
|
+
||windowliveinfo.live^$all
|
|
1471
|
+
||buynewrvsbuyonline.com^$all
|
|
1472
|
+
||skyonelendings.com^$all
|
|
1473
|
+
||swaws.link^$all
|
|
1474
|
+
||amante-love1.com^$doc
|
|
1475
|
+
||ll-m-work-2020.com^$doc
|
|
1476
|
+
||pgym2t8p25uf3gz.com^$doc
|
|
1477
|
+
||slb3cr9dx9.jp^$doc
|
|
1478
|
+
||soku-h.net^$doc
|
|
1479
|
+
||sukui05.com^$doc
|
|
1480
|
+
||36vv-ssj.com^$doc
|
|
1481
|
+
||4miracle4.jp^$doc
|
|
1482
|
+
||4qy35wd.com^$doc
|
|
1483
|
+
||7nwa.cxiujudffaitd.jp^$doc
|
|
1484
|
+
||abc.youtus7216.com^$doc
|
|
1485
|
+
||akfdfdnupyfy.com^$doc
|
|
1486
|
+
||amari-ama.com^$doc
|
|
1487
|
+
||ank.vop-95jszkk.jp^$doc
|
|
1488
|
+
||attendantmulticultural.com^$doc
|
|
1489
|
+
||axd.jp^$doc
|
|
1490
|
+
||bambam-bi.com^$doc
|
|
1491
|
+
||big-country-load.com^$doc
|
|
1492
|
+
||bowmediation.com^$doc
|
|
1493
|
+
||c-al-e1nder.com^$doc
|
|
1494
|
+
||chocochipu-o.com^$doc
|
|
1495
|
+
||chumsline.jp^$doc
|
|
1496
|
+
||cosmos-metatrade.com^$doc
|
|
1497
|
+
||da-ro-s.com^$doc
|
|
1498
|
+
||dandelion-horsetail.work^$doc
|
|
1499
|
+
||dddiey-s1d2.com^$doc
|
|
1500
|
+
||ddeityy.com^$doc
|
|
1501
|
+
||deaimatch.jp^$doc
|
|
1502
|
+
||dream-by-catch.com^$doc
|
|
1503
|
+
||everhotmet.com^$doc
|
|
1504
|
+
||every-fpcx.com^$doc
|
|
1505
|
+
||facebooc.jp^$doc
|
|
1506
|
+
||ff-dai.net^$doc
|
|
1507
|
+
||friendmatch.jp^$doc
|
|
1508
|
+
||ganesha0910.com^$doc
|
|
1509
|
+
||ganesha52697.com^$doc
|
|
1510
|
+
||gm-we.jp^$doc
|
|
1511
|
+
||gtir5die6sutngr.jpn.com^$doc
|
|
1512
|
+
||happiness-gate.com^$doc
|
|
1513
|
+
||happy-h0ur.jp^$doc
|
|
1514
|
+
||heart-s2.com^$doc
|
|
1515
|
+
||htjrs-6re-ew.com^$doc
|
|
1516
|
+
||htre-vcf-d.com^$doc
|
|
1517
|
+
||iikanjiyanakanjide.wixsite.com^$doc
|
|
1518
|
+
||j75e-gfrs-df.com^$doc
|
|
1519
|
+
||juice-is-apple.com^$doc
|
|
1520
|
+
||kisekichikara.com^$doc
|
|
1521
|
+
||l1nefree.com^$doc
|
|
1522
|
+
||lets-white-push.com^$doc
|
|
1523
|
+
||loto-chance.com^$doc
|
|
1524
|
+
||lovyy.date^$doc
|
|
1525
|
+
||makoto-in-room.wixsite.com^$doc
|
|
1526
|
+
||mass-calc-read.com^$doc
|
|
1527
|
+
||mercury-fortune-telling.net^$doc
|
|
1528
|
+
||moira-101.com^$doc
|
|
1529
|
+
||nem0phila000.com^$doc
|
|
1530
|
+
||nitr5eur6fjhtsw.jpn.com^$doc
|
|
1531
|
+
||npo-government.jp^$doc
|
|
1532
|
+
||okai.work^$doc
|
|
1533
|
+
||onegoodperday.com^$doc
|
|
1534
|
+
||p3s18f1d0.com^$doc
|
|
1535
|
+
||pa-ir.net^$doc
|
|
1536
|
+
||pc.candlecandle.jp^$doc
|
|
1537
|
+
||pcfdt0001.com^$doc
|
|
1538
|
+
||pcfgdi0001.com^$doc
|
|
1539
|
+
||pcfsb0001.com^$doc
|
|
1540
|
+
||pdss3a1r.jp^$doc
|
|
1541
|
+
||pfunding-01.com^$doc
|
|
1542
|
+
||pororin081.com^$doc
|
|
1543
|
+
||primal.premium-prism.net^$doc
|
|
1544
|
+
||rainbow-fortune.biz^$doc
|
|
1545
|
+
||rainbow-fortune.com^$doc
|
|
1546
|
+
||rainbow-fortune.jp^$doc
|
|
1547
|
+
||sall.etchat.jp^$doc
|
|
1548
|
+
||som7ebb3.com^$doc
|
|
1549
|
+
||somatryui53.com^$doc
|
|
1550
|
+
||star-fortune.com^$doc
|
|
1551
|
+
||stella1647.com^$doc
|
|
1552
|
+
||supp0.jp^$doc
|
|
1553
|
+
||toki-no-irodori.com^$doc
|
|
1554
|
+
||tokyo-get-business.jp^$doc
|
|
1555
|
+
||tomodachixoxo.wixsite.com^$doc
|
|
1556
|
+
||top-smart-board.com^$doc
|
|
1557
|
+
||triangle123.com^$doc
|
|
1558
|
+
||trust-tarade.net^$doc
|
|
1559
|
+
||txi-r.jp^$doc
|
|
1560
|
+
||ukokjxfbdqwffmuvsd.jp^$doc
|
|
1561
|
+
||umjditpwlb4f.com^$doc
|
|
1562
|
+
||unmei-kaika.com^$doc
|
|
1563
|
+
||ur54-htres.com^$doc
|
|
1564
|
+
||very10.com^$doc
|
|
1565
|
+
||vf5rkgirsir8ska.jpn.com^$doc
|
|
1566
|
+
||vitop7eg5sqwgbk.jpn.com^$doc
|
|
1567
|
+
||vixii.co^$doc
|
|
1568
|
+
||w4y5u6.com^$doc
|
|
1569
|
+
||wishhoree1890.com^$doc
|
|
1570
|
+
||with-with.net^$doc
|
|
1571
|
+
||xs5rur1she7eyry.jpn.com^$doc
|
|
1572
|
+
||you.y-uh9k7n5y.tokyo^$doc
|
|
1573
|
+
||57zyazmk.jp^$doc
|
|
1574
|
+
||a.tlineat.jp^$doc
|
|
1575
|
+
||abc.lemon2023.com^$doc
|
|
1576
|
+
||angelchance.com^$doc
|
|
1577
|
+
||b2ujcm.com^$doc
|
|
1578
|
+
||be-loaded.com^$doc
|
|
1579
|
+
||characteristicobservant.com^$doc
|
|
1580
|
+
||clarinet20.com^$doc
|
|
1581
|
+
||coralnov.jp^$doc
|
|
1582
|
+
||deai.amour-site.com^$doc
|
|
1583
|
+
||deaisaito.jp^$doc
|
|
1584
|
+
||dia-lover.com^$doc
|
|
1585
|
+
||doorway-of-guidance.com^$doc
|
|
1586
|
+
||ed-blissful.com^$doc
|
|
1587
|
+
||eika-akie220202.com^$doc
|
|
1588
|
+
||eternalfame461.com^$doc
|
|
1589
|
+
||ev-upstart.com^$doc
|
|
1590
|
+
||for-tg.com^$doc
|
|
1591
|
+
||for20-coco.com^$doc
|
|
1592
|
+
||fortune-gluck.com^$doc
|
|
1593
|
+
||fortune-mooon.com^$doc
|
|
1594
|
+
||ft-flower.com^$doc
|
|
1595
|
+
||fukugyou2022.net^$doc
|
|
1596
|
+
||fukukomachi-220513.com^$doc
|
|
1597
|
+
||fukunoha211013.com^$doc
|
|
1598
|
+
||fukura210317.com^$doc
|
|
1599
|
+
||future-marvellous.com^$doc
|
|
1600
|
+
||gdzewykg-e6bh3e.com^$doc
|
|
1601
|
+
||gluck-happy.com^$doc
|
|
1602
|
+
||gluck-fortune.com^$doc
|
|
1603
|
+
||gluck-happyuranai.com^$doc
|
|
1604
|
+
||gluck-horoscope.com^$doc
|
|
1605
|
+
||gluck-luckyuranai.com^$doc
|
|
1606
|
+
||gluck-miracleuranai.com^$doc
|
|
1607
|
+
||gluck-secreturanai.com^$doc
|
|
1608
|
+
||gluck-uranai-gluck.com^$doc
|
|
1609
|
+
||gluck-uranaisalon.com^$doc
|
|
1610
|
+
||gogonews.club^$doc
|
|
1611
|
+
||happiness-sign.com^$doc
|
|
1612
|
+
||happy-gluck.com^$doc
|
|
1613
|
+
||happyuranai-gluck.com^$doc
|
|
1614
|
+
||heart-uranai.com^$doc
|
|
1615
|
+
||holydivination.com^$doc
|
|
1616
|
+
||honnkaku-uranai-gluck.com^$doc
|
|
1617
|
+
||horoscope-gluck.com^$doc
|
|
1618
|
+
||iflirts.com^$doc
|
|
1619
|
+
||im-excellent.com^$doc
|
|
1620
|
+
||infomessagehappy.com^$doc
|
|
1621
|
+
||iris-808.com^$doc
|
|
1622
|
+
||jdig56po.com^$doc
|
|
1623
|
+
||jungle-juggler.com^$doc
|
|
1624
|
+
||jungle-juggler.net^$doc
|
|
1625
|
+
||kaaairoo549kai.com^$doc
|
|
1626
|
+
||kahimeyuki.jp^$doc
|
|
1627
|
+
||kairos-9987kaa.com^$doc
|
|
1628
|
+
||kantan-uranai.com^$doc
|
|
1629
|
+
||karinaroom.wixsite.com^$doc
|
|
1630
|
+
||keitai-uranai.com^$doc
|
|
1631
|
+
||l-chat.jp^$doc
|
|
1632
|
+
||life-happy-family.com^$doc
|
|
1633
|
+
||login-chat.net^$doc
|
|
1634
|
+
||lovekatsu2277.com^$doc
|
|
1635
|
+
||luckyuranai-gluck.com^$doc
|
|
1636
|
+
||marine-nuts.online^$doc
|
|
1637
|
+
||match1ng.com^$doc
|
|
1638
|
+
||mintiia.com^$doc
|
|
1639
|
+
||mio-love2.wixsite.com^$doc
|
|
1640
|
+
||miracleuranai-gluck.com^$doc
|
|
1641
|
+
||moon-1light.com^$doc
|
|
1642
|
+
||moon1234moom.com^$doc
|
|
1643
|
+
||mttk2020.jp^$doc
|
|
1644
|
+
||mystery-forest.com^$doc
|
|
1645
|
+
||mr-benjamin.com^$doc
|
|
1646
|
+
||nexus.nice-splice.com^$doc
|
|
1647
|
+
||oficialinesp.wixsite.com^$doc
|
|
1648
|
+
||one-sunnyday.com^$doc
|
|
1649
|
+
||online-gluck.com^$doc
|
|
1650
|
+
||onlineuranai-gluck.com^$doc
|
|
1651
|
+
||opponent-remain.com^$doc
|
|
1652
|
+
||p-chi.info^$doc
|
|
1653
|
+
||pairpure.jp^$doc
|
|
1654
|
+
||pairpure.jp.net^$doc
|
|
1655
|
+
||peoplemanmanpeople.com^$doc
|
|
1656
|
+
||photo-gallery-picture2398.com^$doc
|
|
1657
|
+
||pinponpaipan.com^$doc
|
|
1658
|
+
||poke10ve.com^$doc
|
|
1659
|
+
||pocketlove.jp^$doc
|
|
1660
|
+
||pos.tnsd-apsq.com^$doc
|
|
1661
|
+
||ppo.re9t-hmd0.com^$doc
|
|
1662
|
+
||pulp-days.jp^$doc
|
|
1663
|
+
||pwo.wane-jctl.com^$doc
|
|
1664
|
+
||relife0001.com^$doc
|
|
1665
|
+
||relifemail555.com^$doc
|
|
1666
|
+
||rkdif.xyz^$doc
|
|
1667
|
+
||s-kiseki.jp^$doc
|
|
1668
|
+
||sebumu28.com^$doc
|
|
1669
|
+
||secreturanai-gluck.com^$doc
|
|
1670
|
+
||sevensmooon.com^$doc
|
|
1671
|
+
||sign-happy.com^$doc
|
|
1672
|
+
||smartphone-uranai.com^$doc
|
|
1673
|
+
||su-hisenjutu.com^$doc
|
|
1674
|
+
||suhi-senjutsu.com^$doc
|
|
1675
|
+
||suhi-sejutsuexpert.com^$doc
|
|
1676
|
+
||tada10ve.jp^$doc
|
|
1677
|
+
||tada1ove.com^$doc
|
|
1678
|
+
||take.the.n-chapter.jp^$doc
|
|
1679
|
+
||themselves-embryo.com^$doc
|
|
1680
|
+
||tkmailgirl.xyz^$doc
|
|
1681
|
+
||toxic-ventilate.com^$doc
|
|
1682
|
+
||ultratime.info^$doc
|
|
1683
|
+
||umjdt.site^$doc
|
|
1684
|
+
||uranai-gluck.com^$doc
|
|
1685
|
+
||uranai-keitai.com^$doc
|
|
1686
|
+
||uranai-smartphone.com^$doc
|
|
1687
|
+
||uranaikantei-gluck.com^$doc
|
|
1688
|
+
||uranaionline-gluck.com^$doc
|
|
1689
|
+
||uranaisalon-gluck.com^$doc
|
|
1690
|
+
||uu-charisma.jp^$doc
|
|
1691
|
+
||v-yummy.com^$doc
|
|
1692
|
+
||vin.vaji47uj.com^$doc
|
|
1693
|
+
||vroom24.com^$doc
|
|
1694
|
+
||vroom24365.com^$doc
|
|
1695
|
+
||webdeai.jp^$doc
|
|
1696
|
+
||wmw.matchin.jp^$doc
|
|
1697
|
+
||wn56y7ve57j12zuv7tyj.com^$doc
|
|
1698
|
+
||woman-good-job.work^$doc
|
|
1699
|
+
||world.ex-advantage.jp^$doc
|
|
1700
|
+
||xxa.uji8979erd77.jp^$doc
|
|
1701
|
+
||y-tradie.com^$doc
|
|
1702
|
+
||zaitaku-baito.com^$doc
|
|
1703
|
+
||action0120.com^$doc
|
|
1704
|
+
||alphabet0120.com^$doc
|
|
1705
|
+
||au0212te.com^$doc
|
|
1706
|
+
||auni230119.com^$doc
|
|
1707
|
+
||backyardperipheral.com^$doc
|
|
1708
|
+
||best-web2020.com^$doc
|
|
1709
|
+
||computer0120.com^$doc
|
|
1710
|
+
||cyber0120.com^$doc
|
|
1711
|
+
||degmq5l23.jp^$doc
|
|
1712
|
+
||direct198.com^$doc
|
|
1713
|
+
||dosudosuo.com^$doc
|
|
1714
|
+
||dotcom0120.com^$doc
|
|
1715
|
+
||ently7go.jp^$doc
|
|
1716
|
+
||f1kuent0.jp^$doc
|
|
1717
|
+
||fanfande.net^$doc
|
|
1718
|
+
||female-good.work^$doc
|
|
1719
|
+
||forum0120.com^$doc
|
|
1720
|
+
||foundate-core.net^$doc
|
|
1721
|
+
||intern0120.com^$doc
|
|
1722
|
+
||kasegeru-rank.com^$doc
|
|
1723
|
+
||li-neeee.net^$doc
|
|
1724
|
+
||linemail.work^$doc
|
|
1725
|
+
||love.classy-line.net^$doc
|
|
1726
|
+
||magnum0120.com^$doc
|
|
1727
|
+
||make2022.com^$doc
|
|
1728
|
+
||media0120.com^$doc
|
|
1729
|
+
||neutral0120.com^$doc
|
|
1730
|
+
||new0fuku.jp^$doc
|
|
1731
|
+
||positive0120.com^$doc
|
|
1732
|
+
||protein0120.com^$doc
|
|
1733
|
+
||okay-work.info^$doc
|
|
1734
|
+
||ol2ewq989.jp^$doc
|
|
1735
|
+
||openhouse0120.com^$doc
|
|
1736
|
+
||refrain0120.com^$doc
|
|
1737
|
+
||salon.beauty202201.com^$doc
|
|
1738
|
+
||sbfw.work^$doc
|
|
1739
|
+
||sma-talk.com^$doc
|
|
1740
|
+
||smile-4u-2u.com^$doc
|
|
1741
|
+
||sokkinjobmasu.work^$doc
|
|
1742
|
+
||somethingyourselves.com^$doc
|
|
1743
|
+
||sorriso.fate-saber.net^$doc
|
|
1744
|
+
||tim.time-time-zyunizi.com^$doc
|
|
1745
|
+
||tppxi8sa9gppy.com^$doc
|
|
1746
|
+
||uj2tu1y.com^$doc
|
|
1747
|
+
||unclependulum.com^$doc
|
|
1748
|
+
||warmthsupportive.com^$doc
|
|
1749
|
+
||xxxmake.com^$doc
|
|
1750
|
+
||yours-mail.com^$doc
|
|
1751
|
+
||1litteno.home-walil1.jp^$doc
|
|
1752
|
+
||1st-mail.jp^$doc
|
|
1753
|
+
||2507u35ia6mk1.com^$doc
|
|
1754
|
+
||2qpk150djf0ri.jp^$doc
|
|
1755
|
+
||56fv2z8bfv9.com^$doc
|
|
1756
|
+
||5jd2tj2idrool.com^$doc
|
|
1757
|
+
||777.funnyy.net^$doc
|
|
1758
|
+
||advancedaily711.com^$doc
|
|
1759
|
+
||ai-ne.net^$doc
|
|
1760
|
+
||ai-tas.com^$doc
|
|
1761
|
+
||ai3tu.com^$doc
|
|
1762
|
+
||alch.treas.jp^$doc
|
|
1763
|
+
||amaenbo.jp^$doc
|
|
1764
|
+
||amourplace.jp^$doc
|
|
1765
|
+
||ancient-guidance.jp^$doc
|
|
1766
|
+
||animal-vegetable.com^$doc
|
|
1767
|
+
||apple012.com^$doc
|
|
1768
|
+
||ash-976.com^$doc
|
|
1769
|
+
||asw.lkjs214awe.jp^$doc
|
|
1770
|
+
||ataru-loto.com^$doc
|
|
1771
|
+
||atchm.net^$doc
|
|
1772
|
+
||bb.bluetopaazz.com^$doc
|
|
1773
|
+
||bontruth.com^$doc
|
|
1774
|
+
||c.onnect.jp^$doc
|
|
1775
|
+
||c930lhsivns1b.jp^$doc
|
|
1776
|
+
||chat111room-09.com^$doc
|
|
1777
|
+
||ci16f.com^$doc
|
|
1778
|
+
||confidencial-uniq.com^$doc
|
|
1779
|
+
||connect-jumbo.com^$doc
|
|
1780
|
+
||cosdate.jp^$doc
|
|
1781
|
+
||credence-website.com^$doc
|
|
1782
|
+
||cxbvnmyeruw.com^$doc
|
|
1783
|
+
||czrpzrxpybbgrtcv.com^$doc
|
|
1784
|
+
||d-hiyori.com^$doc
|
|
1785
|
+
||daisukimatch.jp^$doc
|
|
1786
|
+
||defendeerrpro.jp^$doc
|
|
1787
|
+
||diamond-line.net^$doc
|
|
1788
|
+
||dinosaur-crown.com^$doc
|
|
1789
|
+
||dreamatch.jp^$doc
|
|
1790
|
+
||edge-campaign-japan.com^$doc
|
|
1791
|
+
||eiqnnmxvun5ge97.com^$doc
|
|
1792
|
+
||en5wr67sag3.com^$doc
|
|
1793
|
+
||enigma-quorum.com^$doc
|
|
1794
|
+
||equation-of-happiness.com^$doc
|
|
1795
|
+
||eromatchi.jp^$doc
|
|
1796
|
+
||ev.every-every-happy.com^$doc
|
|
1797
|
+
||fanta-stic.net^$doc
|
|
1798
|
+
||flirt.com^$doc
|
|
1799
|
+
||fx-protrade.net^$doc
|
|
1800
|
+
||garden-nomadl1i.com^$doc
|
|
1801
|
+
||ggcake.tindersplus.net^$doc
|
|
1802
|
+
||glitter-girls.net^$doc
|
|
1803
|
+
||gokuhuku.jp^$doc
|
|
1804
|
+
||goodnews-sp.com^$doc
|
|
1805
|
+
||gyakusimei.com^$doc
|
|
1806
|
+
||h-spe.net^$doc
|
|
1807
|
+
||hapim.net^$doc
|
|
1808
|
+
||happy-egg.net^$doc
|
|
1809
|
+
||happylife-partner.com^$doc
|
|
1810
|
+
||heartmatch.jp^$doc
|
|
1811
|
+
||hho.yes-hhoyf.com^$doc
|
|
1812
|
+
||home-22-time.com^$doc
|
|
1813
|
+
||hy4ied3d.com^$doc
|
|
1814
|
+
||i5h56ozira7l6.jp^$doc
|
|
1815
|
+
||ideallife21.com^$doc
|
|
1816
|
+
||ii-earth.com^$doc
|
|
1817
|
+
||imvcenuietfmw.net^$doc
|
|
1818
|
+
||itssofunny010.com^$doc
|
|
1819
|
+
||jack-roaddinc.jp^$doc
|
|
1820
|
+
||japanhotties.jp^$doc
|
|
1821
|
+
||jdoasjfojuhod.com^$doc
|
|
1822
|
+
||kaiunmegami.jp^$doc
|
|
1823
|
+
||kaiunrecipe.com^$doc
|
|
1824
|
+
||kmamk.net^$doc
|
|
1825
|
+
||koipara.jp^$doc
|
|
1826
|
+
||koudoukan.jp^$doc
|
|
1827
|
+
||kring-stone.jp^$doc
|
|
1828
|
+
||lib-333-lib.com^$doc
|
|
1829
|
+
||likeandlive.com^$doc
|
|
1830
|
+
||local-bang.com^$all
|
|
1831
|
+
||lovedotto.net^$doc
|
|
1832
|
+
||lovewish.jp^$doc
|
|
1833
|
+
||lrwxrawroemtghrmzbn.com^$doc
|
|
1834
|
+
||lunalunadream.distance-box.net^$doc
|
|
1835
|
+
||lutherinfo.com^$doc
|
|
1836
|
+
||luthersaite.com^$doc
|
|
1837
|
+
||lux-ex.info^$doc
|
|
1838
|
+
||lvmeet.net^$doc
|
|
1839
|
+
||machimatch.jp^$doc
|
|
1840
|
+
||matchmix.jp^$doc
|
|
1841
|
+
||mem.wakuwa98.com^$doc
|
|
1842
|
+
||mmdem.net^$doc
|
|
1843
|
+
||mmkat.net^$doc
|
|
1844
|
+
||mmlnc.net^$doc
|
|
1845
|
+
||moelove.jp^$doc
|
|
1846
|
+
||mustwork.work^$doc
|
|
1847
|
+
||myocean.jp^$doc
|
|
1848
|
+
||nakayama.chikarakosopower.com^$doc
|
|
1849
|
+
||netsgram.com^$doc
|
|
1850
|
+
||network.pochi-apricot.com^$doc
|
|
1851
|
+
||nextaex.com^$doc
|
|
1852
|
+
||one.thx-birthday.com^$doc
|
|
1853
|
+
||one-two-up.jp^$doc
|
|
1854
|
+
||one1-day.com^$doc
|
|
1855
|
+
||otakuplay.jp^$doc
|
|
1856
|
+
||otakurabu.jp^$doc
|
|
1857
|
+
||p18d6.hp.peraichi.com^$doc
|
|
1858
|
+
||pairnavipairnavi.com^$doc
|
|
1859
|
+
||pakok.net^$doc
|
|
1860
|
+
||paradise-angel.com^$doc
|
|
1861
|
+
||paysnum.com^$doc
|
|
1862
|
+
||peaces-ign.com^$doc
|
|
1863
|
+
||peachzone.site^$doc
|
|
1864
|
+
||plaza-l1o0nni-p1aza.com^$doc
|
|
1865
|
+
||ps-sns0girls.com^$doc
|
|
1866
|
+
||ptron.net^$doc
|
|
1867
|
+
||pxk.jp^$doc
|
|
1868
|
+
||ranch-1and.com^$doc
|
|
1869
|
+
||removerted.com^$doc
|
|
1870
|
+
||rexsvj8omabse.jp^$doc
|
|
1871
|
+
||richheart.completelifetime.com^$doc
|
|
1872
|
+
||room-582.com^$doc
|
|
1873
|
+
||room-82yhjeidk.com^$doc
|
|
1874
|
+
||s908b9n62w53u.jp^$doc
|
|
1875
|
+
||sard1.com^$doc
|
|
1876
|
+
||sca-letter.com^$doc
|
|
1877
|
+
||sdhjak.com^$doc
|
|
1878
|
+
||sea-into-53426l1.com^$doc
|
|
1879
|
+
||sfsrch.com^$doc
|
|
1880
|
+
||shihukumichibiki.jp^$doc
|
|
1881
|
+
||sns.smle.mobi^$doc
|
|
1882
|
+
||sokudeai.jp^$doc
|
|
1883
|
+
||sokuh.net^$doc
|
|
1884
|
+
||sonic-nicehands.com^$doc
|
|
1885
|
+
||specialapp-sns.com^$doc
|
|
1886
|
+
||stowers-service.com^$doc
|
|
1887
|
+
||sxtown.jp^$doc
|
|
1888
|
+
||syakoba.com^$doc
|
|
1889
|
+
||teamwork-project.com^$doc
|
|
1890
|
+
||tennshinomitibiki01.com^$doc
|
|
1891
|
+
||tenshinomitibiki.com^$doc
|
|
1892
|
+
||theater-1iil1.com^$doc
|
|
1893
|
+
||unafei-kokusai.com^$doc
|
|
1894
|
+
||upforit.com^$doc
|
|
1895
|
+
||uptoest.com^$doc
|
|
1896
|
+
||vhills.net^$doc
|
|
1897
|
+
||votteetten.com^$doc
|
|
1898
|
+
||vqydliiyda.net^$doc
|
|
1899
|
+
||wbp-hk.com^$doc
|
|
1900
|
+
||wbpb9.com^$doc
|
|
1901
|
+
||whim-w.net^$doc
|
|
1902
|
+
||xn--4dkua4c8143c.jp^$doc
|
|
1903
|
+
||xn--edkc9m807k.jp^$doc
|
|
1904
|
+
||xn--n8j0la8wb3547bghe.jp^$doc
|
|
1905
|
+
||xn--n8jwkyc7fw52nfvd.jp^$doc
|
|
1906
|
+
||xn--z9j635l1gs.jp^$doc
|
|
1907
|
+
||xn--z9jzga6u1506a.jp^$doc
|
|
1908
|
+
||xtqmufypnebap.jp^$doc
|
|
1909
|
+
||xyg.application-sns.com^$doc
|
|
1910
|
+
||you4love.jp^$doc
|
|
1911
|
+
||zil1u73o.mars-for-5gt2li.com^$doc
|
|
1912
|
+
||zmaka.net^$doc
|
|
1913
|
+
||znapybthaneyjepbrinwitkc.com^$doc
|
|
1914
|
+
||taosaleset.com^$all
|
|
1915
|
+
||0281.jp^$doc
|
|
1916
|
+
||0909810.com^$doc
|
|
1917
|
+
||093093.jp^$doc
|
|
1918
|
+
||11093.jp^$doc
|
|
1919
|
+
||19093.jp^$doc
|
|
1920
|
+
||2349.jp^$doc
|
|
1921
|
+
||2h1.jp^$doc
|
|
1922
|
+
||39093.net^$doc
|
|
1923
|
+
||39093.tv^$doc
|
|
1924
|
+
||4151.biz^$doc
|
|
1925
|
+
||4151.tv^$doc
|
|
1926
|
+
||55093.com^$doc
|
|
1927
|
+
||55bdsm.com^$doc
|
|
1928
|
+
||aeru.tv^$doc
|
|
1929
|
+
||affairdating.com^$doc
|
|
1930
|
+
||aitai.biz^$doc
|
|
1931
|
+
||amantssexy.com^$doc
|
|
1932
|
+
||askme4date.com^$doc
|
|
1933
|
+
||b-7.jp^$doc
|
|
1934
|
+
||babaroa.net^$doc
|
|
1935
|
+
||bbs-7.jp^$doc
|
|
1936
|
+
||bbsdx.jp^$doc
|
|
1937
|
+
||benbbs.net^$doc
|
|
1938
|
+
||bnbn.jp^$doc
|
|
1939
|
+
||c-y.jp^$doc
|
|
1940
|
+
||celcol.jp^$doc
|
|
1941
|
+
||celebri.jp^$doc
|
|
1942
|
+
||choucreme.com^$doc
|
|
1943
|
+
||chy.jp^$doc
|
|
1944
|
+
||cjok.net^$doc
|
|
1945
|
+
||crostol.com^$doc
|
|
1946
|
+
||datenabi.com^$doc
|
|
1947
|
+
||doem.jp^$doc
|
|
1948
|
+
||ebifri.com^$doc
|
|
1949
|
+
||eraberu.jp^$doc
|
|
1950
|
+
||erocm.com^$doc
|
|
1951
|
+
||flirtanu.com^$doc
|
|
1952
|
+
||flirtmoms.com^$doc
|
|
1953
|
+
||freedom-garden.com^$doc
|
|
1954
|
+
||freesexmatch.com^$doc
|
|
1955
|
+
||geh.jp^$doc
|
|
1956
|
+
||getnaughty.com^$doc
|
|
1957
|
+
||gofun.jp^$doc
|
|
1958
|
+
||gspo.jp^$doc
|
|
1959
|
+
||guj.jp^$doc
|
|
1960
|
+
||guw.jp^$doc
|
|
1961
|
+
||h093.net^$doc
|
|
1962
|
+
||hipma.jp^$doc
|
|
1963
|
+
||hmai.jp^$doc
|
|
1964
|
+
||hmhm.jp^$doc
|
|
1965
|
+
||hoct.cc^$doc
|
|
1966
|
+
||hxh.jp^$doc
|
|
1967
|
+
||igetnaughty.com^$doc
|
|
1968
|
+
||irha.jp^$doc
|
|
1969
|
+
||jnjn.jp^$doc
|
|
1970
|
+
||jukcha.com^$doc
|
|
1971
|
+
||jukuana.net^$doc
|
|
1972
|
+
||jyk.jp^$doc
|
|
1973
|
+
||kadak.jp^$doc
|
|
1974
|
+
||kanbbs.net^$doc
|
|
1975
|
+
||kokanjo.net^$doc
|
|
1976
|
+
||koubi.jp^$doc
|
|
1977
|
+
||koy.jp^$doc
|
|
1978
|
+
||ksds.jp^$doc
|
|
1979
|
+
||linblog.info^$doc
|
|
1980
|
+
||linguette.net^$doc
|
|
1981
|
+
||locals.dating^$doc
|
|
1982
|
+
||loveju.net^$doc
|
|
1983
|
+
||mamak.jp^$doc
|
|
1984
|
+
||matchx2.com^$doc
|
|
1985
|
+
||meetdatekiss.com^$doc
|
|
1986
|
+
||meetpie.net^$doc
|
|
1987
|
+
||mejp.net^$doc
|
|
1988
|
+
||mgirl.jp^$doc
|
|
1989
|
+
||mland.jp^$doc
|
|
1990
|
+
||mmnav.jp^$doc
|
|
1991
|
+
||moecoco.com^$doc
|
|
1992
|
+
||mymymy.net^$doc
|
|
1993
|
+
||natadecoco.net^$doc
|
|
1994
|
+
||naughtydate.com^$doc
|
|
1995
|
+
||newhoney.jp^$doc
|
|
1996
|
+
||nuide.net^$doc
|
|
1997
|
+
||oneisan.net^$doc
|
|
1998
|
+
||oolontya.com^$doc
|
|
1999
|
+
||pair-pair.com^$doc
|
|
2000
|
+
||panacota.net^$doc
|
|
2001
|
+
||piparelli.net^$doc
|
|
2002
|
+
||pirikitos.com^$doc
|
|
2003
|
+
||pmew.jp^$doc
|
|
2004
|
+
||pnav.jp^$doc
|
|
2005
|
+
||quickflirt.com^$doc
|
|
2006
|
+
||ricopin.com^$doc
|
|
2007
|
+
||scnv.jp^$doc
|
|
2008
|
+
||serev.net^$doc
|
|
2009
|
+
||sfg.jp^$doc
|
|
2010
|
+
||sfge.jp^$doc
|
|
2011
|
+
||singles50.jp^$doc
|
|
2012
|
+
||smab.jp^$doc
|
|
2013
|
+
||smism.jp^$doc
|
|
2014
|
+
||smmax.jp^$doc
|
|
2015
|
+
||soha.jp^$doc
|
|
2016
|
+
||sok8.net^$doc
|
|
2017
|
+
||stomatico.com^$doc
|
|
2018
|
+
||suguaitaina.com^$doc
|
|
2019
|
+
||suguao.net^$doc
|
|
2020
|
+
||sumatuma.com^$doc
|
|
2021
|
+
||sxe.jp^$doc
|
|
2022
|
+
||syasei.com^$doc
|
|
2023
|
+
||tapi2.jp^$doc
|
|
2024
|
+
||tarto.net^$doc
|
|
2025
|
+
||tendermeetonline.com^$doc
|
|
2026
|
+
||tendermeets.com^$doc
|
|
2027
|
+
||tinql.com^$doc
|
|
2028
|
+
||together.com^$doc
|
|
2029
|
+
||maturedating.com^$doc
|
|
2030
|
+
||topg.jp^$doc
|
|
2031
|
+
||tubakinohimitsu.amebaownd.com^$doc
|
|
2032
|
+
||tugonoyoi.com^$doc
|
|
2033
|
+
||twowife.com^$doc
|
|
2034
|
+
||txtx.jp^$doc
|
|
2035
|
+
||ulla.com^$doc
|
|
2036
|
+
||uniformdating.com^$doc
|
|
2037
|
+
||wantubad.com^$doc
|
|
2038
|
+
||wildmeets.com^$doc
|
|
2039
|
+
||xgal.jp^$doc
|
|
2040
|
+
||xzo.jp^$doc
|
|
2041
|
+
||yceleb.com^$doc
|
|
2042
|
+
||yourskiss.com^$doc
|
|
2043
|
+
||bruno-brown.com^$doc
|
|
2044
|
+
||life-is-luminous.com^$doc
|
|
2045
|
+
||00ebjdbagyqwt.club^$doc
|
|
2046
|
+
||0didjsgheje.club^$doc
|
|
2047
|
+
||5050.fm^$doc
|
|
2048
|
+
||6xtpke4.com^$doc
|
|
2049
|
+
||8xpamp5fxd.com^$doc
|
|
2050
|
+
||a5qd6qjhwg5d.com^$doc
|
|
2051
|
+
||aberration-0000000001.com^$doc
|
|
2052
|
+
||abstain-soldier.com^$doc
|
|
2053
|
+
||adoptmeantranslate.com^$doc
|
|
2054
|
+
||after-7.net^$doc
|
|
2055
|
+
||aikatuz.jp^$doc
|
|
2056
|
+
||all-time-domain.com^$doc
|
|
2057
|
+
||always-happy-fortune.com^$doc
|
|
2058
|
+
||alwayslike.safestspot.jp^$doc
|
|
2059
|
+
||anau6stg6y.com^$doc
|
|
2060
|
+
||andyou2.com^$doc
|
|
2061
|
+
||aphrodite-astrology.net^$doc
|
|
2062
|
+
||apppleheaddd.jp^$doc
|
|
2063
|
+
||bestcosme.jp^$doc
|
|
2064
|
+
||blueberrydevastating.com^$doc
|
|
2065
|
+
||browser9182.web.fc2.com^$doc
|
|
2066
|
+
||burmesterone.jp^$doc
|
|
2067
|
+
||callb.biz^$doc
|
|
2068
|
+
||catchmetalk.blog^$doc
|
|
2069
|
+
||catchmetalk.com^$doc
|
|
2070
|
+
||charecttorr.jp^$doc
|
|
2071
|
+
||charm-n.com^$doc
|
|
2072
|
+
||chesscheckersvariation.com^$doc
|
|
2073
|
+
||circle7-bd.com^$doc
|
|
2074
|
+
||club-house.link^$doc
|
|
2075
|
+
||cocoro-liberty.com^$doc
|
|
2076
|
+
||coin-of-fate.jp^$doc
|
|
2077
|
+
||d-sr.net^$doc
|
|
2078
|
+
||d-will.net^$doc
|
|
2079
|
+
||daylighteel.com^$doc
|
|
2080
|
+
||ddxdda.unusualdate.com^$doc
|
|
2081
|
+
||digital-mail.jp^$doc
|
|
2082
|
+
||divination-truth.com^$doc
|
|
2083
|
+
||during-the-holiday.com^$doc
|
|
2084
|
+
||e-d-en.com^$doc
|
|
2085
|
+
||eme.emeralldd.com^$doc
|
|
2086
|
+
||every-au.com^$doc
|
|
2087
|
+
||every-bisque.com^$doc
|
|
2088
|
+
||every-blanched.com^$doc
|
|
2089
|
+
||every-cornsilk.com^$doc
|
|
2090
|
+
||every-coral.com^$doc
|
|
2091
|
+
||every-cute.com^$doc
|
|
2092
|
+
||every-dark.com^$doc
|
|
2093
|
+
||every-dodo.com^$doc
|
|
2094
|
+
||every-ds123.com^$doc
|
|
2095
|
+
||every-enjoy.com^$doc
|
|
2096
|
+
||every-gold.com^$doc
|
|
2097
|
+
||every-isb.com^$doc
|
|
2098
|
+
||every-lemon.com^$doc
|
|
2099
|
+
||every-light.com^$doc
|
|
2100
|
+
||every-line1.com^$doc
|
|
2101
|
+
||every-line2.com^$doc
|
|
2102
|
+
||every-nejp.com^$doc
|
|
2103
|
+
||every-pcpc.com^$doc
|
|
2104
|
+
||every-rose.com^$doc
|
|
2105
|
+
||every-salmon.com^$doc
|
|
2106
|
+
||every-super.com^$doc
|
|
2107
|
+
||every-toroku1.com^$doc
|
|
2108
|
+
||every-toroku2.com^$doc
|
|
2109
|
+
||every-toroku3.com^$doc
|
|
2110
|
+
||every-yellow.com^$doc
|
|
2111
|
+
||experiencedlawsuit.com^$doc
|
|
2112
|
+
||extentfillet.com^$doc
|
|
2113
|
+
||febdd.info^$doc
|
|
2114
|
+
||flupshare.com^$doc
|
|
2115
|
+
||fortune-start.com^$doc
|
|
2116
|
+
||fortune-yakata.com^$doc
|
|
2117
|
+
||g-spiritual.com^$doc
|
|
2118
|
+
||gate-1-spiritual.com^$doc
|
|
2119
|
+
||gnan.jp^$doc
|
|
2120
|
+
||gnchag.com^$doc
|
|
2121
|
+
||gran-danker.jp^$doc
|
|
2122
|
+
||gyakunan.net^$doc
|
|
2123
|
+
||happiness-gate01.com^$doc
|
|
2124
|
+
||high-moon-sun.com^$doc
|
|
2125
|
+
||higher-mainnd.jp^$doc
|
|
2126
|
+
||hretdsubgrmc.jp^$doc
|
|
2127
|
+
||htgefegf56756.xyz^$doc
|
|
2128
|
+
||hy3irjf.com^$doc
|
|
2129
|
+
||igazre.com^$doc
|
|
2130
|
+
||jinsei-uranai2023.com^$doc
|
|
2131
|
+
||just1ce.net^$doc
|
|
2132
|
+
||kantei-oracle.com^$doc
|
|
2133
|
+
||kinhako-lp.com^$doc
|
|
2134
|
+
||kinhako-m01.com^$doc
|
|
2135
|
+
||kinhako-m02.com^$doc
|
|
2136
|
+
||kinhako-p01.com^$doc
|
|
2137
|
+
||kinhako-p02.com^$doc
|
|
2138
|
+
||lightlydismantle.com^$doc
|
|
2139
|
+
||lover-c.com^$doc
|
|
2140
|
+
||luck-is-home.com^$doc
|
|
2141
|
+
||mamagathering.org^$doc
|
|
2142
|
+
||match007.jp^$doc
|
|
2143
|
+
||mc-aoyama.com^$doc
|
|
2144
|
+
||mercury-lp.net^$doc
|
|
2145
|
+
||michibiki-uranai.com^$doc
|
|
2146
|
+
||miracle-door.com^$doc
|
|
2147
|
+
||mirai-kouun2023.com^$doc
|
|
2148
|
+
||mjzca66n34j7.com^$doc
|
|
2149
|
+
||moon-luck-power.com^$doc
|
|
2150
|
+
||mother-sku.jp^$doc
|
|
2151
|
+
||okanekasegeru.com^$doc
|
|
2152
|
+
||online-777.jp^$doc
|
|
2153
|
+
||p-mel.net^$doc
|
|
2154
|
+
||part-ner01.jp^$doc
|
|
2155
|
+
||peachcafe.net^$doc
|
|
2156
|
+
||poison-idea.com^$doc
|
|
2157
|
+
||polaris-775.com^$doc
|
|
2158
|
+
||pollutionsatisfyadopt.com^$doc
|
|
2159
|
+
||prophecy-of-fate.com^$doc
|
|
2160
|
+
||relief.glad-glory.com^$doc
|
|
2161
|
+
||rising-to-fortune.com^$doc
|
|
2162
|
+
||rosaca-nina.net^$doc
|
|
2163
|
+
||ru.ruubbyy.com^$doc
|
|
2164
|
+
||s-space.jp^$doc
|
|
2165
|
+
||shinjitsu-mirai2023.com^$doc
|
|
2166
|
+
||sokuai.jp^$doc
|
|
2167
|
+
||sp-gt-meet.com^$doc
|
|
2168
|
+
||spring-sealion.com^$doc
|
|
2169
|
+
||spiritual-gt.com^$doc
|
|
2170
|
+
||spiritual-leading.com^$doc
|
|
2171
|
+
||sta.star-star777.com^$doc
|
|
2172
|
+
||star-club-self.com^$doc
|
|
2173
|
+
||star-superstar-yellow.com^$doc
|
|
2174
|
+
||sugusagasu.com^$doc
|
|
2175
|
+
||sukui01.com^$doc
|
|
2176
|
+
||sukui02.com^$doc
|
|
2177
|
+
||sukui03.com^$doc
|
|
2178
|
+
||sukui04.com^$doc
|
|
2179
|
+
||sukuinote.jp^$doc
|
|
2180
|
+
||sumsmsp.info^$doc
|
|
2181
|
+
||szddbxyumfcf.net^$doc
|
|
2182
|
+
||tarot2fs.com^$doc
|
|
2183
|
+
||telet.me^$doc
|
|
2184
|
+
||this-you-good.com^$doc
|
|
2185
|
+
||tikgold2023.com^$doc
|
|
2186
|
+
||tomikuji.com^$doc
|
|
2187
|
+
||ugfdwmausxfy.net^$doc
|
|
2188
|
+
||unmei-hikari2023.com^$doc
|
|
2189
|
+
||unmei2023.com^$doc
|
|
2190
|
+
||uranai-beginning.com^$doc
|
|
2191
|
+
||uranai-hit.com^$doc
|
|
2192
|
+
||uranai-like.com^$doc
|
|
2193
|
+
||utugmz93sr.com^$doc
|
|
2194
|
+
||wafxz2.com^$doc
|
|
2195
|
+
||wastearguewasteill.com^$doc
|
|
2196
|
+
||web.fe-vrier.com^$doc
|
|
2197
|
+
||whpbrmdss.com^$doc
|
|
2198
|
+
||will-kantei.com^$doc
|
|
2199
|
+
||wkdk.jp^$doc
|
|
2200
|
+
||xmwvmzm3fd8h.com^$doc
|
|
2201
|
+
||zrkp7fgmcdwe.com^$doc
|
|
2202
|
+
||feemwshape.sbs^$doc
|
|
2203
|
+
||6xy-zg.com^$doc
|
|
2204
|
+
||bvnx599app.com^$doc
|
|
2205
|
+
||cwa-2020.com^$doc
|
|
2206
|
+
||dwoetbarcrooplsloiwh.com^$doc
|
|
2207
|
+
||gargar.making-garden.com^$doc
|
|
2208
|
+
||happy-popice.com^$doc
|
|
2209
|
+
||kronos2022.com^$doc
|
|
2210
|
+
||like-baloon-leaf.com^$doc
|
|
2211
|
+
||mor.chance-10dayful.com^$doc
|
|
2212
|
+
||octagongon.com^$doc
|
|
2213
|
+
||qfmjw.arpviufltwiostoegrm.com^$doc
|
|
2214
|
+
||s.meru.jp^$doc
|
|
2215
|
+
||ts7nept8.com^$doc
|
|
2216
|
+
||vcrwv.monster^$doc
|
|
2217
|
+
||x-yz6asktoi.com^$doc
|
|
2218
|
+
||x-yzn6.com^$doc
|
|
2219
|
+
||x6-yz-kzyx0.com^$doc
|
|
2220
|
+
||x6-yzk.com^$doc
|
|
2221
|
+
||xy-z0-ra-had0.com^$doc
|
|
2222
|
+
||xy-z6goo-xyz.com^$doc
|
|
2223
|
+
||xy-z6x.com^$doc
|
|
2224
|
+
||ytjon-d2s1ah.com^$doc
|
|
2225
|
+
||lets-tip315.com^$doc
|
|
2226
|
+
||loveri.net^$doc
|
|
2227
|
+
||lvli.jp^$doc
|
|
2228
|
+
||m2sg.jp^$doc
|
|
2229
|
+
||mamasg.net^$doc
|
|
2230
|
+
||mcbien.net^$doc
|
|
2231
|
+
||mlaligms205s.com^$doc
|
|
2232
|
+
||rollfa.net^$doc
|
|
2233
|
+
||rollin-12fate.com^$doc
|
|
2234
|
+
||rollin-fat1e.com^$doc
|
|
2235
|
+
||sgua.jp^$doc
|
|
2236
|
+
||spilov.net^$doc
|
|
2237
|
+
||splv.jp^$doc
|
|
2238
|
+
||suguap.net^$doc
|
|
2239
|
+
||vien.jp^$doc
|
|
2240
|
+
||a-power.jp^$doc
|
|
2241
|
+
||eternal-station.jp^$doc
|
|
2242
|
+
||fnyge.site^$doc
|
|
2243
|
+
||friends-connect.com^$doc
|
|
2244
|
+
||kinun-2023.com^$doc
|
|
2245
|
+
||madonnaoasis.com^$doc
|
|
2246
|
+
||msg.metamessen.net^$doc
|
|
2247
|
+
||o-cean-fortune.biz^$doc
|
|
2248
|
+
||o-cean-fortune.com^$doc
|
|
2249
|
+
||secondary-with.com^$doc
|
|
2250
|
+
||fure-ai.com^$doc
|
|
2251
|
+
||fure-ai.site^$doc
|
|
2252
|
+
||happy-classic.com^$doc
|
|
2253
|
+
||poiu7895123.jp^$doc
|
|
2254
|
+
||rea-love.net^$doc
|
|
2255
|
+
||bvjdogmfommbobmedmf.com^$doc
|
|
2256
|
+
||ggtt-more-special.com^$doc
|
|
2257
|
+
||lpdoinoibnsndoppigh.com^$doc
|
|
2258
|
+
||natu.natural-natural-pure.com^$doc
|
|
2259
|
+
||npafnapnnapfpaengdf.com^$doc
|
|
2260
|
+
||b6s4as9myw75g877krwp.com^$doc
|
|
2261
|
+
||hr7sy8fpw7tr43u3dab2.com^$doc
|
|
2262
|
+
||loving-happy.com^$doc
|
|
2263
|
+
||pw3a2rps8p97x2u5-2rf.com^$doc
|
|
2264
|
+
||wzbrughrw9a63hnfurap.com^$doc
|
|
2265
|
+
||xa7f8d9i9su2pchn6mps.com^$doc
|
|
2266
|
+
||btc8228.com^$all
|
|
2267
|
+
||btc9339.com^$all
|
|
2268
|
+
||buyeosport.life^$all
|
|
2269
|
+
||eoxleiy.store^$all
|
|
2270
|
+
||feehhfilm.life^$all
|
|
2271
|
+
||needzmfolk.life^$all
|
|
2272
|
+
||abacus-prefix.com^$doc
|
|
2273
|
+
||aj5sa87e.com^$doc
|
|
2274
|
+
||celezma.net^$doc
|
|
2275
|
+
||dismay-sacred.com^$doc
|
|
2276
|
+
||hamfqppcycjiskc.com^$doc
|
|
2277
|
+
||loveru.jp^$doc
|
|
2278
|
+
||match-1match.jp^$doc
|
|
2279
|
+
||morale-yellow.com^$doc
|
|
2280
|
+
||quq.ygdd7ssl.com^$doc
|
|
2281
|
+
||shining.relief-lives.net^$doc
|
|
2282
|
+
||t1amo.jp^$doc
|
|
2283
|
+
||gswwichggroup.top^$doc
|
|
2284
|
+
||pffawtchpoffical.buzz^$doc
|
|
2285
|
+
||qswwichqhood.top^$doc
|
|
2286
|
+
||tswwichtband.top^$doc
|
|
2287
|
+
||uggstore.online^$doc
|
|
2288
|
+
||jampamn.online^$doc
|
|
2289
|
+
||fair.alivio-platform.com^$doc
|
|
2290
|
+
||pair-seat.net^$doc
|
|
2291
|
+
||pairseat.net^$doc
|
|
2292
|
+
||sez.jp^$doc
|
|
2293
|
+
||matching-go.jp^$doc
|
|
2294
|
+
||kira-kira.blue^$doc
|
|
2295
|
+
||p-chi.tech^$doc
|
|
2296
|
+
||rearea2022.com^$doc
|
|
2297
|
+
||vanilla-japan.love^$doc
|
|
2298
|
+
||jtybleua.jp^$doc
|
|
2299
|
+
||mai-tel.jp^$doc
|
|
2300
|
+
||sfc.bz^$doc
|
|
2301
|
+
||sfget.jp^$doc
|
|
2302
|
+
||download-campaign.com^$doc
|
|
2303
|
+
||fine-cloud.net^$doc
|
|
2304
|
+
||float-next.com^$doc
|
|
2305
|
+
||matomenever.com^$doc
|
|
2306
|
+
||mid-round.com^$doc
|
|
2307
|
+
||otonanojikan13579.net^$doc
|
|
2308
|
+
||up-loop.net^$doc
|
|
2309
|
+
||videochat-fan.com^$doc
|
|
2310
|
+
||3296cb.com^$doc
|
|
2311
|
+
||8waku-fbfb.com^$doc
|
|
2312
|
+
||mamamour.net^$doc
|
|
2313
|
+
||apr-business.sa.com^$doc
|
|
2314
|
+
||siasou.jp^$doc
|
|
2315
|
+
||2chlovers.web.fc2.com^$doc
|
|
2316
|
+
||lovez.jp^$doc
|
|
2317
|
+
||hfmarkets001.com^$all
|
|
2318
|
+
||letakgrab.com^$doc
|
|
2319
|
+
||pinskscope.life^$doc
|
|
2320
|
+
||moremorelove.net^$doc
|
|
2321
|
+
||accidentalunderground.jp^$doc
|
|
2322
|
+
||after-noon.jp^$doc
|
|
2323
|
+
||bse.bb64bb8.com^$doc
|
|
2324
|
+
||chatchu.jp^$doc
|
|
2325
|
+
||cupid-chat.net^$doc
|
|
2326
|
+
||docommo.com^$doc
|
|
2327
|
+
||doconno.com^$doc
|
|
2328
|
+
||f9ng8gb.com^$doc
|
|
2329
|
+
||fx640b4a8v2n.net^$doc
|
|
2330
|
+
||grace-pot.com^$doc
|
|
2331
|
+
||h76-hng7gvn.com^$doc
|
|
2332
|
+
||latterinformation.jp^$doc
|
|
2333
|
+
||leaf.lau-rier.com^$doc
|
|
2334
|
+
||maiwai2.jp^$doc
|
|
2335
|
+
||moon1hit.com^$doc
|
|
2336
|
+
||moonlight-ebbandflow.com^$doc
|
|
2337
|
+
||multiplelucky.jp^$doc
|
|
2338
|
+
||nanroom.net^$doc
|
|
2339
|
+
||nowtuma.net^$doc
|
|
2340
|
+
||ny-ms.jp^$doc
|
|
2341
|
+
||ownpayment.jp^$doc
|
|
2342
|
+
||p39ztyx.com^$doc
|
|
2343
|
+
||pastelism02.jpn.com^$doc
|
|
2344
|
+
||pineapplecake-yummy.com^$doc
|
|
2345
|
+
||platinum-center.com^$doc
|
|
2346
|
+
||retailaudio.jp^$doc
|
|
2347
|
+
||ssq.spofbd99.com^$doc
|
|
2348
|
+
||sss-sidejob.com^$doc
|
|
2349
|
+
||t26dmg9.com^$doc
|
|
2350
|
+
||tokuyama-kaiun.com^$doc
|
|
2351
|
+
||vy8monlf1t.com^$doc
|
|
2352
|
+
||wifekai.net^$doc
|
|
2353
|
+
||yummy-yuy.com^$doc
|
|
2354
|
+
||yummy2-yuy.com^$doc
|
|
2355
|
+
||zerocha.jp^$doc
|
|
2356
|
+
||augury-uranainoizumi.com^$doc
|
|
2357
|
+
||bexitzwfjipzs.jp^$doc
|
|
2358
|
+
||bh9jld.catchato10.com^$doc
|
|
2359
|
+
||catchato10.com^$doc
|
|
2360
|
+
||chat-search.com^$doc
|
|
2361
|
+
||fz988hnbaha.com^$doc
|
|
2362
|
+
||happy.pp99adad.com^$doc
|
|
2363
|
+
||hhh.u3se3jg3gae.com^$doc
|
|
2364
|
+
||hzalwkcjbudom.info^$doc
|
|
2365
|
+
||ii.iriiss.com^$doc
|
|
2366
|
+
||let.attract1v3.com^$doc
|
|
2367
|
+
||lmoox5.net^$doc
|
|
2368
|
+
||mchynxqpiswuj.info^$doc
|
|
2369
|
+
||mtl.metel-x-x-x.com^$doc
|
|
2370
|
+
||panlcake.net^$doc
|
|
2371
|
+
||paradise.shine-site.com^$doc
|
|
2372
|
+
||s21aabb6.com^$doc
|
|
2373
|
+
||sstt22free5.com^$doc
|
|
2374
|
+
||utg.ri64-pdmv.com^$doc
|
|
2375
|
+
||venus-uranainoizumi.com^$doc
|
|
2376
|
+
||vgwkhaujofqxe.info^$doc
|
|
2377
|
+
||whuaqdsfjktgr.info^$doc
|
|
2378
|
+
||z4e2yem9edj.com^$doc
|
|
2379
|
+
||vanillafrappuccino.jp^$doc
|
|
2380
|
+
||vegansweeets.jp^$doc
|
|
2381
|
+
||getmatch.jp^$doc
|
|
2382
|
+
||mcpoc.linenet.top^$doc
|
|
2383
|
+
||hn-mizuki.com^$doc
|
|
2384
|
+
||urara02032023.com^$doc
|
|
2385
|
+
||ang.el-mail.online^$doc
|
|
2386
|
+
||atre-frer6.com^$doc
|
|
2387
|
+
||berate-expressive.com^$doc
|
|
2388
|
+
||comcom0511.com^$doc
|
|
2389
|
+
||gloria-divination.$doc
|
|
2390
|
+
||mothersmilk.jp^$doc
|
|
2391
|
+
||otomachi.jp^$doc
|
|
2392
|
+
||smoothie-smoothie.jp^$doc
|
|
2393
|
+
||suffix-consignment.com^$doc
|
|
2394
|
+
||amazonlogistics.jp^$all
|
|
2395
|
+
||fukusenkan.com^$doc
|
|
2396
|
+
||koi-chat.net^$doc
|
|
2397
|
+
||sachikru.com^$doc
|
|
2398
|
+
||sachikru1.com^$doc
|
|
2399
|
+
||sachikru3.com^$doc
|
|
2400
|
+
||sachikru4.com^$doc
|
|
2401
|
+
||sachikru5.com^$doc
|
|
2402
|
+
||sachikru6.com^$doc
|
|
2403
|
+
||sachikru7.com^$doc
|
|
2404
|
+
||sachikru8.com^$doc
|
|
2405
|
+
||bookblack5208w.com^$doc
|
|
2406
|
+
||freest200look.com^$doc
|
|
2407
|
+
||leterthe-gese.com^$doc
|
|
2408
|
+
||off-wiloeese.com^$doc
|
|
2409
|
+
||the-style-free.info^$doc
|
|
2410
|
+
||weekenddogkeep.com^$doc
|
|
2411
|
+
||koundayori.com^$doc
|
|
2412
|
+
||second-love-love.jp^$doc
|
|
2413
|
+
||chuchu2.jp^$doc
|
|
2414
|
+
||deaiai55.com^$doc
|
|
2415
|
+
||kokocha.site^$doc
|
|
2416
|
+
||hjytu75fro0.jp^$doc
|
|
2417
|
+
||secssnetplan.jp^$doc
|
|
2418
|
+
||3-uh9cj.com^$doc
|
|
2419
|
+
||3x-c9ua.net^$doc
|
|
2420
|
+
||68a9i9w.com^$doc
|
|
2421
|
+
||988s82r.com^$doc
|
|
2422
|
+
||efzhm85.com^$doc
|
|
2423
|
+
||rhyprua.com^$doc
|
|
2424
|
+
||tui8s2e.com^$doc
|
|
2425
|
+
||emyqsvk7zw.com^$doc
|
|
2426
|
+
||evqhubkfh8.com^$doc
|
|
2427
|
+
||jinuja5zgm.com^$doc
|
|
2428
|
+
||ljqq93npbr.com^$doc
|
|
2429
|
+
||n9zxgxpdu6.com^$doc
|
|
2430
|
+
||pnw0kbzjtt.com^$doc
|
|
2431
|
+
||sdlbtwi3lr.com^$doc
|
|
2432
|
+
||tvngrq6yat.com^$doc
|
|
2433
|
+
||vjybuykaxz4.com^$doc
|
|
2434
|
+
||willgood-will.com^$doc
|
|
2435
|
+
||y2sysagetf.com^$doc
|
|
2436
|
+
||san-dast.net^$doc
|
|
2437
|
+
||dedestin0.jp^$doc
|
|
2438
|
+
||fortune-fortuna.com^$doc
|
|
2439
|
+
||legamee.jp^$doc
|
|
2440
|
+
||miraiah.jp^$doc
|
|
2441
|
+
||sen8senjya.jp^$doc
|
|
2442
|
+
||happy-matome.com^$doc
|
|
2443
|
+
||fukuroou.jp^$doc
|
|
2444
|
+
||kennsaku.jp^$doc
|
|
2445
|
+
||matchingsite.jp^$doc
|
|
2446
|
+
||for.life-thrones.com^$doc
|
|
2447
|
+
||7wbb.com^$doc
|
|
2448
|
+
||me-ru.jp^$doc
|
|
2449
|
+
||byoep.moustachespontaneous.com^$doc
|
|
2450
|
+
||categorywrench.com^$doc
|
|
2451
|
+
||cuddle.please-delight.com^$doc
|
|
2452
|
+
||elephantdevout.com^$doc
|
|
2453
|
+
||moustachespontaneous.com^$doc
|
|
2454
|
+
||waterproofvile.com^$doc
|
|
2455
|
+
||ht54s-grf.com^$doc
|
|
2456
|
+
||hyop-ed12.com^$doc
|
|
2457
|
+
||ss7-yhw0-wk.com^$doc
|
|
2458
|
+
||st.stryyy.com^$doc
|
|
2459
|
+
||w-dbl.com^$doc
|
|
2460
|
+
||recruit-gold.com^$doc
|
|
2461
|
+
||tokimake.site^$doc
|
|
2462
|
+
||tokimeku.xyz^$doc
|
|
2463
|
+
||tokimeku4569.shop^$doc
|
|
2464
|
+
||6q5c53c6sg4z9vkkpqnc.com^$doc
|
|
2465
|
+
||emoti-on.com^$doc
|
|
2466
|
+
||jinsei-undesu.com^$doc
|
|
2467
|
+
||sftqg7t9cyzjaw0b.com^$doc
|
|
2468
|
+
||spiritual-jp.com^$doc
|
|
2469
|
+
||unki-josho.com^$doc
|
|
2470
|
+
||xdpiwrx7ub.net^$doc
|
|
2471
|
+
||2022del-eats.com^$doc
|
|
2472
|
+
||cl-oud9.com^$doc
|
|
2473
|
+
||feve-r.com^$doc
|
|
2474
|
+
||ma-tching.com^$doc
|
|
2475
|
+
||mugicom.live^$doc
|
|
2476
|
+
||romanc-e.com^$doc
|
|
2477
|
+
||sns3615.com^$doc
|
|
2478
|
+
||talkthattalkllc.com^$doc
|
|
2479
|
+
||time1time.com^$doc
|
|
2480
|
+
||go-ld-li-ne.site^$doc
|
|
2481
|
+
||gold-line.click^$doc
|
|
2482
|
+
||gold-line.online^$doc
|
|
2483
|
+
||cloudmax.jp^$doc
|
|
2484
|
+
||mama-piece.com^$doc
|
|
2485
|
+
||mamakatu42.blogspot.com^$doc
|
|
2486
|
+
||princess2022.com^$doc
|
|
2487
|
+
||vivian.jp.net^$doc
|
|
2488
|
+
||cha-nce.net^$doc
|
|
2489
|
+
||mirusiru.online^$doc
|
|
2490
|
+
||mirusiru.site^$doc
|
|
2491
|
+
||mobileverify.net^$doc
|
|
2492
|
+
||grabgiftcard.net^$doc
|
|
2493
|
+
||giftcardhero.net^$doc
|
|
2494
|
+
||ewapps.top^$all
|
|
2495
|
+
||awapps.cfd^$all
|
|
2496
|
+
||awapp.store^$doc
|
|
2497
|
+
||cleansoft.online^$doc
|
|
2498
|
+
||softlab.fun^$doc
|
|
2499
|
+
||appxfree.com^$doc
|
|
2500
|
+
||appxfree.top^$doc
|
|
2501
|
+
||vbucks.buzz^$doc
|
|
2502
|
+
||vbucks.cloud^$doc
|
|
2503
|
+
||absent-pretty.net^$doc
|
|
2504
|
+
||ahmrispfewmkhbwz.com^$doc
|
|
2505
|
+
||aim-all.com^$doc
|
|
2506
|
+
||breeding-ashes.com^$doc
|
|
2507
|
+
||every0028.jp^$doc
|
|
2508
|
+
||flash0007.jp^$doc
|
|
2509
|
+
||grasshoppermirro.com^$doc
|
|
2510
|
+
||nuts.sugar1105.com^$doc
|
|
2511
|
+
||propro.promise-p-roror-452.com^$doc
|
|
2512
|
+
||right-off.com^$doc
|
|
2513
|
+
||tatuieaawtkjnxzj.com^$doc
|
|
2514
|
+
||vacuumcleanerani.com^$doc
|
|
2515
|
+
||prc.pr-e-c-i-o-us.com^$doc
|
|
2516
|
+
||vghe0-ed7-d.com^$doc
|
|
2517
|
+
||kounnomichishirube.net^$doc
|
|
2518
|
+
||lucksignpost0804.org^$doc
|
|
2519
|
+
||lightning02s.com^$doc
|
|
2520
|
+
||lightning0707.com^$doc
|
|
2521
|
+
||jkytd-rd3.com^$doc
|
|
2522
|
+
||le.tter99.com^$doc
|
|
2523
|
+
||silversex.com^$doc
|
|
2524
|
+
||flirttime.com^$doc
|
|
2525
|
+
||eyesput55.com^$doc
|
|
2526
|
+
||scene7goal3.work^$doc
|
|
2527
|
+
||all-friends0817.com^$doc
|
|
2528
|
+
||ma-rry.net^$doc
|
|
2529
|
+
||ma-rry.site^$doc
|
|
2530
|
+
||altdorfer-niklaus.com^$doc
|
|
2531
|
+
||cherish.royal-loyalty.com^$doc
|
|
2532
|
+
||eliminateabyss.com^$doc
|
|
2533
|
+
||lucky-star69.com^$doc
|
|
2534
|
+
||lucky-star8.com^$doc
|
|
2535
|
+
||tulip-tulip.net^$doc
|
|
2536
|
+
||koinik.net^$doc
|
|
2537
|
+
||ukylcim.top^$doc
|
|
2538
|
+
||shop20.cheapsalesstore2023.com^$doc
|
|
2539
|
+
||gallery-sight.com^$doc
|
|
2540
|
+
||yurizono.com^$doc
|
|
2541
|
+
||9gcpz8hu.com^$doc
|
|
2542
|
+
||bobonheur.com^$doc
|
|
2543
|
+
||cit-rine.com^$doc
|
|
2544
|
+
||ctn-ctn.com^$doc
|
|
2545
|
+
||holy-kantei.com^$doc
|
|
2546
|
+
||sk3-renew.com^$doc
|
|
2547
|
+
||unki-max.com^$doc
|
|
2548
|
+
||boost6182ll.com^$doc
|
|
2549
|
+
||eir.tdhg7ppa.com^$doc
|
|
2550
|
+
||grea-fd12dr.com^$doc
|
|
2551
|
+
||cpd.ipllo4ys.com^$doc
|
|
2552
|
+
||htjrs-fgds.com^$doc
|
|
2553
|
+
||recklessdroughtburglar.com^$doc
|
|
2554
|
+
||the-match.jp^$doc
|
|
2555
|
+
||ambition-1122.com^$doc
|
|
2556
|
+
||decision-1122.com^$doc
|
|
2557
|
+
||grateful-1122.com^$doc
|
|
2558
|
+
||intimate-1122.com^$doc
|
|
2559
|
+
||superior-1122.com^$doc
|
|
2560
|
+
||arms-1122.com^$doc
|
|
2561
|
+
||dawn-1122.com^$doc
|
|
2562
|
+
||gain-1122.com^$doc
|
|
2563
|
+
||live-1122.com^$doc
|
|
2564
|
+
||soar-1122.com^$doc
|
|
2565
|
+
||axis073236.com^$doc
|
|
2566
|
+
||gekkei-jyu-gekkei-jyu.com^$doc
|
|
2567
|
+
||gekkeijyu-gekkeijyu.com^$doc
|
|
2568
|
+
||lemonadebb.net^$doc
|
|
2569
|
+
||naruf4253090.com^$doc
|
|
2570
|
+
||ev4ev.biz^$doc
|
|
2571
|
+
||evkakuri2308.click^$doc
|
|
2572
|
+
||gtex3.com^$doc
|
|
2573
|
+
||nice.par-even.com^$doc
|
|
2574
|
+
||pr-0m.link^$doc
|
|
2575
|
+
||wa-nago-wagona.com^$doc
|
|
2576
|
+
||chi-yo-1807chiyo.com^$doc
|
|
2577
|
+
||fd-2.shop^$doc
|
|
2578
|
+
||cuddle.koi-ba-na.com^$doc
|
|
2579
|
+
||globalreward77.com^$doc
|
|
2580
|
+
||jukukoi.jp^$doc
|
|
2581
|
+
||jukukoi.me^$doc
|
|
2582
|
+
||buono2023-web.com^$doc
|
|
2583
|
+
||a3-1089115.com^$doc
|
|
2584
|
+
||cloud3-3679244.com^$doc
|
|
2585
|
+
||d3-8692227.com^$doc
|
|
2586
|
+
||ic-05lion.com^$doc
|
|
2587
|
+
||m3-8498263.com^$doc
|
|
2588
|
+
||michi-fortune.jp^$doc
|
|
2589
|
+
||miemashita.jp^$doc
|
|
2590
|
+
||p3-5723935.com^$doc
|
|
2591
|
+
||s3-8388725.com^$doc
|
|
2592
|
+
||x3-001-8103.com^$doc
|
|
2593
|
+
||x3-228-1713.com^$doc
|
|
2594
|
+
||lovely-lovely.com^$doc
|
|
2595
|
+
||shareno1wish.net^$doc
|
|
2596
|
+
||cue-find.com^$doc
|
|
2597
|
+
||d-position.com^$doc
|
|
2598
|
+
||d-position.shop^$doc
|
|
2599
|
+
||kaiunnookite.com^$doc
|
|
2600
|
+
||bs-03-6743-2266.net^$doc
|
|
2601
|
+
||love2-mail.com^$doc
|
|
2602
|
+
||gokinjoscreen.com^$doc
|
|
2603
|
+
||koun-wa.com^$doc
|
|
2604
|
+
||koto-dama-kin.com^$doc
|
|
2605
|
+
||one----talk.com^$doc
|
|
2606
|
+
||pc.deainobasyo.jp^$doc
|
|
2607
|
+
||tokimeki-2nd-life.com^$doc
|
|
2608
|
+
||ewfwetqfbhmlodz.com^$doc
|
|
2609
|
+
||wkcs.onesmbg-login.com^$doc
|
|
2610
|
+
||bs-03-6743-2266.net^$doc
|
|
2611
|
+
||love2-mail.com^$all
|
|
2612
|
+
||koto-dama-kin.com^$doc
|
|
2613
|
+
||mariage-inc.com^$doc
|
|
2614
|
+
||tokimeki-2nd-life.com^$doc
|
|
2615
|
+
||mariage-inc.com^$doc
|
|
2616
|
+
||tenmei-michibiki.com^$doc
|
|
2617
|
+
||10vekatu.jp^$doc
|
|
2618
|
+
||a-ro-ma.com^$doc
|
|
2619
|
+
||a1tai7.jp^$doc
|
|
2620
|
+
||atchao.jp^$doc
|
|
2621
|
+
||bestchat-chat.com^$doc
|
|
2622
|
+
||brs.bi09aso-yo.xyz^$doc
|
|
2623
|
+
||brs.vacat81-best.tokyo^$doc
|
|
2624
|
+
||chu-chu.jp^$doc
|
|
2625
|
+
||deai-labo.site^$doc
|
|
2626
|
+
||enenkatukatumail.com^$doc
|
|
2627
|
+
||enjoylife2001.net^$doc
|
|
2628
|
+
||ffr548tyfhe.jp^$doc
|
|
2629
|
+
||fure-i.site^$doc
|
|
2630
|
+
||k0k0cha.link^$doc
|
|
2631
|
+
||ir0d0r1.jp^$doc
|
|
2632
|
+
||lovelyhappy.jp^$doc
|
|
2633
|
+
||lovemelo.net^$doc
|
|
2634
|
+
||ma-t-chy.link^$doc
|
|
2635
|
+
||maiwa12.jp^$doc
|
|
2636
|
+
||mat-chy.site^$doc
|
|
2637
|
+
||me08mo.com^$doc
|
|
2638
|
+
||media-matchinggo.com^$doc
|
|
2639
|
+
||meltiest.jp^$doc
|
|
2640
|
+
||meltylove.jp^$doc
|
|
2641
|
+
||mem44.com^$doc
|
|
2642
|
+
||merukore.jp^$doc
|
|
2643
|
+
||moremoremail.net^$doc
|
|
2644
|
+
||p-pure.jp^$doc
|
|
2645
|
+
||p0cket1ove.jp^$doc
|
|
2646
|
+
||p0rte.site^$doc
|
|
2647
|
+
||pairife.jp^$doc
|
|
2648
|
+
||platinumpla2023.com^$doc
|
|
2649
|
+
||riarialuvluv2023.com^$doc
|
|
2650
|
+
||romance-time.net^$doc
|
|
2651
|
+
||sez-pr.com^$doc
|
|
2652
|
+
||soklove.net^$doc
|
|
2653
|
+
||sugulove777.com^$doc
|
|
2654
|
+
||ta0dal0ve.com/^$doc
|
|
2655
|
+
||ta1kcall.site^$doc
|
|
2656
|
+
||tada-love.jp^$doc
|
|
2657
|
+
||tokimekitaine.net^$doc
|
|
2658
|
+
||tokimekimaildesu.net^$doc
|
|
2659
|
+
||tokumeichat135.net^$doc
|
|
2660
|
+
||tokumeichatmail.net^$doc
|
|
2661
|
+
||tsumatsuma.xyz^$doc
|
|
2662
|
+
||olive-ft.jp^$doc
|
|
2663
|
+
||fortuna-destiny.com^$doc
|
|
2664
|
+
||fountain-unmei.com^$doc
|
|
2665
|
+
||happylife-10uanai.com^$doc
|
|
2666
|
+
||holy-12seizaholy.com^$doc
|
|
2667
|
+
||shiawasenokotae.com^$doc
|
|
2668
|
+
||super-spfortune.com^$doc
|
|
2669
|
+
||uranai-fulfilledfuture.com^$doc
|
|
2670
|
+
||welcome-happyroad.com^$doc
|
|
2671
|
+
||soft-pro.site^$all
|
|
2672
|
+
||exp-pc.com^$all
|
|
2673
|
+
||apkmirror.co^$all
|
|
2674
|
+
||webogram.org^$all
|
|
2675
|
+
||webogram.ru^$all
|
|
2676
|
+
||xn--80affa3aj0al.xn--80asehdb^$all
|
|
2677
|
+
||telegr.am/user_mgt/login$all
|
|
2678
|
+
||tgram.ru^$all
|
|
2679
|
+
||telegramm.site^$all
|
|
2680
|
+
||web-telegram.net^$all
|
|
2681
|
+
||pjljo54uk.click^$all
|
|
2682
|
+
||v1asy4ncr.click^$all
|
|
2683
|
+
||p5tvhrlw30h.click^$all
|
|
2684
|
+
||8narwi309.click^$all
|
|
2685
|
+
||sbjjzdwqg41ps.click^$all
|
|
2686
|
+
||9bghqk3avg2gnh.click^$all
|
|
2687
|
+
||6t09fag307ep.click^$all
|
|
2688
|
+
||zjzxtmhcldsb.click^$all
|
|
2689
|
+
||keychauoic.click^$all
|
|
2690
|
+
||80fvj17ws14n.click^$all
|
|
2691
|
+
||khw6g09fx28k.cfd^$all
|
|
2692
|
+
||49gw5gonj143k.click^$all
|
|
2693
|
+
||djxd2ox30l7.click^$all
|
|
2694
|
+
||2ajsvd12.com^$all
|
|
2695
|
+
||vgfrrtc.click^$all
|
|
2696
|
+
||vablecable.click^$all
|
|
2697
|
+
||rosterfile4u.click^$all
|
|
2698
|
+
.click/*?s=*&g=*&q=$script,3p
|
|
2699
|
+
.click/?h=*&user=$script,3p
|
|
2700
|
+
.click/?user=*&h=$script,3p
|
|
2701
|
+
.click/*/?partner=*&pg=$script,3p
|
|
2702
|
+
.xyz/*?s=*&g=*&q=$script,3p
|
|
2703
|
+
.xyz/?h=*&user=45$script,3p
|
|
2704
|
+
.xyz/*/?partner=*&pg=$script,3p
|
|
2705
|
+
.cfd/?h=*&user=$script,3p
|
|
2706
|
+
.cfd/?aD*HlwZT1jJnRtcD01JmFkY29kZT0x$script,3p
|
|
2707
|
+
.one/?h=*&user=$script,3p
|
|
2708
|
+
.online/?h=*&user=$script,3p
|
|
2709
|
+
.pro/?h=*&user=$script,3p
|
|
2710
|
+
||xfiley.me^$all
|
|
2711
|
+
!#if !env_mobile
|
|
2712
|
+
||n.fcd.su^$all
|
|
2713
|
+
!#endif
|
|
2714
|
+
||ru-torproject.ru^$all
|
|
2715
|
+
||anapatformacion.org/modules/file/tor/tor-browser.zip^$all
|
|
2716
|
+
/^https:\/\/[a-z]+\.com\/away\.php\?url=[%0-9A-z]{100,}$/$doc
|
|
2717
|
+
||a-new86.com^$all
|
|
2718
|
+
||ane102.net^$all
|
|
2719
|
+
||honey8.love^$all
|
|
2720
|
+
||honey888.love^$all
|
|
2721
|
+
||ima55notice.biz^$all
|
|
2722
|
+
||infozoomplus.biz^$all
|
|
2723
|
+
||koi2ru.com^$all
|
|
2724
|
+
||likechat33.net^$all
|
|
2725
|
+
||likechat33call.net^$all
|
|
2726
|
+
||pair55.net^$all
|
|
2727
|
+
||pair55call.net^$all
|
|
2728
|
+
||room2021.net^$all
|
|
2729
|
+
||roomoshirase.net^$all
|
|
2730
|
+
||smore91.net^$all
|
|
2731
|
+
||som419.net^$all
|
|
2732
|
+
||touchoshirase.net^$all
|
|
2733
|
+
||touchtacchi.net^$all
|
|
2734
|
+
||wsws1234.net^$all
|
|
2735
|
+
||wswsnews.net^$all
|
|
2736
|
+
||s3.amazonaws.com/extpro/speed4.html$all
|
|
2737
|
+
||imgfarm.com/images/dlp2/prod$3p
|
|
2738
|
+
||myway.com^$all
|
|
2739
|
+
/anemone-*.min.js$script,1p
|
|
2740
|
+
||adblockers.b-cdn.net^$all
|
|
2741
|
+
||pleasetrack.com^$all
|
|
2742
|
+
||tor-browser-rus.ru^$all
|
|
2743
|
+
! techsupport scam
|
|
2744
|
+
/?{BV_SRCID}&$doc
|
|
2745
|
+
/werrx01/^$doc
|
|
2746
|
+
/merrx01/^$doc
|
|
2747
|
+
||ondigitalocean.app/*^phone=+1-$doc
|
|
2748
|
+
||flexedfitt.com^$all
|
|
2749
|
+
.online/*/eeeekayresrsammicraaajkaschhoilsebadhiyakuchtanahiaayaajturuionmeebbat/$doc
|
|
2750
|
+
||plesk.page/*?phone=$doc
|
|
2751
|
+
||satttawishonemottorecepi.online^$all
|
|
2752
|
+
||s3.ap-southeast-1.amazonaws.com/99991.675.7799.8989.2699.8899.0909.is.access.denied.us/honda+69/seahorsendigitalocean.app/0h0o0n0d0a0/index+(7).html$all
|
|
2753
|
+
/Win0xixm07/?phone=$doc
|
|
2754
|
+
/DanBEr000CH0Er0Security07/index.html$doc
|
|
2755
|
+
||sanshuni-creeto-senfunamaki.online^$all
|
|
2756
|
+
/asdfghjkl.tech/index.html$doc
|
|
2757
|
+
/mooncars/rover/chasra*/index.php$doc
|
|
2758
|
+
/systemerror-win-chx/?$doc
|
|
2759
|
+
/systemerror-win-chx1/?$doc
|
|
2760
|
+
/W*ity0*00Er00*/index.$doc
|
|
2761
|
+
||s3.ap-northeast-1.amazonaws.com/tedex.com/*/index.html$all
|
|
2762
|
+
/^https:\/\/(?:www\.)?[a-z]{8,15}\.[a-z]{3}\/V1\/$/$document,domain=one|top,match-case
|
|
2763
|
+
||smarttvnew.vercel.app^$all
|
|
2764
|
+
/systemerror-mac/?$doc
|
|
2765
|
+
/Win0SecurityEr0CH0700Err0rSt/index.html$doc
|
|
2766
|
+
/werrx01/index.html$doc
|
|
2767
|
+
||activexsportswear.com^$all
|
|
2768
|
+
||besttreasurecoastroofing.com^$all
|
|
2769
|
+
||eharmonysingle.online^$all
|
|
2770
|
+
||errorordufhwe.s3.ap-south-1.amazonaws.com^$all
|
|
2771
|
+
||microsoftsupportservices.com^$all
|
|
2772
|
+
||teszoom.com^$all
|
|
2773
|
+
||tiffanyandtoke.com^$all
|
|
2774
|
+
||yewojoshi.shop^$all
|
|
2775
|
+
||s3.ap-northeast-2.amazonaws.com/%*!!%*/index.html$doc
|
|
2776
|
+
||s3.amazonaws.com/securityfotrus.1.13/index.html$all
|
|
2777
|
+
||s3.eu-west-2.amazonaws.com/675.88.u6.8878/index.html$all
|
|
2778
|
+
||s3.us-west-1.amazonaws.com/security.uni.firewall.$all
|
|
2779
|
+
! apparently hacked and turned to a joke techsupport scam
|
|
2780
|
+
||westernbible.edu^$doc
|
|
2781
|
+
/Win00Security07/index.html$document
|
|
2782
|
+
||varchardetection777.site^$all
|
|
2783
|
+
||xngqoc.com^$all
|
|
2784
|
+
/Er0Wind0fsd0Security087/index.html$doc
|
|
2785
|
+
||chuberanetto.tech^$all
|
|
2786
|
+
||starglaxyheritez.tech^$all
|
|
2787
|
+
||websafety.online^$all
|
|
2788
|
+
||chuibesumeru.shop^$all
|
|
2789
|
+
||windwserror.com^$all
|
|
2790
|
+
||comeon-date.online^$all
|
|
2791
|
+
||popts.site^$all
|
|
2792
|
+
||hotel-samal.com^$all
|
|
2793
|
+
||cnctddot.com^$all
|
|
2794
|
+
||woocommerce-sagepayments.com^$all
|
|
2795
|
+
||mct-niger.com^$all
|
|
2796
|
+
||julitaczerwinska.pl^$all
|
|
2797
|
+
||klinikmrc.com^$all
|
|
2798
|
+
||govimpot.com^$all
|
|
2799
|
+
||premiumexpertclass87.xyz^$all
|
|
2800
|
+
||pressanddresses.com^$all
|
|
2801
|
+
||hrmntrimagukeazctesto.shop^$all
|
|
2802
|
+
||stb-media.xyz^$all
|
|
2803
|
+
||compass-holding.com^$all
|
|
2804
|
+
||tankien.land^$all
|
|
2805
|
+
||pguilford.com^$all
|
|
2806
|
+
||theweddingmahotsav.com^$all
|
|
2807
|
+
||xac2gjx.autos^$all
|
|
2808
|
+
||detailsreceipts.com^$all
|
|
2809
|
+
||hodllane.com^$all
|
|
2810
|
+
||hiddenamonghearts.com^$all
|
|
2811
|
+
||stowesupperclub.com^$all
|
|
2812
|
+
||185.161.248.253^$all
|
|
2813
|
+
||auditedmicros.website^$all
|
|
2814
|
+
||checkedservices.website^$all
|
|
2815
|
+
||tumhiho.site^$all
|
|
2816
|
+
||chutkeliye.online^$all
|
|
2817
|
+
||golovanov.net^$all
|
|
2818
|
+
||kimarikasta.online^$all
|
|
2819
|
+
||lucasmrahman.xyz^$all
|
|
2820
|
+
||odarimasta.online^$all
|
|
2821
|
+
||processprivate.website^$all
|
|
2822
|
+
||tobyaburton.xyz^$all
|
|
2823
|
+
||votuporn.cfd^$all
|
|
2824
|
+
||yaravoyara.online^$all
|
|
2825
|
+
||microagent.site^$all
|
|
2826
|
+
||165-227-173-120.plesk.page^$all
|
|
2827
|
+
||horporn.cfd^$all
|
|
2828
|
+
/^https:\/\/[-a-z]{12,20}\.[a-z]{3,7}\/[-0-9A-Za-z]{60,}\d{4}\/001\//$doc,domain=site|top|website
|
|
2829
|
+
/^https:\/\/[-a-z]{12,20}\.[a-z]{3,7}\/[-0-9A-Za-z]{60,}\d{4}\/004\//$doc,domain=site|top|website
|
|
2830
|
+
||dare2life.click^$all
|
|
2831
|
+
||pushlandings.b-cdn.net^$all
|
|
2832
|
+
||ssupp2.site^$all
|
|
2833
|
+
||webaudhar.online^$all
|
|
2834
|
+
||asian-maturedates.click^$all
|
|
2835
|
+
||flextd.shop^$all
|
|
2836
|
+
||pirocarsrepo.site^$all
|
|
2837
|
+
||64-226-126-114.plesk.page^$all
|
|
2838
|
+
||boomdates.online^$all
|
|
2839
|
+
||erroarwasuppoto.world^$all
|
|
2840
|
+
||fastndio.s3.eu-central-1.amazonaws.com^$all
|
|
2841
|
+
||ikiped.online^$all
|
|
2842
|
+
||mockgopickers.com^$all
|
|
2843
|
+
||pub-77106c9273be4f3fbec6b6d6c3c51b7f.r2.dev^$all
|
|
2844
|
+
||hosterunozxxxna.shop^$all
|
|
2845
|
+
||dbslfqowejd.b-cdn.net^$all
|
|
2846
|
+
||ghrthryh.b-cdn.net^$all
|
|
2847
|
+
||sok-rev.b-cdn.net^$all
|
|
2848
|
+
||antisoftjapan.site^$all
|
|
2849
|
+
||erroarwasuppoto.life^$all
|
|
2850
|
+
||updatemybrowser.website^$all
|
|
2851
|
+
||saludoads.com^$all
|
|
2852
|
+
||janganhackya.com^$all
|
|
2853
|
+
||jantalabh.online^$all
|
|
2854
|
+
||viewmerit.info^$all
|
|
2855
|
+
||blexad.shop^$all
|
|
2856
|
+
||xoty55.cfd^$all
|
|
2857
|
+
||dumbabd.online^$all
|
|
2858
|
+
||alewis.sbs^$all
|
|
2859
|
+
||edeyk.sbs^$all
|
|
2860
|
+
||edfzh.sbs^$all
|
|
2861
|
+
||tanhes.sbs^$all
|
|
2862
|
+
||tansxv.sbs^$all
|
|
2863
|
+
||tanvoa.sbs^$all
|
|
2864
|
+
||tanwmv.sbs^$all
|
|
2865
|
+
||kosbqn.sbs^$all
|
|
2866
|
+
||taniqj.sbs^$all
|
|
2867
|
+
||ahmxgv.sbs^$all
|
|
2868
|
+
||edluv.sbs^$all
|
|
2869
|
+
||koskdd.sbs^$all
|
|
2870
|
+
||liqftt.sbs^$all
|
|
2871
|
+
/^https:\/\/[a-z]{6}\.shop\/ed\/$/$doc,domain=shop
|
|
2872
|
+
||s3.ap-northeast-1.amazonaws.com/ongoing.com/aanoitmessure/index.html^$all
|
|
2873
|
+
||foodhereandnow.com^$all
|
|
2874
|
+
||setkuttina.pages.dev^$all
|
|
2875
|
+
||liq27qbf.monster^$all
|
|
2876
|
+
||certificate-certificate.gettrials.com^$all
|
|
2877
|
+
/^https:\/\/(?:black|white)\d{1,2}\.zzz\.com\.ua\/(?:win|mac)\//$all
|
|
2878
|
+
||vasafreight.com/ajax.php?
|
|
2879
|
+
||kos8sceu.pics^$all
|
|
2880
|
+
||thin-skinned-cost.000webhostapp.com^$all
|
|
2881
|
+
||boring-tesla.149-102-231-176.plesk.page^$all
|
|
2882
|
+
||happy-diwali-sabhiko-shubhkamneyen.b-cdn.net^$all
|
|
2883
|
+
||qwudbhasdwq9h.sa.com^$all
|
|
2884
|
+
||soramabola.online^$all
|
|
2885
|
+
/^https:\/\/[0-9a-z]{14,16}\.azureedge\.net\/\d{4}\//$doc
|
|
2886
|
+
||fcukxxx.com^$all
|
|
2887
|
+
||xbasugigqiuegiwqdbsx.s3.ap-northeast-1.amazonaws.com^$all
|
|
2888
|
+
||popworldservice.com^$all
|
|
2889
|
+
||perutzxrqe.ru.com^$all
|
|
2890
|
+
||newpappernews4.ru.com^$all
|
|
2891
|
+
||qwudbhasdwq8h.sa.com^$all
|
|
2892
|
+
||gateway.pinata.cloud^$3p
|
|
2893
|
+
||japanonlinebroadcast.live^$all
|
|
2894
|
+
||crackedpc.org^$all
|
|
2895
|
+
||cracksway.com^$all
|
|
2896
|
+
||123moviesgo.ga^$all
|
|
2897
|
+
||gamingnewsanalyst.com^$all
|
|
2898
|
+
||gamingdebates.com^$all
|
|
2899
|
+
||bonzi.link^$all
|
|
2900
|
+
||bestgames-2022.com^$all
|
|
2901
|
+
||videoadblocker.pro^$all
|
|
2902
|
+
||pccdirect.site^$all
|
|
2903
|
+
||templatesearch.org^$all
|
|
2904
|
+
||f-i-n-d.onlyfuns.win^$all
|
|
2905
|
+
||search-journal.onlyfuns.win^$all
|
|
2906
|
+
||ftx.onlyfuns.win^$all
|
|
2907
|
+
||starssp.top^$all
|
|
2908
|
+
||adultpics.wiki^$all
|
|
2909
|
+
||gamefabrique.com^$all
|
|
2910
|
+
||d2r3dgsh5nr4kg.cloudfront.net/installer/$all
|
|
2911
|
+
||skytils.net^$all
|
|
2912
|
+
||skyblockmaniacs.net^$all
|
|
2913
|
+
||fragbots.net^$all
|
|
2914
|
+
||hard-configurator.com^$all
|
|
2915
|
+
||filmshngjbzix.blogspot.com^
|
|
2916
|
+
||mopiez.com^
|
|
2917
|
+
||goglel.com^$all
|
|
2918
|
+
||easylist.club^$all
|
|
2919
|
+
||roundyearfun.org^$all
|
|
2920
|
+
||roundyearfun.com^$all
|
|
2921
|
+
||anyplacehere.me^$all
|
|
2922
|
+
||funaroundy.click^$all
|
|
2923
|
+
||anyplacehere.live^$all
|
|
2924
|
+
||funtwitter.games^$all
|
|
2925
|
+
||twitter-circle.com^$all
|
|
2926
|
+
||funroundy.click^$all
|
|
2927
|
+
||twitterfun.games^$all
|
|
2928
|
+
||funxgames.site^$all
|
|
2929
|
+
||funroundy.online^$all
|
|
2930
|
+
||funxgames.me^$all
|
|
2931
|
+
||anyplacehere.store^$all
|
|
2932
|
+
||bestextensionegde.com^$all
|
|
2933
|
+
||anglebank.space^$all
|
|
2934
|
+
.com/api/users?token=*&uuid=&pii=&in=false^$doc
|
|
2935
|
+
||asdmcm.com^$all
|
|
2936
|
+
.com/bot-captcha-1?h=$doc
|
|
2937
|
+
/^https:\/\/[a-z]{5,7}\.[0-9a-z]{12}\.top\/[0-9a-f]{32}\/[0-9-a-f]{32}\/$/$doc,match-case,domain=top
|
|
2938
|
+
/\/[0-9a-f]{32}\/maq\/$/$doc,match-case,domain=com|top
|
|
2939
|
+
/antivirus/main/cleaner-default/*$doc
|
|
2940
|
+
! Copycat and fake sites
|
|
2941
|
+
! FitGirl Repacks - Official site: fitgirl-repacks.site
|
|
2942
|
+
||fitgirl-repacks.*^$all,domain=~fitgirl-repacks.site,to=~fitgirl-repacks.site
|
|
2943
|
+
||fitgirl-repack.*^$all,domain=~fitgirl-repacks.site
|
|
2944
|
+
||fitgirlrepacks.*^$all,domain=~fitgirl-repacks.site
|
|
2945
|
+
||fitgirlrepack.*^$all,domain=~fitgirl-repacks.site
|
|
2946
|
+
||fitgirls-repack.*^$all,domain=~fitgirl-repacks.site
|
|
2947
|
+
||fitgirl-repacks-site.org^$doc,domain=~fitgirl-repacks.site
|
|
2948
|
+
||fitgirlrepacksite.com^$all,domain=~fitgirl-repacks.site
|
|
2949
|
+
||fitgirl.cc^$all,domain=~fitgirl-repacks.site
|
|
2950
|
+
! Magisk manager - Official site: https://github.com/topjohnwu/Magisk
|
|
2951
|
+
||magiskmanager.com^$all
|
|
2952
|
+
||magisk.me^$all
|
|
2953
|
+
||magiskcn.com^$all
|
|
2954
|
+
||magiskapp.com^$all
|
|
2955
|
+
||magiskroot.com^$all
|
|
2956
|
+
||magiskroot.net^$all
|
|
2957
|
+
||magisks.com^$all
|
|
2958
|
+
||themagisk.com^$all
|
|
2959
|
+
||magiskzip.net^$all
|
|
2960
|
+
||magiskmanagerroot.com^$all
|
|
2961
|
+
||magisk.download^$all
|
|
2962
|
+
||magiskmanager.com^$all
|
|
2963
|
+
||magisk.info^$all
|
|
2964
|
+
! LibreTube - Official site: libretube.dev
|
|
2965
|
+
||libretube.*^$all,domain=~libretube.dev,to=~libretube.dev
|
|
2966
|
+
||libretubeapk.com^$all,domain=~libretube.dev
|
|
2967
|
+
! ReVanced - Official site: revanced.app
|
|
2968
|
+
||revanced.*^$all,from=~revanced.app,to=~revanced.app
|
|
2969
|
+
||revancedapk.*^$all,domain=~revanced.app
|
|
2970
|
+
||revancedapp.*^$all,domain=~revanced.app
|
|
2971
|
+
||youtubevanced.*^$all,domain=~revanced.app
|
|
2972
|
+
||youtuberevanced.*^$all,domain=~revanced.app
|
|
2973
|
+
||re-vanced.com^$all,domain=~revanced.app
|
|
2974
|
+
||revancedio.com^$all,domain=~revanced.app
|
|
2975
|
+
||revanceddl.com^$all,domain=~revanced.app
|
|
2976
|
+
||revancedapp.net^$all,domain=~revanced.app
|
|
2977
|
+
||revancedmusic.com^$all,domain=~revanced.app
|
|
2978
|
+
||revancedyoutube.org^$all,domain=~revanced.app
|
|
2979
|
+
||revancedextended.*^$all,domain=~revanced.app
|
|
2980
|
+
||ytrevanced.com^$all,domain=~revanced.app
|
|
2981
|
+
||tuberevanced.com^$all,domain=~revanced.app
|
|
2982
|
+
||vanced-official.com^$all,domain=~revanced.app
|
|
2983
|
+
||vanced.pro^$all,domain=~revanced.app
|
|
2984
|
+
||vancedmanager.com^$all,domain=~revanced.app
|
|
2985
|
+
! LuckyPatcher - Official site: luckypatchers.com
|
|
2986
|
+
||luckypatchers.net^$all,domain=~luckypatchers.com
|
|
2987
|
+
||luckypatcherwin.com^$all,domain=~luckypatchers.com
|
|
2988
|
+
! Balena Etcher - Official site: etcher.balena.io
|
|
2989
|
+
||etcher.net^$all,domain=~etcher.balena.io
|
|
2990
|
+
||etcher.download^$all,domain=~etcher.balena.io
|
|
2991
|
+
||balenaetcher.*^$all,domain=~etcher.balena.io
|
|
2992
|
+
||balena-etcher.com^$all,domain=~etcher.balena.io
|
|
2993
|
+
! Vencord - Official site: vencord.dev
|
|
2994
|
+
||vencord.app^$all,domain=~vencord.dev
|
|
2995
|
+
! phishing https://www.virustotal.com/gui/url/8521a1e5b4269111fb1e98f2142739dad1d6fb42ddf5198597c68abfea395f7f/detection
|
|
2996
|
+
||reink2.top^
|
|
2997
|
+
||86pmafno21mst.com^$all
|
|
2998
|
+
||akyr3h9x5mb.com^$all
|
|
2999
|
+
||tiger.qnews.media^$3p
|
|
3000
|
+
||imbolexabc.top^$all
|
|
3001
|
+
||s8bet.com^$doc
|
|
3002
|
+
/\.br\/(?:[a-z]{4,8}\/){1,2}\?(?:app|patt|videos?)=\S+\.shtml$/$doc,match-case,domain=gov.br
|
|
3003
|
+
/\.br/[a-z]{2,4}/[0-9a-z]{5}\.html$/$doc,match-case,domain=www.paranhos.ms.gov.br
|
|
3004
|
+
||7r51g.bugre.mg.gov.br/qfb74.html$doc
|
|
3005
|
+
||camarauchoa.sp.gov.br/video/10*.html$doc
|
|
3006
|
+
||central156.osasco.sp.gov.br/video/video_$doc
|
|
3007
|
+
||crasp.gov.br/poker*.html$doc
|
|
3008
|
+
||cruzeiro.rs.gov.br/uploads/tinymce/files/files/Nova/video_$doc
|
|
3009
|
+
||diamantedonorte.pr.gov.br/slot/addressrjz-xtipv9qew.html$doc
|
|
3010
|
+
||paranhos.ms.gov.br/ios/waykls/$doc
|
|
3011
|
+
||ssp.sp.gov.br/ead/*/video/video_$doc
|
|
3012
|
+
cmpa.mg.gov.br##+js(noeval-if, p=p.replace)
|
|
3013
|
+
cambe.pr.gov.br,paranhos.ms.gov.br##^script[language][type]:has-text(window.location.href)
|
|
3014
|
+
7r51g.bugre.mg.gov.br,c0c9d.cmi.rj.gov.br,cambe.pr.gov.br##^responseheader(location)
|
|
3015
|
+
||azure.z97z.com/go.html$doc
|
|
3016
|
+
||br.zmdesf.cn/br.js
|
|
3017
|
+
||js.eventbr.xyz/vip/crazy.js
|
|
3018
|
+
||sites.uft.edu.br/topama/news.php$doc
|
|
3019
|
+
||pmf.sc.gov.br/arquivos/br.php
|
|
3020
|
+
||070880.com/br.js
|
|
3021
|
+
||cutterbijes.com^$all
|
|
3022
|
+
||dhotelzao.com^$all
|
|
3023
|
+
||tamilislamgate.com^$all
|
|
3024
|
+
||adblock1.com^$all
|
|
3025
|
+
||newupdatesnow.com^$all
|
|
3026
|
+
||thefinanceadvice.com^$all
|
|
3027
|
+
||fralstamp-genglyric.icu^$all
|
|
3028
|
+
||ilil.in^$all
|
|
3029
|
+
||ruiukp.top^$all
|
|
3030
|
+
||ets2.gr^$all
|
|
3031
|
+
! Cryptocurrency MEV bot scam
|
|
3032
|
+
||unitradingbot.com^$all
|
|
3033
|
+
||unitradingtool.info^$all
|