@browserless.io/browserless 2.25.0-beta-2 → 2.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +43 -3
- package/README.md +4 -5
- package/build/browserless.js +3 -1
- package/build/browsers/browsers.cdp.d.ts +3 -0
- package/build/browsers/browsers.cdp.js +4 -1
- package/build/browsers/browsers.playwright.d.ts +4 -0
- package/build/browsers/browsers.playwright.js +11 -2
- package/build/browsers/index.js +4 -3
- package/build/http.d.ts +9 -0
- package/build/http.js +9 -0
- package/build/routes/chrome/http/content.post.body.json +8 -8
- package/build/routes/chrome/http/pdf.post.body.json +8 -8
- package/build/routes/chrome/http/scrape.post.body.json +8 -8
- package/build/routes/chrome/http/screenshot.post.body.json +8 -8
- package/build/routes/chrome/tests/kill-sessions.spec.js +1 -1
- package/build/routes/chromium/http/content.post.body.json +8 -8
- package/build/routes/chromium/http/pdf.post.body.json +8 -8
- package/build/routes/chromium/http/scrape.post.body.json +8 -8
- package/build/routes/chromium/http/screenshot.post.body.json +8 -8
- package/build/routes/chromium/tests/kill-sessions.spec.js +1 -1
- package/build/routes/edge/http/content.post.body.json +579 -0
- package/build/routes/edge/http/content.post.d.ts +8 -0
- package/build/routes/edge/http/content.post.js +7 -0
- package/build/routes/edge/http/content.post.query.json +183 -0
- package/build/routes/edge/http/content.post.response.json +5 -0
- package/build/routes/edge/http/download.post.body.json +32 -0
- package/build/routes/edge/http/download.post.d.ts +8 -0
- package/build/routes/edge/http/download.post.js +7 -0
- package/build/routes/edge/http/download.post.query.json +120 -0
- package/build/routes/edge/http/download.post.response.json +4 -0
- package/build/routes/edge/http/function.post.body.json +32 -0
- package/build/routes/edge/http/function.post.d.ts +8 -0
- package/build/routes/edge/http/function.post.js +7 -0
- package/build/routes/edge/http/function.post.query.json +120 -0
- package/build/routes/edge/http/function.post.response.json +4 -0
- package/build/routes/edge/http/json-list.get.d.ts +5 -0
- package/build/routes/edge/http/json-list.get.js +5 -0
- package/build/routes/edge/http/json-list.get.response.json +52 -0
- package/build/routes/edge/http/json-new.put.d.ts +5 -0
- package/build/routes/edge/http/json-new.put.js +5 -0
- package/build/routes/edge/http/json-new.put.response.json +44 -0
- package/build/routes/edge/http/json-protocol.get.d.ts +5 -0
- package/build/routes/edge/http/json-protocol.get.js +5 -0
- package/build/routes/edge/http/json-protocol.get.response.json +6 -0
- package/build/routes/edge/http/json-version.get.d.ts +5 -0
- package/build/routes/edge/http/json-version.get.js +5 -0
- package/build/routes/edge/http/json-version.get.response.json +44 -0
- package/build/routes/edge/http/pdf.post.body.json +724 -0
- package/build/routes/edge/http/pdf.post.d.ts +8 -0
- package/build/routes/edge/http/pdf.post.js +7 -0
- package/build/routes/edge/http/pdf.post.query.json +120 -0
- package/build/routes/edge/http/pdf.post.response.json +5 -0
- package/build/routes/edge/http/performance.post.body.json +26 -0
- package/build/routes/edge/http/performance.post.d.ts +8 -0
- package/build/routes/edge/http/performance.post.js +7 -0
- package/build/routes/edge/http/performance.post.query.json +120 -0
- package/build/routes/edge/http/performance.post.response.json +7 -0
- package/build/routes/edge/http/scrape.post.body.json +626 -0
- package/build/routes/edge/http/scrape.post.d.ts +8 -0
- package/build/routes/edge/http/scrape.post.js +7 -0
- package/build/routes/edge/http/scrape.post.query.json +183 -0
- package/build/routes/edge/http/scrape.post.response.json +334 -0
- package/build/routes/edge/http/screenshot.post.body.json +669 -0
- package/build/routes/edge/http/screenshot.post.d.ts +8 -0
- package/build/routes/edge/http/screenshot.post.js +7 -0
- package/build/routes/edge/http/screenshot.post.query.json +120 -0
- package/build/routes/edge/http/screenshot.post.response.json +5 -0
- package/build/routes/edge/tests/content.spec.d.ts +1 -0
- package/build/routes/edge/tests/content.spec.js +312 -0
- package/build/routes/edge/tests/download.spec.d.ts +1 -0
- package/build/routes/edge/tests/download.spec.js +67 -0
- package/build/routes/edge/tests/function.spec.d.ts +1 -0
- package/build/routes/edge/tests/function.spec.js +277 -0
- package/build/routes/edge/tests/json-version.spec.d.ts +1 -0
- package/build/routes/edge/tests/json-version.spec.js +37 -0
- package/build/routes/edge/tests/kill-sessions.spec.d.ts +1 -0
- package/build/routes/edge/tests/kill-sessions.spec.js +80 -0
- package/build/routes/edge/tests/page-websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/page-websocket.spec.js +97 -0
- package/build/routes/edge/tests/pdf.spec.d.ts +1 -0
- package/build/routes/edge/tests/pdf.spec.js +345 -0
- package/build/routes/edge/tests/performance.spec.d.ts +1 -0
- package/build/routes/edge/tests/performance.spec.js +124 -0
- package/build/routes/edge/tests/scrape.spec.d.ts +1 -0
- package/build/routes/edge/tests/scrape.spec.js +354 -0
- package/build/routes/edge/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/edge/tests/screenshot.spec.js +339 -0
- package/build/routes/edge/tests/websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/websocket.spec.js +384 -0
- package/build/routes/edge/ws/browser.d.ts +7 -0
- package/build/routes/edge/ws/browser.js +6 -0
- package/build/routes/edge/ws/browser.query.json +120 -0
- package/build/routes/edge/ws/cdp.d.ts +8 -0
- package/build/routes/edge/ws/cdp.js +7 -0
- package/build/routes/edge/ws/cdp.query.json +120 -0
- package/build/routes/edge/ws/page.d.ts +8 -0
- package/build/routes/edge/ws/page.js +7 -0
- package/build/routes/edge/ws/page.query.json +120 -0
- package/build/routes/edge/ws/playwright.d.ts +8 -0
- package/build/routes/edge/ws/playwright.js +7 -0
- package/build/routes/edge/ws/playwright.query.json +100 -0
- package/build/routes/firefox/tests/kill-sessions.spec.js +1 -1
- package/build/routes/management/http/meta.get.js +3 -1
- package/build/routes/webkit/tests/kill-sessions.spec.js +1 -1
- package/build/sdk-utils.js +1 -1
- package/build/shared/scrape.http.js +2 -2
- package/build/types.d.ts +32 -0
- package/build/types.js +18 -0
- package/build/utils.d.ts +1 -0
- package/build/utils.js +16 -2
- package/docker/chrome/Dockerfile +14 -14
- package/docker/chromium/Dockerfile +14 -14
- package/docker/edge/.dockerignore +16 -0
- package/docker/edge/Dockerfile +43 -0
- package/docker/firefox/Dockerfile +14 -14
- package/docker/multi/Dockerfile +18 -18
- package/docker/sdk/Dockerfile +10 -0
- package/extensions/ublock/_locales/ar/messages.json +3 -3
- package/extensions/ublock/_locales/bg/messages.json +1 -1
- package/extensions/ublock/_locales/br_FR/messages.json +2 -2
- package/extensions/ublock/_locales/cy/messages.json +11 -11
- package/extensions/ublock/_locales/el/messages.json +2 -2
- package/extensions/ublock/_locales/hu/messages.json +1 -1
- package/extensions/ublock/_locales/id/messages.json +1 -1
- package/extensions/ublock/_locales/lv/messages.json +4 -4
- package/extensions/ublock/_locales/mk/messages.json +130 -130
- package/extensions/ublock/_locales/oc/messages.json +1 -1
- package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
- package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
- package/extensions/ublock/_locales/si/messages.json +100 -100
- package/extensions/ublock/_locales/sr/messages.json +4 -4
- package/extensions/ublock/_locales/vi/messages.json +19 -19
- package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
- package/extensions/ublock/assets/assets.json +33 -29
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
- package/extensions/ublock/assets/ublock/badlists.txt +9 -1
- package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
- package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
- package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
- package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
- package/extensions/ublock/css/codemirror.css +4 -0
- package/extensions/ublock/document-blocked.html +3 -1
- package/extensions/ublock/js/arglist-parser.js +116 -0
- package/extensions/ublock/js/background.js +1 -1
- package/extensions/ublock/js/logger-ui.js +1 -1
- package/extensions/ublock/js/messaging.js +9 -2
- package/extensions/ublock/js/pagestore.js +3 -1
- package/extensions/ublock/js/redirect-engine.js +3 -1
- package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
- package/extensions/ublock/js/resources/base.js +38 -0
- package/extensions/ublock/js/resources/cookie.js +419 -0
- package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
- package/extensions/ublock/js/resources/localstorage.js +235 -0
- package/extensions/ublock/js/resources/parse-replace.js +54 -0
- package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
- package/extensions/ublock/js/resources/proxy-apply.js +109 -0
- package/extensions/ublock/js/resources/replace-argument.js +120 -0
- package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
- package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
- package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
- package/extensions/ublock/js/resources/set-constant.js +287 -0
- package/extensions/ublock/js/resources/shared.js +44 -0
- package/extensions/ublock/js/resources/spoof-css.js +163 -0
- package/extensions/ublock/js/s14e-serializer.js +2 -1
- package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
- package/extensions/ublock/js/scriptlet-filtering.js +1 -31
- package/extensions/ublock/js/static-dnr-filtering.js +143 -129
- package/extensions/ublock/js/static-filtering-parser.js +27 -117
- package/extensions/ublock/js/static-net-filtering.js +53 -141
- package/extensions/ublock/js/traffic.js +1 -1
- package/extensions/ublock/js/urlskip.js +166 -0
- package/extensions/ublock/js/vapi-background-ext.js +38 -14
- package/extensions/ublock/manifest.json +1 -1
- package/package.json +22 -22
- package/src/browserless.ts +4 -0
- package/src/browsers/browsers.cdp.ts +5 -0
- package/src/browsers/browsers.playwright.ts +14 -1
- package/src/browsers/index.ts +5 -2
- package/src/http.ts +9 -0
- package/src/routes/chrome/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/chromium/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/edge/http/content.post.ts +20 -0
- package/src/routes/edge/http/download.post.ts +20 -0
- package/src/routes/edge/http/function.post.ts +20 -0
- package/src/routes/edge/http/json-list.get.ts +7 -0
- package/src/routes/edge/http/json-new.put.ts +7 -0
- package/src/routes/edge/http/json-protocol.get.ts +7 -0
- package/src/routes/edge/http/json-version.get.ts +7 -0
- package/src/routes/edge/http/pdf.post.ts +20 -0
- package/src/routes/edge/http/performance.post.ts +20 -0
- package/src/routes/edge/http/scrape.post.ts +20 -0
- package/src/routes/edge/http/screenshot.post.ts +20 -0
- package/src/routes/edge/tests/content.spec.ts +376 -0
- package/src/routes/edge/tests/download.spec.ts +77 -0
- package/src/routes/edge/tests/function.spec.ts +317 -0
- package/src/routes/edge/tests/json-version.spec.ts +52 -0
- package/src/routes/edge/tests/kill-sessions.spec.ts +99 -0
- package/src/routes/edge/tests/page-websocket.spec.ts +129 -0
- package/src/routes/edge/tests/pdf.spec.ts +389 -0
- package/src/routes/edge/tests/performance.spec.ts +155 -0
- package/src/routes/edge/tests/scrape.spec.ts +417 -0
- package/src/routes/edge/tests/screenshot.spec.ts +387 -0
- package/src/routes/edge/tests/websocket.spec.ts +510 -0
- package/src/routes/edge/ws/browser.ts +10 -0
- package/src/routes/edge/ws/cdp.ts +17 -0
- package/src/routes/edge/ws/page.ts +10 -0
- package/src/routes/edge/ws/playwright.ts +17 -0
- package/src/routes/firefox/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/management/http/meta.get.ts +6 -1
- package/src/routes/management/http/static.get.ts +1 -1
- package/src/routes/webkit/tests/kill-sessions.spec.ts +1 -1
- package/src/sdk-utils.ts +1 -1
- package/src/shared/scrape.http.ts +2 -2
- package/src/types.ts +19 -0
- package/src/utils.ts +38 -16
- package/static/docs/swagger.json +2097 -10
- package/static/docs/swagger.min.json +2096 -9
- package/static/function/client.js +141 -253
- package/static/function/index.html +141 -253
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
#
|
|
3
3
|
# For more information about this list, see: https://pgl.yoyo.org/adservers/
|
|
4
4
|
# ----
|
|
5
|
-
# last updated: Tue,
|
|
6
|
-
# entries:
|
|
5
|
+
# last updated: Tue, 31 Dec 2024 03:22:42 GMT
|
|
6
|
+
# entries: 3547
|
|
7
7
|
# format: hosts (hosts -- in hosts file format)
|
|
8
8
|
# credits: Peter Lowe - pgl@yoyo.org - https://pgl.yoyo.org/ - https://twitter.com/pgl
|
|
9
9
|
# this URL: https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
127.0.0.1 101com.com
|
|
17
17
|
127.0.0.1 180hits.de
|
|
18
18
|
127.0.0.1 180searchassistant.com
|
|
19
|
-
127.0.0.1 1link2020.com
|
|
20
19
|
127.0.0.1 1rx.io
|
|
20
|
+
127.0.0.1 2020mustang.com
|
|
21
21
|
127.0.0.1 207.net
|
|
22
22
|
127.0.0.1 247media.com
|
|
23
23
|
127.0.0.1 24log.com
|
|
24
24
|
127.0.0.1 24pm-affiliation.com
|
|
25
|
+
127.0.0.1 2linkpath.com
|
|
25
26
|
127.0.0.1 2mdn.net
|
|
26
27
|
127.0.0.1 2o7.net
|
|
27
28
|
127.0.0.1 2znp09oa.com
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
127.0.0.1 360yield.com
|
|
32
33
|
127.0.0.1 3lift.com
|
|
33
34
|
127.0.0.1 3o9s.short.gy
|
|
35
|
+
127.0.0.1 4clicker.pro
|
|
34
36
|
127.0.0.1 4d5.net
|
|
35
37
|
127.0.0.1 4info.com
|
|
36
38
|
127.0.0.1 4jnzhl0d0.com
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
127.0.0.1 abacho.net
|
|
67
69
|
127.0.0.1 abc-ads.com
|
|
68
70
|
127.0.0.1 ablink.comms.trainline.com
|
|
71
|
+
127.0.0.1 ablink.info.wise.com
|
|
69
72
|
127.0.0.1 ablink.news.emails-puregym.com
|
|
70
73
|
127.0.0.1 ablinks.mail.hinge.co
|
|
71
74
|
127.0.0.1 aboardlevel.com
|
|
@@ -121,7 +124,6 @@
|
|
|
121
124
|
127.0.0.1 ad.grafika.cz
|
|
122
125
|
127.0.0.1 ad.gt
|
|
123
126
|
127.0.0.1 ad.hbv.de
|
|
124
|
-
127.0.0.1 ad.hodomobile.com
|
|
125
127
|
127.0.0.1 ad.hyena.cz
|
|
126
128
|
127.0.0.1 ad.iinfo.cz
|
|
127
129
|
127.0.0.1 ad.infoseek.com
|
|
@@ -405,7 +407,6 @@
|
|
|
405
407
|
127.0.0.1 ads.colombiaonline.com
|
|
406
408
|
127.0.0.1 ads.com.com
|
|
407
409
|
127.0.0.1 ads.comeon.com
|
|
408
|
-
127.0.0.1 ads.contactmusic.com
|
|
409
410
|
127.0.0.1 ads.creative-serving.com
|
|
410
411
|
127.0.0.1 ads.cybersales.cz
|
|
411
412
|
127.0.0.1 ads.dada.it
|
|
@@ -558,7 +559,6 @@
|
|
|
558
559
|
127.0.0.1 ads.psd2html.com
|
|
559
560
|
127.0.0.1 ads.pubmatic.com
|
|
560
561
|
127.0.0.1 ads.quoka.de
|
|
561
|
-
127.0.0.1 ads.radialserver.com
|
|
562
562
|
127.0.0.1 ads.radio1.lv
|
|
563
563
|
127.0.0.1 ads.recoletos.es
|
|
564
564
|
127.0.0.1 ads.rediff.com
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
127.0.0.1 affiliatetracking.com
|
|
876
876
|
127.0.0.1 affiliatetracking.net
|
|
877
877
|
127.0.0.1 affiliatewindow.com
|
|
878
|
-
127.0.0.1
|
|
878
|
+
127.0.0.1 afflnx.com
|
|
879
879
|
127.0.0.1 afftracking.justanswer.com
|
|
880
880
|
127.0.0.1 afraidlanguage.com
|
|
881
881
|
127.0.0.1 agkn.com
|
|
@@ -939,7 +939,6 @@
|
|
|
939
939
|
127.0.0.1 analyticsapi.happypancake.net
|
|
940
940
|
127.0.0.1 ancientact.com
|
|
941
941
|
127.0.0.1 androiddownload.net
|
|
942
|
-
127.0.0.1 angossa.com
|
|
943
942
|
127.0.0.1 aniview.com
|
|
944
943
|
127.0.0.1 annonser.dagbladet.no
|
|
945
944
|
127.0.0.1 annoyedairport.com
|
|
@@ -982,6 +981,7 @@
|
|
|
982
981
|
127.0.0.1 aserv.motorsgate.com
|
|
983
982
|
127.0.0.1 asewlfjqwlflkew.com
|
|
984
983
|
127.0.0.1 aso1.net
|
|
984
|
+
127.0.0.1 assets1.exgfnetwork.com
|
|
985
985
|
127.0.0.1 assoc-amazon.com
|
|
986
986
|
127.0.0.1 aswpapius.com
|
|
987
987
|
127.0.0.1 aswpsdkus.com
|
|
@@ -1050,7 +1050,6 @@
|
|
|
1050
1050
|
127.0.0.1 bannerimage.com
|
|
1051
1051
|
127.0.0.1 bannermall.com
|
|
1052
1052
|
127.0.0.1 bannermanager.bnr.bg
|
|
1053
|
-
127.0.0.1 bannermarkt.nl
|
|
1054
1053
|
127.0.0.1 bannerpower.com
|
|
1055
1054
|
127.0.0.1 banners.adultfriendfinder.com
|
|
1056
1055
|
127.0.0.1 banners.amigos.com
|
|
@@ -1074,7 +1073,6 @@
|
|
|
1074
1073
|
127.0.0.1 banners.videosz.com
|
|
1075
1074
|
127.0.0.1 banners.virtuagirlhd.com
|
|
1076
1075
|
127.0.0.1 bannerserver.com
|
|
1077
|
-
127.0.0.1 bannersgomlm.com
|
|
1078
1076
|
127.0.0.1 bannershotlink.perfectgonzo.com
|
|
1079
1077
|
127.0.0.1 bannersng.yell.com
|
|
1080
1078
|
127.0.0.1 bannerspace.com
|
|
@@ -1108,6 +1106,7 @@
|
|
|
1108
1106
|
127.0.0.1 benfly.net
|
|
1109
1107
|
127.0.0.1 berp.com
|
|
1110
1108
|
127.0.0.1 bespoke.iln8.net
|
|
1109
|
+
127.0.0.1 best-click.pro
|
|
1111
1110
|
127.0.0.1 bestboundary.com
|
|
1112
1111
|
127.0.0.1 bestbuy.7tiv.net
|
|
1113
1112
|
127.0.0.1 bewilderedblade.com
|
|
@@ -1118,6 +1117,7 @@
|
|
|
1118
1117
|
127.0.0.1 bidclix.com
|
|
1119
1118
|
127.0.0.1 bidclix.net
|
|
1120
1119
|
127.0.0.1 bidr.io
|
|
1120
|
+
127.0.0.1 bidsopt.com
|
|
1121
1121
|
127.0.0.1 bidswitch.net
|
|
1122
1122
|
127.0.0.1 bidtellect.com
|
|
1123
1123
|
127.0.0.1 bidvertiser.com
|
|
@@ -1142,7 +1142,6 @@
|
|
|
1142
1142
|
127.0.0.1 blogherads.com
|
|
1143
1143
|
127.0.0.1 blogtoplist.se
|
|
1144
1144
|
127.0.0.1 blogtopsites.com
|
|
1145
|
-
127.0.0.1 blueadvertise.com
|
|
1146
1145
|
127.0.0.1 blueconic.com
|
|
1147
1146
|
127.0.0.1 blueconic.net
|
|
1148
1147
|
127.0.0.1 bluekai.com
|
|
@@ -1207,7 +1206,6 @@
|
|
|
1207
1206
|
127.0.0.1 calypsocapsule.com
|
|
1208
1207
|
127.0.0.1 campaign.bharatmatrimony.com
|
|
1209
1208
|
127.0.0.1 caniamedia.com
|
|
1210
|
-
127.0.0.1 capablecows.com
|
|
1211
1209
|
127.0.0.1 capriciouscorn.com
|
|
1212
1210
|
127.0.0.1 captainbicycle.com
|
|
1213
1211
|
127.0.0.1 carambo.la
|
|
@@ -1283,6 +1281,7 @@
|
|
|
1283
1281
|
127.0.0.1 click.cision.com
|
|
1284
1282
|
127.0.0.1 click.classmates.com
|
|
1285
1283
|
127.0.0.1 click.comm.rcibank.co.uk
|
|
1284
|
+
127.0.0.1 click.crm.ba.com
|
|
1286
1285
|
127.0.0.1 click.digital.metaquestmail.com
|
|
1287
1286
|
127.0.0.1 click.discord.com
|
|
1288
1287
|
127.0.0.1 click.e.bbcmail.co.uk
|
|
@@ -1311,6 +1310,7 @@
|
|
|
1311
1310
|
127.0.0.1 click.nvgaming.nvidia.com
|
|
1312
1311
|
127.0.0.1 click.redditmail.com
|
|
1313
1312
|
127.0.0.1 click.twcwigs.com
|
|
1313
|
+
127.0.0.1 click.v.visionlab.es
|
|
1314
1314
|
127.0.0.1 click2freemoney.com
|
|
1315
1315
|
127.0.0.1 click360v2-ingest.azurewebsites.net
|
|
1316
1316
|
127.0.0.1 click4.pro
|
|
@@ -1328,7 +1328,7 @@
|
|
|
1328
1328
|
127.0.0.1 clickfuse.com
|
|
1329
1329
|
127.0.0.1 clickhereforcellphones.com
|
|
1330
1330
|
127.0.0.1 clicklink.jp
|
|
1331
|
-
127.0.0.1
|
|
1331
|
+
127.0.0.1 clickngo.pro
|
|
1332
1332
|
127.0.0.1 clickonometrics.pl
|
|
1333
1333
|
127.0.0.1 clicks.deliveroo.co.uk
|
|
1334
1334
|
127.0.0.1 clicks.equantum.com
|
|
@@ -1365,6 +1365,7 @@
|
|
|
1365
1365
|
127.0.0.1 cnomy.com
|
|
1366
1366
|
127.0.0.1 cnt.spbland.ru
|
|
1367
1367
|
127.0.0.1 cnt1.pocitadlo.cz
|
|
1368
|
+
127.0.0.1 cnvlink.com
|
|
1368
1369
|
127.0.0.1 cny.yoyo.org
|
|
1369
1370
|
127.0.0.1 codeadnetwork.com
|
|
1370
1371
|
127.0.0.1 cognitiv.ai
|
|
@@ -1374,13 +1375,13 @@
|
|
|
1374
1375
|
127.0.0.1 collector.cdp.cnn.com
|
|
1375
1376
|
127.0.0.1 colonize.com
|
|
1376
1377
|
127.0.0.1 comfortablecheese.com
|
|
1378
|
+
127.0.0.1 commindo-media-ressourcen.de
|
|
1377
1379
|
127.0.0.1 commissionmonster.com
|
|
1378
1380
|
127.0.0.1 communications.melitaltd.com
|
|
1379
1381
|
127.0.0.1 compactbanner.com
|
|
1380
1382
|
127.0.0.1 comparereaction.com
|
|
1381
1383
|
127.0.0.1 compiledoctor.com
|
|
1382
1384
|
127.0.0.1 comprabanner.it
|
|
1383
|
-
127.0.0.1 concernedchange.com
|
|
1384
1385
|
127.0.0.1 conditionchange.com
|
|
1385
1386
|
127.0.0.1 conductrics.com
|
|
1386
1387
|
127.0.0.1 connatix.com
|
|
@@ -1461,7 +1462,6 @@
|
|
|
1461
1462
|
127.0.0.1 customad.cnn.com
|
|
1462
1463
|
127.0.0.1 customads.co
|
|
1463
1464
|
127.0.0.1 customers.kameleoon.com
|
|
1464
|
-
127.0.0.1 cutcurrent.com
|
|
1465
1465
|
127.0.0.1 cutechin.com
|
|
1466
1466
|
127.0.0.1 cxense.com
|
|
1467
1467
|
127.0.0.1 cyberbounty.com
|
|
@@ -1480,9 +1480,11 @@
|
|
|
1480
1480
|
127.0.0.1 dancemistake.com
|
|
1481
1481
|
127.0.0.1 dapper.net
|
|
1482
1482
|
127.0.0.1 data.namesakeoscilloscopemarquis.com
|
|
1483
|
+
127.0.0.1 datenow.link
|
|
1483
1484
|
127.0.0.1 daughterstone.com
|
|
1484
1485
|
127.0.0.1 dc-storm.com
|
|
1485
1486
|
127.0.0.1 de17a.com
|
|
1487
|
+
127.0.0.1 deal-on.eu
|
|
1486
1488
|
127.0.0.1 dealdotcom.com
|
|
1487
1489
|
127.0.0.1 decenterads.com
|
|
1488
1490
|
127.0.0.1 decisivebase.com
|
|
@@ -1510,6 +1512,7 @@
|
|
|
1510
1512
|
127.0.0.1 digital-ads.s3.amazonaws.com
|
|
1511
1513
|
127.0.0.1 digitalmerkat.com
|
|
1512
1514
|
127.0.0.1 direct-events-collector.spot.im
|
|
1515
|
+
127.0.0.1 direct-re2.pl
|
|
1513
1516
|
127.0.0.1 directaclick.com
|
|
1514
1517
|
127.0.0.1 directleads.com
|
|
1515
1518
|
127.0.0.1 directorym.com
|
|
@@ -1688,6 +1691,8 @@
|
|
|
1688
1691
|
127.0.0.1 findcommerce.com
|
|
1689
1692
|
127.0.0.1 findyourcasino.com
|
|
1690
1693
|
127.0.0.1 fingahvf.top
|
|
1694
|
+
127.0.0.1 fireads.online
|
|
1695
|
+
127.0.0.1 fireads.org
|
|
1691
1696
|
127.0.0.1 fireworkadservices.com
|
|
1692
1697
|
127.0.0.1 fireworkanalytics.com
|
|
1693
1698
|
127.0.0.1 fireworks-advertising.com
|
|
@@ -1729,7 +1734,6 @@
|
|
|
1729
1734
|
127.0.0.1 frequentflesh.com
|
|
1730
1735
|
127.0.0.1 freshrelevance.com
|
|
1731
1736
|
127.0.0.1 frightenedpotato.com
|
|
1732
|
-
127.0.0.1 frogator.com
|
|
1733
1737
|
127.0.0.1 fronttoad.com
|
|
1734
1738
|
127.0.0.1 frtyj.com
|
|
1735
1739
|
127.0.0.1 frtyk.com
|
|
@@ -1789,6 +1793,7 @@
|
|
|
1789
1793
|
127.0.0.1 go.usa.gov
|
|
1790
1794
|
127.0.0.1 go.xlirdr.com
|
|
1791
1795
|
127.0.0.1 go2affise.com
|
|
1796
|
+
127.0.0.1 godseedband.com
|
|
1792
1797
|
127.0.0.1 goingplatinum.com
|
|
1793
1798
|
127.0.0.1 goldstats.com
|
|
1794
1799
|
127.0.0.1 gondolagnome.com
|
|
@@ -1816,6 +1821,7 @@
|
|
|
1816
1821
|
127.0.0.1 guardedschool.com
|
|
1817
1822
|
127.0.0.1 gunggo.com
|
|
1818
1823
|
127.0.0.1 h-bid.com
|
|
1824
|
+
127.0.0.1 h-trck.com
|
|
1819
1825
|
127.0.0.1 h0.t.hubspotemail.net
|
|
1820
1826
|
127.0.0.1 h78xb.pw
|
|
1821
1827
|
127.0.0.1 habitualhumor.com
|
|
@@ -1884,7 +1890,6 @@
|
|
|
1884
1890
|
127.0.0.1 hsn.uqhv.net
|
|
1885
1891
|
127.0.0.1 htlbid.com
|
|
1886
1892
|
127.0.0.1 httpool.com
|
|
1887
|
-
127.0.0.1 hubadnetwork.com
|
|
1888
1893
|
127.0.0.1 hubspotlinks.com
|
|
1889
1894
|
127.0.0.1 hueads.com
|
|
1890
1895
|
127.0.0.1 hueadsortb.com
|
|
@@ -2079,7 +2084,6 @@
|
|
|
2079
2084
|
127.0.0.1 liftdna.com
|
|
2080
2085
|
127.0.0.1 ligatus.com
|
|
2081
2086
|
127.0.0.1 ligatus.de
|
|
2082
|
-
127.0.0.1 lightcast.leadscoringcenter.com
|
|
2083
2087
|
127.0.0.1 lightspeedcash.com
|
|
2084
2088
|
127.0.0.1 lightstep.medium.systems
|
|
2085
2089
|
127.0.0.1 lijit.com
|
|
@@ -2136,6 +2140,7 @@
|
|
|
2136
2140
|
127.0.0.1 look.ufinkln.com
|
|
2137
2141
|
127.0.0.1 loopme.com
|
|
2138
2142
|
127.0.0.1 loudlunch.com
|
|
2143
|
+
127.0.0.1 lowest-price.eu
|
|
2139
2144
|
127.0.0.1 lp3tdqle.com
|
|
2140
2145
|
127.0.0.1 lucidmedia.com
|
|
2141
2146
|
127.0.0.1 luckyorange.com
|
|
@@ -2317,6 +2322,7 @@
|
|
|
2317
2322
|
127.0.0.1 mycounter.ua
|
|
2318
2323
|
127.0.0.1 mydas.mobi
|
|
2319
2324
|
127.0.0.1 mylead-tracking.tracknow.info
|
|
2325
|
+
127.0.0.1 mylead.global
|
|
2320
2326
|
127.0.0.1 mylink-today.com
|
|
2321
2327
|
127.0.0.1 mypagerank.net
|
|
2322
2328
|
127.0.0.1 mypagerank.ru
|
|
@@ -2456,6 +2462,7 @@
|
|
|
2456
2462
|
127.0.0.1 optmstr.com
|
|
2457
2463
|
127.0.0.1 optnmstr.com
|
|
2458
2464
|
127.0.0.1 optnx.com
|
|
2465
|
+
127.0.0.1 orbsrv.com
|
|
2459
2466
|
127.0.0.1 orientedargument.com
|
|
2460
2467
|
127.0.0.1 orionember.com
|
|
2461
2468
|
127.0.0.1 ota.cartrawler.com
|
|
@@ -2479,6 +2486,8 @@
|
|
|
2479
2486
|
127.0.0.1 pageranktop.com
|
|
2480
2487
|
127.0.0.1 painstakingpickle.com
|
|
2481
2488
|
127.0.0.1 paleleaf.com
|
|
2489
|
+
127.0.0.1 panatenlink.pl
|
|
2490
|
+
127.0.0.1 panickycurtain.com
|
|
2482
2491
|
127.0.0.1 panickypancake.com
|
|
2483
2492
|
127.0.0.1 panoramicplane.com
|
|
2484
2493
|
127.0.0.1 parachutehome.sjv.io
|
|
@@ -2575,13 +2584,13 @@
|
|
|
2575
2584
|
127.0.0.1 postrelease.com
|
|
2576
2585
|
127.0.0.1 ppc.adhere.marchex.com
|
|
2577
2586
|
127.0.0.1 pr-star.de
|
|
2587
|
+
127.0.0.1 praddpro.de
|
|
2578
2588
|
127.0.0.1 prchecker.info
|
|
2579
2589
|
127.0.0.1 prebid.org
|
|
2580
2590
|
127.0.0.1 predictad.com
|
|
2581
2591
|
127.0.0.1 premium-offers.com
|
|
2582
2592
|
127.0.0.1 presetrabbits.com
|
|
2583
2593
|
127.0.0.1 previousplayground.com
|
|
2584
|
-
127.0.0.1 previouspotato.com
|
|
2585
2594
|
127.0.0.1 prf.hn
|
|
2586
2595
|
127.0.0.1 priceypies.com
|
|
2587
2596
|
127.0.0.1 pricklydebt.com
|
|
@@ -2617,6 +2626,7 @@
|
|
|
2617
2626
|
127.0.0.1 provenpixel.com
|
|
2618
2627
|
127.0.0.1 prpops.com
|
|
2619
2628
|
127.0.0.1 prsitecheck.com
|
|
2629
|
+
127.0.0.1 prufenzo.xyz
|
|
2620
2630
|
127.0.0.1 pstmrk.it
|
|
2621
2631
|
127.0.0.1 psychedelicchess.com
|
|
2622
2632
|
127.0.0.1 ptoushoa.com
|
|
@@ -2655,7 +2665,6 @@
|
|
|
2655
2665
|
127.0.0.1 ql.tc
|
|
2656
2666
|
127.0.0.1 qnsr.com
|
|
2657
2667
|
127.0.0.1 qrlsx.com
|
|
2658
|
-
127.0.0.1 quacksquirrel.com
|
|
2659
2668
|
127.0.0.1 quaintcan.com
|
|
2660
2669
|
127.0.0.1 quantcast.com
|
|
2661
2670
|
127.0.0.1 quantcount.com
|
|
@@ -2685,6 +2694,7 @@
|
|
|
2685
2694
|
127.0.0.1 rambunctiousflock.com
|
|
2686
2695
|
127.0.0.1 rampidads.com
|
|
2687
2696
|
127.0.0.1 randkuj.xyz
|
|
2697
|
+
127.0.0.1 randkula.online
|
|
2688
2698
|
127.0.0.1 rankchamp.de
|
|
2689
2699
|
127.0.0.1 ranking-charts.de
|
|
2690
2700
|
127.0.0.1 ranking-hits.de
|
|
@@ -2700,6 +2710,7 @@
|
|
|
2700
2710
|
127.0.0.1 rayjump.com
|
|
2701
2711
|
127.0.0.1 rcadserver.com
|
|
2702
2712
|
127.0.0.1 re-direct.pl
|
|
2713
|
+
127.0.0.1 re-direct1.com
|
|
2703
2714
|
127.0.0.1 reachjunction.com
|
|
2704
2715
|
127.0.0.1 reactx.com
|
|
2705
2716
|
127.0.0.1 readingguilt.com
|
|
@@ -2721,10 +2732,12 @@
|
|
|
2721
2732
|
127.0.0.1 reconditerake.com
|
|
2722
2733
|
127.0.0.1 record.bonniergaming.com
|
|
2723
2734
|
127.0.0.1 record.mrwin.com
|
|
2735
|
+
127.0.0.1 redirecting8.eu
|
|
2724
2736
|
127.0.0.1 redirectingat.com
|
|
2725
2737
|
127.0.0.1 redirectvoluum.com
|
|
2726
2738
|
127.0.0.1 redrection.pro
|
|
2727
2739
|
127.0.0.1 redshell.io
|
|
2740
|
+
127.0.0.1 reduxmedia.com
|
|
2728
2741
|
127.0.0.1 referralware.com
|
|
2729
2742
|
127.0.0.1 referrer.disqus.com
|
|
2730
2743
|
127.0.0.1 regnow.com
|
|
@@ -2754,7 +2767,6 @@
|
|
|
2754
2767
|
127.0.0.1 reveal.clearbit.com
|
|
2755
2768
|
127.0.0.1 revenuedirect.com
|
|
2756
2769
|
127.0.0.1 revenuehits.com
|
|
2757
|
-
127.0.0.1 revive.docmatic.org
|
|
2758
2770
|
127.0.0.1 revive.dubcnm.com
|
|
2759
2771
|
127.0.0.1 revive.haskovo.net
|
|
2760
2772
|
127.0.0.1 revive.netriota.hu
|
|
@@ -2770,6 +2782,7 @@
|
|
|
2770
2782
|
127.0.0.1 richmails.com
|
|
2771
2783
|
127.0.0.1 richstring.com
|
|
2772
2784
|
127.0.0.1 rightstats.com
|
|
2785
|
+
127.0.0.1 riktok.pl
|
|
2773
2786
|
127.0.0.1 ringplant.com
|
|
2774
2787
|
127.0.0.1 ringsrecord.com
|
|
2775
2788
|
127.0.0.1 ritzykey.com
|
|
@@ -2831,7 +2844,6 @@
|
|
|
2831
2844
|
127.0.0.1 scaredswing.com
|
|
2832
2845
|
127.0.0.1 scarfsmash.com
|
|
2833
2846
|
127.0.0.1 scatteredheat.com
|
|
2834
|
-
127.0.0.1 scatteredquiver.com
|
|
2835
2847
|
127.0.0.1 scintillatingscissors.com
|
|
2836
2848
|
127.0.0.1 scintillatingsilver.com
|
|
2837
2849
|
127.0.0.1 scissorsstatement.com
|
|
@@ -2950,6 +2962,7 @@
|
|
|
2950
2962
|
127.0.0.1 somniture.stuff.co.nz
|
|
2951
2963
|
127.0.0.1 somoaudience.com
|
|
2952
2964
|
127.0.0.1 sonobi.com
|
|
2965
|
+
127.0.0.1 sordidsmile.com
|
|
2953
2966
|
127.0.0.1 sortable.com
|
|
2954
2967
|
127.0.0.1 sourcepoint.vice.com
|
|
2955
2968
|
127.0.0.1 sovrn.com
|
|
@@ -3038,7 +3051,6 @@
|
|
|
3038
3051
|
127.0.0.1 steadfastsystem.com
|
|
3039
3052
|
127.0.0.1 steelhouse.com
|
|
3040
3053
|
127.0.0.1 steelhousemedia.com
|
|
3041
|
-
127.0.0.1 steepscale.com
|
|
3042
3054
|
127.0.0.1 stickyadstv.com
|
|
3043
3055
|
127.0.0.1 stiffgame.com
|
|
3044
3056
|
127.0.0.1 stimulatingsneeze.com
|
|
@@ -3203,6 +3215,7 @@
|
|
|
3203
3215
|
127.0.0.1 totemcash.com
|
|
3204
3216
|
127.0.0.1 touchclarity.com
|
|
3205
3217
|
127.0.0.1 tour.brazzers.com
|
|
3218
|
+
127.0.0.1 track-on.eu
|
|
3206
3219
|
127.0.0.1 track-on.pl
|
|
3207
3220
|
127.0.0.1 track.adform.net
|
|
3208
3221
|
127.0.0.1 track.anchorfree.com
|
|
@@ -3219,6 +3232,7 @@
|
|
|
3219
3232
|
127.0.0.1 track.miro.com
|
|
3220
3233
|
127.0.0.1 track.nationalgunrights.org
|
|
3221
3234
|
127.0.0.1 track.privacyatclearbit.com
|
|
3235
|
+
127.0.0.1 track.przejdzdostrony.pl
|
|
3222
3236
|
127.0.0.1 track.pubmatic.com
|
|
3223
3237
|
127.0.0.1 track.segmetrics.io
|
|
3224
3238
|
127.0.0.1 track.software-codes.com
|
|
@@ -3261,7 +3275,6 @@
|
|
|
3261
3275
|
127.0.0.1 tracking22.com
|
|
3262
3276
|
127.0.0.1 trackingsoft.com
|
|
3263
3277
|
127.0.0.1 trackmysales.com
|
|
3264
|
-
127.0.0.1 trackuhub.com
|
|
3265
3278
|
127.0.0.1 tradeadexchange.com
|
|
3266
3279
|
127.0.0.1 tradedoubler.com
|
|
3267
3280
|
127.0.0.1 traffic-exchange.com
|
|
@@ -3402,7 +3415,6 @@
|
|
|
3402
3415
|
127.0.0.1 vivtracking.com
|
|
3403
3416
|
127.0.0.1 vmmpxl.com
|
|
3404
3417
|
127.0.0.1 voicefive.com
|
|
3405
|
-
127.0.0.1 voicelessvein.com
|
|
3406
3418
|
127.0.0.1 volatilevessel.com
|
|
3407
3419
|
127.0.0.1 voluum.com
|
|
3408
3420
|
127.0.0.1 voluumtrk2.com
|
|
@@ -3413,7 +3425,6 @@
|
|
|
3413
3425
|
127.0.0.1 w55c.net
|
|
3414
3426
|
127.0.0.1 wa.and.co.uk
|
|
3415
3427
|
127.0.0.1 waardex.com
|
|
3416
|
-
127.0.0.1 warlog.ru
|
|
3417
3428
|
127.0.0.1 warmafterthought.com
|
|
3418
3429
|
127.0.0.1 washbanana.com
|
|
3419
3430
|
127.0.0.1 wateryvan.com
|
|
@@ -3440,7 +3451,6 @@
|
|
|
3440
3451
|
127.0.0.1 webstat.com
|
|
3441
3452
|
127.0.0.1 webstat.net
|
|
3442
3453
|
127.0.0.1 webtrackerplus.com
|
|
3443
|
-
127.0.0.1 webtracky.com
|
|
3444
3454
|
127.0.0.1 webtraffic.se
|
|
3445
3455
|
127.0.0.1 webtraxx.de
|
|
3446
3456
|
127.0.0.1 webxcdn.com
|