@browserless.io/browserless 2.12.0-beta-2 → 2.12.0-beta-4
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/build/browserless.d.ts +1 -0
- package/build/browserless.js +6 -0
- package/build/browsers/chromium.cdp.d.ts +1 -1
- package/build/browsers/chromium.cdp.js +2 -2
- package/build/browsers/chromium.playwright.d.ts +2 -2
- package/build/browsers/chromium.playwright.js +7 -5
- package/build/browsers/firefox.playwright.d.ts +2 -2
- package/build/browsers/firefox.playwright.js +7 -5
- package/build/browsers/index.d.ts +3 -2
- package/build/browsers/index.js +40 -16
- package/build/browsers/webkit.playwright.d.ts +2 -2
- package/build/browsers/webkit.playwright.js +7 -5
- package/build/config.d.ts +11 -0
- package/build/config.js +16 -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/websocket.spec.js +18 -3
- 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/websocket.spec.js +18 -0
- package/build/routes/firefox/tests/websocket.spec.js +18 -1
- package/build/routes/webkit/tests/websocket.spec.js +18 -0
- package/build/types.d.ts +1 -1
- package/build/utils.d.ts +9 -0
- package/build/utils.js +9 -0
- package/docker/chromium/Dockerfile +2 -1
- package/docker/firefox/Dockerfile +2 -1
- package/docker/multi/Dockerfile +1 -1
- package/docker/webkit/Dockerfile +2 -1
- package/extensions/ublock/_locales/eu/messages.json +4 -4
- package/extensions/ublock/_locales/hi/messages.json +5 -5
- package/extensions/ublock/_locales/kn/messages.json +11 -11
- package/extensions/ublock/_locales/nb/messages.json +2 -2
- package/extensions/ublock/_locales/no/messages.json +2 -2
- package/extensions/ublock/_locales/ro/messages.json +1 -1
- package/extensions/ublock/_locales/sv/messages.json +1 -1
- package/extensions/ublock/_locales/zh_CN/messages.json +2 -2
- package/extensions/ublock/assets/assets.json +3 -8
- package/extensions/ublock/assets/resources/scriptlets.js +128 -31
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +4870 -3560
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +662 -173
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +10 -42
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +241 -80
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2093 -1224
- package/extensions/ublock/assets/ublock/badlists.txt +2 -0
- package/extensions/ublock/assets/ublock/badware.min.txt +408 -287
- package/extensions/ublock/assets/ublock/filters.min.txt +947 -645
- package/extensions/ublock/assets/ublock/privacy.min.txt +43 -8
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +55 -93
- package/extensions/ublock/assets/ublock/unbreak.min.txt +52 -19
- package/extensions/ublock/css/1p-filters.css +2 -0
- package/extensions/ublock/css/codemirror.css +2 -2
- package/extensions/ublock/css/dashboard.css +2 -5
- package/extensions/ublock/css/epicker-ui.css +3 -3
- package/extensions/ublock/css/fa-icons.css +3 -0
- package/extensions/ublock/css/logger-ui-inspector.css +1 -0
- package/extensions/ublock/css/logger-ui.css +44 -32
- package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +1 -0
- package/extensions/ublock/js/3p-filters.js +4 -5
- package/extensions/ublock/js/biditrie.js +16 -11
- package/extensions/ublock/js/cachestorage.js +37 -37
- package/extensions/ublock/js/contentscript-extra.js +0 -2
- package/extensions/ublock/js/contentscript.js +1 -6
- package/extensions/ublock/js/epicker-ui.js +28 -36
- package/extensions/ublock/js/fa-icons.js +1 -0
- package/extensions/ublock/js/hntrie.js +19 -13
- package/extensions/ublock/js/logger-ui-inspector.js +6 -13
- package/extensions/ublock/js/logger-ui.js +264 -264
- package/extensions/ublock/js/s14e-serializer.js +267 -264
- package/extensions/ublock/js/scriptlet-filtering.js +12 -18
- package/extensions/ublock/js/scriptlets/dom-inspector.js +1 -5
- package/extensions/ublock/js/scriptlets/epicker.js +53 -59
- package/extensions/ublock/js/start.js +0 -8
- package/extensions/ublock/js/storage.js +2 -9
- package/extensions/ublock/js/vapi-background.js +19 -20
- package/extensions/ublock/js/vapi-common.js +2 -7
- package/extensions/ublock/js/vapi.js +0 -4
- package/extensions/ublock/js/webext.js +23 -15
- package/extensions/ublock/logger-ui.html +24 -15
- package/extensions/ublock/manifest.json +2 -3
- package/package.json +18 -6
- package/src/browserless.ts +11 -0
- package/src/browsers/chromium.cdp.ts +2 -2
- package/src/browsers/chromium.playwright.ts +8 -4
- package/src/browsers/firefox.playwright.ts +8 -5
- package/src/browsers/index.ts +53 -18
- package/src/browsers/webkit.playwright.ts +8 -4
- package/src/config.ts +20 -0
- package/src/routes/chrome/tests/websocket.spec.ts +25 -4
- package/src/routes/chromium/tests/websocket.spec.ts +25 -0
- package/src/routes/firefox/tests/websocket.spec.ts +25 -1
- package/src/routes/webkit/tests/websocket.spec.ts +25 -0
- package/src/types.ts +1 -1
- package/src/utils.ts +9 -0
- package/static/docs/swagger.json +9 -9
- package/static/docs/swagger.min.json +9 -9
- package/static/function/client.js +95 -136
- package/static/function/index.html +95 -136
|
@@ -6710,7 +6710,7 @@ org.zw
|
|
|
6710
6710
|
|
|
6711
6711
|
// newGTLDs
|
|
6712
6712
|
|
|
6713
|
-
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-
|
|
6713
|
+
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-05-04T15:12:50Z
|
|
6714
6714
|
// This list is auto-generated, don't edit it manually.
|
|
6715
6715
|
// aaa : American Automobile Association, Inc.
|
|
6716
6716
|
// https://www.iana.org/domains/root/db/aaa.html
|
|
@@ -6896,7 +6896,7 @@ anquan
|
|
|
6896
6896
|
// https://www.iana.org/domains/root/db/anz.html
|
|
6897
6897
|
anz
|
|
6898
6898
|
|
|
6899
|
-
// aol :
|
|
6899
|
+
// aol : Yahoo Inc.
|
|
6900
6900
|
// https://www.iana.org/domains/root/db/aol.html
|
|
6901
6901
|
aol
|
|
6902
6902
|
|
|
@@ -11120,7 +11120,7 @@ xyz
|
|
|
11120
11120
|
// https://www.iana.org/domains/root/db/yachts.html
|
|
11121
11121
|
yachts
|
|
11122
11122
|
|
|
11123
|
-
// yahoo :
|
|
11123
|
+
// yahoo : Yahoo Inc.
|
|
11124
11124
|
// https://www.iana.org/domains/root/db/yahoo.html
|
|
11125
11125
|
yahoo
|
|
11126
11126
|
|
|
@@ -11200,6 +11200,10 @@ ltd.ua
|
|
|
11200
11200
|
// 611coin : https://611project.org/
|
|
11201
11201
|
611.to
|
|
11202
11202
|
|
|
11203
|
+
// AAA workspace : https://aaa.vodka
|
|
11204
|
+
// Submitted by Kirill Rezraf <admin@aaa.vodka>
|
|
11205
|
+
aaa.vodka
|
|
11206
|
+
|
|
11203
11207
|
// A2 Hosting
|
|
11204
11208
|
// Submitted by Tyler Hall <sysadmin@a2hosting.com>
|
|
11205
11209
|
a2hosted.com
|
|
@@ -11346,23 +11350,28 @@ cloudfront.net
|
|
|
11346
11350
|
|
|
11347
11351
|
// Amazon Cognito
|
|
11348
11352
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11349
|
-
// Reference:
|
|
11353
|
+
// Reference: 09588633-91fe-49d8-b4e7-ec36496d11f3
|
|
11350
11354
|
auth.af-south-1.amazoncognito.com
|
|
11351
11355
|
auth.ap-northeast-1.amazoncognito.com
|
|
11352
11356
|
auth.ap-northeast-2.amazoncognito.com
|
|
11353
11357
|
auth.ap-northeast-3.amazoncognito.com
|
|
11354
11358
|
auth.ap-south-1.amazoncognito.com
|
|
11359
|
+
auth.ap-south-2.amazoncognito.com
|
|
11355
11360
|
auth.ap-southeast-1.amazoncognito.com
|
|
11356
11361
|
auth.ap-southeast-2.amazoncognito.com
|
|
11357
11362
|
auth.ap-southeast-3.amazoncognito.com
|
|
11363
|
+
auth.ap-southeast-4.amazoncognito.com
|
|
11358
11364
|
auth.ca-central-1.amazoncognito.com
|
|
11359
11365
|
auth.eu-central-1.amazoncognito.com
|
|
11366
|
+
auth.eu-central-2.amazoncognito.com
|
|
11360
11367
|
auth.eu-north-1.amazoncognito.com
|
|
11361
11368
|
auth.eu-south-1.amazoncognito.com
|
|
11369
|
+
auth.eu-south-2.amazoncognito.com
|
|
11362
11370
|
auth.eu-west-1.amazoncognito.com
|
|
11363
11371
|
auth.eu-west-2.amazoncognito.com
|
|
11364
11372
|
auth.eu-west-3.amazoncognito.com
|
|
11365
11373
|
auth.il-central-1.amazoncognito.com
|
|
11374
|
+
auth.me-central-1.amazoncognito.com
|
|
11366
11375
|
auth.me-south-1.amazoncognito.com
|
|
11367
11376
|
auth.sa-east-1.amazoncognito.com
|
|
11368
11377
|
auth.us-east-1.amazoncognito.com
|
|
@@ -11385,7 +11394,7 @@ us-east-1.amazonaws.com
|
|
|
11385
11394
|
|
|
11386
11395
|
// Amazon EMR
|
|
11387
11396
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11388
|
-
// Reference:
|
|
11397
|
+
// Reference: 82f43f9f-bbb8-400e-8349-854f5a62f20d
|
|
11389
11398
|
emrappui-prod.cn-north-1.amazonaws.com.cn
|
|
11390
11399
|
emrnotebooks-prod.cn-north-1.amazonaws.com.cn
|
|
11391
11400
|
emrstudio-prod.cn-north-1.amazonaws.com.cn
|
|
@@ -11410,6 +11419,9 @@ emrstudio-prod.ap-northeast-3.amazonaws.com
|
|
|
11410
11419
|
emrappui-prod.ap-south-1.amazonaws.com
|
|
11411
11420
|
emrnotebooks-prod.ap-south-1.amazonaws.com
|
|
11412
11421
|
emrstudio-prod.ap-south-1.amazonaws.com
|
|
11422
|
+
emrappui-prod.ap-south-2.amazonaws.com
|
|
11423
|
+
emrnotebooks-prod.ap-south-2.amazonaws.com
|
|
11424
|
+
emrstudio-prod.ap-south-2.amazonaws.com
|
|
11413
11425
|
emrappui-prod.ap-southeast-1.amazonaws.com
|
|
11414
11426
|
emrnotebooks-prod.ap-southeast-1.amazonaws.com
|
|
11415
11427
|
emrstudio-prod.ap-southeast-1.amazonaws.com
|
|
@@ -11419,18 +11431,30 @@ emrstudio-prod.ap-southeast-2.amazonaws.com
|
|
|
11419
11431
|
emrappui-prod.ap-southeast-3.amazonaws.com
|
|
11420
11432
|
emrnotebooks-prod.ap-southeast-3.amazonaws.com
|
|
11421
11433
|
emrstudio-prod.ap-southeast-3.amazonaws.com
|
|
11434
|
+
emrappui-prod.ap-southeast-4.amazonaws.com
|
|
11435
|
+
emrnotebooks-prod.ap-southeast-4.amazonaws.com
|
|
11436
|
+
emrstudio-prod.ap-southeast-4.amazonaws.com
|
|
11422
11437
|
emrappui-prod.ca-central-1.amazonaws.com
|
|
11423
11438
|
emrnotebooks-prod.ca-central-1.amazonaws.com
|
|
11424
11439
|
emrstudio-prod.ca-central-1.amazonaws.com
|
|
11440
|
+
emrappui-prod.ca-west-1.amazonaws.com
|
|
11441
|
+
emrnotebooks-prod.ca-west-1.amazonaws.com
|
|
11442
|
+
emrstudio-prod.ca-west-1.amazonaws.com
|
|
11425
11443
|
emrappui-prod.eu-central-1.amazonaws.com
|
|
11426
11444
|
emrnotebooks-prod.eu-central-1.amazonaws.com
|
|
11427
11445
|
emrstudio-prod.eu-central-1.amazonaws.com
|
|
11446
|
+
emrappui-prod.eu-central-2.amazonaws.com
|
|
11447
|
+
emrnotebooks-prod.eu-central-2.amazonaws.com
|
|
11448
|
+
emrstudio-prod.eu-central-2.amazonaws.com
|
|
11428
11449
|
emrappui-prod.eu-north-1.amazonaws.com
|
|
11429
11450
|
emrnotebooks-prod.eu-north-1.amazonaws.com
|
|
11430
11451
|
emrstudio-prod.eu-north-1.amazonaws.com
|
|
11431
11452
|
emrappui-prod.eu-south-1.amazonaws.com
|
|
11432
11453
|
emrnotebooks-prod.eu-south-1.amazonaws.com
|
|
11433
11454
|
emrstudio-prod.eu-south-1.amazonaws.com
|
|
11455
|
+
emrappui-prod.eu-south-2.amazonaws.com
|
|
11456
|
+
emrnotebooks-prod.eu-south-2.amazonaws.com
|
|
11457
|
+
emrstudio-prod.eu-south-2.amazonaws.com
|
|
11434
11458
|
emrappui-prod.eu-west-1.amazonaws.com
|
|
11435
11459
|
emrnotebooks-prod.eu-west-1.amazonaws.com
|
|
11436
11460
|
emrstudio-prod.eu-west-1.amazonaws.com
|
|
@@ -11440,6 +11464,9 @@ emrstudio-prod.eu-west-2.amazonaws.com
|
|
|
11440
11464
|
emrappui-prod.eu-west-3.amazonaws.com
|
|
11441
11465
|
emrnotebooks-prod.eu-west-3.amazonaws.com
|
|
11442
11466
|
emrstudio-prod.eu-west-3.amazonaws.com
|
|
11467
|
+
emrappui-prod.il-central-1.amazonaws.com
|
|
11468
|
+
emrnotebooks-prod.il-central-1.amazonaws.com
|
|
11469
|
+
emrstudio-prod.il-central-1.amazonaws.com
|
|
11443
11470
|
emrappui-prod.me-central-1.amazonaws.com
|
|
11444
11471
|
emrnotebooks-prod.me-central-1.amazonaws.com
|
|
11445
11472
|
emrstudio-prod.me-central-1.amazonaws.com
|
|
@@ -11470,9 +11497,11 @@ emrstudio-prod.us-west-2.amazonaws.com
|
|
|
11470
11497
|
|
|
11471
11498
|
// Amazon Managed Workflows for Apache Airflow
|
|
11472
11499
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11473
|
-
// Reference:
|
|
11500
|
+
// Reference: 87f24ece-a77e-40e8-bb4a-f6b74fe9f975
|
|
11474
11501
|
*.cn-north-1.airflow.amazonaws.com.cn
|
|
11475
11502
|
*.cn-northwest-1.airflow.amazonaws.com.cn
|
|
11503
|
+
*.af-south-1.airflow.amazonaws.com
|
|
11504
|
+
*.ap-east-1.airflow.amazonaws.com
|
|
11476
11505
|
*.ap-northeast-1.airflow.amazonaws.com
|
|
11477
11506
|
*.ap-northeast-2.airflow.amazonaws.com
|
|
11478
11507
|
*.ap-south-1.airflow.amazonaws.com
|
|
@@ -11481,12 +11510,15 @@ emrstudio-prod.us-west-2.amazonaws.com
|
|
|
11481
11510
|
*.ca-central-1.airflow.amazonaws.com
|
|
11482
11511
|
*.eu-central-1.airflow.amazonaws.com
|
|
11483
11512
|
*.eu-north-1.airflow.amazonaws.com
|
|
11513
|
+
*.eu-south-1.airflow.amazonaws.com
|
|
11484
11514
|
*.eu-west-1.airflow.amazonaws.com
|
|
11485
11515
|
*.eu-west-2.airflow.amazonaws.com
|
|
11486
11516
|
*.eu-west-3.airflow.amazonaws.com
|
|
11517
|
+
*.me-south-1.airflow.amazonaws.com
|
|
11487
11518
|
*.sa-east-1.airflow.amazonaws.com
|
|
11488
11519
|
*.us-east-1.airflow.amazonaws.com
|
|
11489
11520
|
*.us-east-2.airflow.amazonaws.com
|
|
11521
|
+
*.us-west-1.airflow.amazonaws.com
|
|
11490
11522
|
*.us-west-2.airflow.amazonaws.com
|
|
11491
11523
|
|
|
11492
11524
|
// Amazon S3
|
|
@@ -11780,9 +11812,25 @@ s3-fips.us-west-2.amazonaws.com
|
|
|
11780
11812
|
s3-object-lambda.us-west-2.amazonaws.com
|
|
11781
11813
|
s3-website.us-west-2.amazonaws.com
|
|
11782
11814
|
|
|
11815
|
+
// Amazon SageMaker Ground Truth
|
|
11816
|
+
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11817
|
+
// Reference: 98dbfde4-7802-48c3-8751-b60f204e0d9c
|
|
11818
|
+
labeling.ap-northeast-1.sagemaker.aws
|
|
11819
|
+
labeling.ap-northeast-2.sagemaker.aws
|
|
11820
|
+
labeling.ap-south-1.sagemaker.aws
|
|
11821
|
+
labeling.ap-southeast-1.sagemaker.aws
|
|
11822
|
+
labeling.ap-southeast-2.sagemaker.aws
|
|
11823
|
+
labeling.ca-central-1.sagemaker.aws
|
|
11824
|
+
labeling.eu-central-1.sagemaker.aws
|
|
11825
|
+
labeling.eu-west-1.sagemaker.aws
|
|
11826
|
+
labeling.eu-west-2.sagemaker.aws
|
|
11827
|
+
labeling.us-east-1.sagemaker.aws
|
|
11828
|
+
labeling.us-east-2.sagemaker.aws
|
|
11829
|
+
labeling.us-west-2.sagemaker.aws
|
|
11830
|
+
|
|
11783
11831
|
// Amazon SageMaker Notebook Instances
|
|
11784
11832
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11785
|
-
// Reference:
|
|
11833
|
+
// Reference: b5ea56df-669e-43cc-9537-14aa172f5dfc
|
|
11786
11834
|
notebook.af-south-1.sagemaker.aws
|
|
11787
11835
|
notebook.ap-east-1.sagemaker.aws
|
|
11788
11836
|
notebook.ap-northeast-1.sagemaker.aws
|
|
@@ -11819,6 +11867,7 @@ notebook-fips.us-gov-east-1.sagemaker.aws
|
|
|
11819
11867
|
notebook.us-gov-west-1.sagemaker.aws
|
|
11820
11868
|
notebook-fips.us-gov-west-1.sagemaker.aws
|
|
11821
11869
|
notebook.us-west-1.sagemaker.aws
|
|
11870
|
+
notebook-fips.us-west-1.sagemaker.aws
|
|
11822
11871
|
notebook.us-west-2.sagemaker.aws
|
|
11823
11872
|
notebook-fips.us-west-2.sagemaker.aws
|
|
11824
11873
|
notebook.cn-north-1.sagemaker.com.cn
|
|
@@ -11826,7 +11875,7 @@ notebook.cn-northwest-1.sagemaker.com.cn
|
|
|
11826
11875
|
|
|
11827
11876
|
// Amazon SageMaker Studio
|
|
11828
11877
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11829
|
-
// Reference:
|
|
11878
|
+
// Reference: 69c723d9-6e1a-4bff-a203-48eecd203183
|
|
11830
11879
|
studio.af-south-1.sagemaker.aws
|
|
11831
11880
|
studio.ap-east-1.sagemaker.aws
|
|
11832
11881
|
studio.ap-northeast-1.sagemaker.aws
|
|
@@ -11840,6 +11889,7 @@ studio.ca-central-1.sagemaker.aws
|
|
|
11840
11889
|
studio.eu-central-1.sagemaker.aws
|
|
11841
11890
|
studio.eu-north-1.sagemaker.aws
|
|
11842
11891
|
studio.eu-south-1.sagemaker.aws
|
|
11892
|
+
studio.eu-south-2.sagemaker.aws
|
|
11843
11893
|
studio.eu-west-1.sagemaker.aws
|
|
11844
11894
|
studio.eu-west-2.sagemaker.aws
|
|
11845
11895
|
studio.eu-west-3.sagemaker.aws
|
|
@@ -11951,6 +12001,11 @@ webview-assets.aws-cloud9.us-west-2.amazonaws.com
|
|
|
11951
12001
|
vfs.cloud9.us-west-2.amazonaws.com
|
|
11952
12002
|
webview-assets.cloud9.us-west-2.amazonaws.com
|
|
11953
12003
|
|
|
12004
|
+
// AWS Directory Service
|
|
12005
|
+
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
12006
|
+
// Reference: a13203e8-42dc-4045-a0d2-2ee67bed1068
|
|
12007
|
+
awsapps.com
|
|
12008
|
+
|
|
11954
12009
|
// AWS Elastic Beanstalk
|
|
11955
12010
|
// Submitted by AWS Security <psl-maintainers@amazon.com>
|
|
11956
12011
|
// Reference: bb5a965c-dec3-4967-aa22-e306ad064797
|
|
@@ -12076,6 +12131,7 @@ autocode.dev
|
|
|
12076
12131
|
|
|
12077
12132
|
// AVM : https://avm.de
|
|
12078
12133
|
// Submitted by Andreas Weise <a.weise@avm.de>
|
|
12134
|
+
myfritz.link
|
|
12079
12135
|
myfritz.net
|
|
12080
12136
|
|
|
12081
12137
|
// AVStack Pte. Ltd. : https://avstack.io
|
|
@@ -12143,6 +12199,10 @@ pages.gay
|
|
|
12143
12199
|
// Submitted by Adrian <adrian@betainabox.com>
|
|
12144
12200
|
betainabox.com
|
|
12145
12201
|
|
|
12202
|
+
// University of Bielsko-Biala regional domain: http://dns.bielsko.pl/
|
|
12203
|
+
// Submitted by Marcin <dns@ath.bielsko.pl>
|
|
12204
|
+
bielsko.pl
|
|
12205
|
+
|
|
12146
12206
|
// BinaryLane : http://www.binarylane.com
|
|
12147
12207
|
// Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
|
|
12148
12208
|
bnr.la
|
|
@@ -12189,7 +12249,8 @@ square7.net
|
|
|
12189
12249
|
*.s.brave.io
|
|
12190
12250
|
|
|
12191
12251
|
// Brendly : https://brendly.rs
|
|
12192
|
-
// Submitted by Dusan Radovanovic <
|
|
12252
|
+
// Submitted by Dusan Radovanovic <administracija@brendly.rs>
|
|
12253
|
+
shop.brendly.hr
|
|
12193
12254
|
shop.brendly.rs
|
|
12194
12255
|
|
|
12195
12256
|
// BrowserSafetyMark
|
|
@@ -12306,7 +12367,10 @@ discourse.team
|
|
|
12306
12367
|
|
|
12307
12368
|
// Clever Cloud : https://www.clever-cloud.com/
|
|
12308
12369
|
// Submitted by Quentin Adam <noc@clever-cloud.com>
|
|
12370
|
+
cleverapps.cc
|
|
12371
|
+
*.services.clever-cloud.com
|
|
12309
12372
|
cleverapps.io
|
|
12373
|
+
cleverapps.tech
|
|
12310
12374
|
|
|
12311
12375
|
// Clerk : https://www.clerk.dev
|
|
12312
12376
|
// Submitted by Colin Sidoti <systems@clerk.dev>
|
|
@@ -12353,6 +12417,12 @@ pages.dev
|
|
|
12353
12417
|
r2.dev
|
|
12354
12418
|
workers.dev
|
|
12355
12419
|
|
|
12420
|
+
// cloudscale.ch AG : https://www.cloudscale.ch/
|
|
12421
|
+
// Submitted by Gaudenz Steinlin <support@cloudscale.ch>
|
|
12422
|
+
cust.cloudscale.ch
|
|
12423
|
+
objects.lpg.cloudscale.ch
|
|
12424
|
+
objects.rma.cloudscale.ch
|
|
12425
|
+
|
|
12356
12426
|
// Clovyr : https://clovyr.io
|
|
12357
12427
|
// Submitted by Patrick Nielsen <patrick@clovyr.io>
|
|
12358
12428
|
wnext.app
|
|
@@ -12370,22 +12440,33 @@ co.cz
|
|
|
12370
12440
|
|
|
12371
12441
|
// CDN77.com : http://www.cdn77.com
|
|
12372
12442
|
// Submitted by Jan Krpes <jan.krpes@cdn77.com>
|
|
12373
|
-
|
|
12443
|
+
cdn77-storage.com
|
|
12444
|
+
rsc.contentproxy9.cz
|
|
12374
12445
|
cdn77-ssl.net
|
|
12375
12446
|
r.cdn77.net
|
|
12376
|
-
rsc.cdn77.org
|
|
12377
12447
|
ssl.origin.cdn77-secure.org
|
|
12448
|
+
c.cdn77.org
|
|
12449
|
+
rsc.cdn77.org
|
|
12378
12450
|
|
|
12379
12451
|
// Cloud DNS Ltd : http://www.cloudns.net
|
|
12380
|
-
// Submitted by Aleksander Hristov <noc@cloudns.net>
|
|
12452
|
+
// Submitted by Aleksander Hristov <noc@cloudns.net> & Boyan Peychev <boyan@cloudns.net>
|
|
12381
12453
|
cloudns.asia
|
|
12454
|
+
cloudns.be
|
|
12382
12455
|
cloudns.biz
|
|
12383
|
-
cloudns.club
|
|
12384
12456
|
cloudns.cc
|
|
12457
|
+
cloudns.ch
|
|
12458
|
+
cloudns.cl
|
|
12459
|
+
cloudns.club
|
|
12460
|
+
dnsabr.com
|
|
12461
|
+
cloudns.cx
|
|
12385
12462
|
cloudns.eu
|
|
12386
12463
|
cloudns.in
|
|
12387
12464
|
cloudns.info
|
|
12465
|
+
dns-cloud.net
|
|
12466
|
+
dns-dynamic.net
|
|
12467
|
+
cloudns.nz
|
|
12388
12468
|
cloudns.org
|
|
12469
|
+
cloudns.ph
|
|
12389
12470
|
cloudns.pro
|
|
12390
12471
|
cloudns.pw
|
|
12391
12472
|
cloudns.us
|
|
@@ -12398,6 +12479,11 @@ cnpy.gdn
|
|
|
12398
12479
|
// Submitted by Moritz Marquardt <git@momar.de>
|
|
12399
12480
|
codeberg.page
|
|
12400
12481
|
|
|
12482
|
+
// CodeSandbox B.V. : https://codesandbox.io
|
|
12483
|
+
// Submitted by Ives van Hoorne <abuse@codesandbox.io>
|
|
12484
|
+
csb.app
|
|
12485
|
+
preview.csb.app
|
|
12486
|
+
|
|
12401
12487
|
// CoDNS B.V.
|
|
12402
12488
|
co.nl
|
|
12403
12489
|
co.no
|
|
@@ -12516,6 +12602,7 @@ dyndns.dappnode.io
|
|
|
12516
12602
|
// Dark, Inc. : https://darklang.com
|
|
12517
12603
|
// Submitted by Paul Biggar <ops@darklang.com>
|
|
12518
12604
|
builtwithdark.com
|
|
12605
|
+
darklang.io
|
|
12519
12606
|
|
|
12520
12607
|
// DataDetect, LLC. : https://datadetect.com
|
|
12521
12608
|
// Submitted by Andrew Banchich <abanchich@sceven.com>
|
|
@@ -12914,6 +13001,10 @@ ondigitalocean.app
|
|
|
12914
13001
|
// Submitted by Robin H. Johnson <psl-maintainers@digitalocean.com>
|
|
12915
13002
|
*.digitaloceanspaces.com
|
|
12916
13003
|
|
|
13004
|
+
// DigitalPlat : https://www.digitalplat.org/
|
|
13005
|
+
// Submitted by Edward Hsing <contact@digitalplat.org>
|
|
13006
|
+
us.kg
|
|
13007
|
+
|
|
12917
13008
|
// dnstrace.pro : https://dnstrace.pro/
|
|
12918
13009
|
// Submitted by Chris Partridge <chris@partridge.tech>
|
|
12919
13010
|
bci.dnstrace.pro
|
|
@@ -12955,6 +13046,14 @@ easypanel.host
|
|
|
12955
13046
|
// Submitted by <infracloudteam@namecheap.com>
|
|
12956
13047
|
*.ewp.live
|
|
12957
13048
|
|
|
13049
|
+
// Electromagnetic Field : https://www.emfcamp.org
|
|
13050
|
+
// Submitted by <noc@emfcamp.org>
|
|
13051
|
+
at.emf.camp
|
|
13052
|
+
|
|
13053
|
+
// Elefunc, Inc. : https://elefunc.com
|
|
13054
|
+
// Submitted by Cetin Sert <domains@elefunc.com>
|
|
13055
|
+
rt.ht
|
|
13056
|
+
|
|
12958
13057
|
// Elementor : Elementor Ltd.
|
|
12959
13058
|
// Submitted by Anton Barkan <antonb@elementor.com>
|
|
12960
13059
|
elementor.cloud
|
|
@@ -13057,6 +13156,11 @@ us-2.evennode.com
|
|
|
13057
13156
|
us-3.evennode.com
|
|
13058
13157
|
us-4.evennode.com
|
|
13059
13158
|
|
|
13159
|
+
// Expo : https://expo.dev/
|
|
13160
|
+
// Submitted by James Ide <psl@expo.dev>
|
|
13161
|
+
expo.app
|
|
13162
|
+
staging.expo.app
|
|
13163
|
+
|
|
13060
13164
|
// eDirect Corp. : https://hosting.url.com.tw/
|
|
13061
13165
|
// Submitted by C.S. chang <cschang@corp.url.com.tw>
|
|
13062
13166
|
twmail.cc
|
|
@@ -13246,7 +13350,8 @@ forgeblocks.com
|
|
|
13246
13350
|
id.forgerock.io
|
|
13247
13351
|
|
|
13248
13352
|
// Framer : https://www.framer.com
|
|
13249
|
-
// Submitted by Koen Rouwhorst <
|
|
13353
|
+
// Submitted by Koen Rouwhorst <security@framer.com>
|
|
13354
|
+
framer.ai
|
|
13250
13355
|
framer.app
|
|
13251
13356
|
framercanvas.com
|
|
13252
13357
|
framer.media
|
|
@@ -13287,6 +13392,24 @@ freemyip.com
|
|
|
13287
13392
|
// Submitted by Daniel A. Maierhofer <vorstand@funkfeuer.at>
|
|
13288
13393
|
wien.funkfeuer.at
|
|
13289
13394
|
|
|
13395
|
+
// Future Versatile Group. :https://www.fvg-on.net/
|
|
13396
|
+
// T.Kabu <webmaster@fvg-on.net>
|
|
13397
|
+
daemon.asia
|
|
13398
|
+
dix.asia
|
|
13399
|
+
mydns.bz
|
|
13400
|
+
0am.jp
|
|
13401
|
+
0g0.jp
|
|
13402
|
+
0j0.jp
|
|
13403
|
+
0t0.jp
|
|
13404
|
+
mydns.jp
|
|
13405
|
+
pgw.jp
|
|
13406
|
+
wjg.jp
|
|
13407
|
+
keyword-on.net
|
|
13408
|
+
live-on.net
|
|
13409
|
+
server-on.net
|
|
13410
|
+
mydns.tw
|
|
13411
|
+
mydns.vc
|
|
13412
|
+
|
|
13290
13413
|
// Futureweb GmbH : https://www.futureweb.at
|
|
13291
13414
|
// Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
|
|
13292
13415
|
*.futurecms.at
|
|
@@ -13330,9 +13453,11 @@ gentlentapis.com
|
|
|
13330
13453
|
lab.ms
|
|
13331
13454
|
cdn-edges.net
|
|
13332
13455
|
|
|
13333
|
-
//
|
|
13334
|
-
// Submitted by
|
|
13335
|
-
|
|
13456
|
+
// Getlocalcert: https://www.getlocalcert.net
|
|
13457
|
+
// Submitted by Robert Alexander <support@getlocalcert.net>
|
|
13458
|
+
localcert.net
|
|
13459
|
+
localhostcert.net
|
|
13460
|
+
corpnet.work
|
|
13336
13461
|
|
|
13337
13462
|
// GignoSystemJapan: http://gsj.bz
|
|
13338
13463
|
// Submitted by GignoSystemJapan <kakutou-ec@gsj.bz>
|
|
@@ -13498,7 +13623,8 @@ ro.im
|
|
|
13498
13623
|
goip.de
|
|
13499
13624
|
|
|
13500
13625
|
// Google, Inc.
|
|
13501
|
-
// Submitted by
|
|
13626
|
+
// Submitted by Shannon McCabe <public-suffix-editors@google.com>
|
|
13627
|
+
*.hosted.app
|
|
13502
13628
|
*.run.app
|
|
13503
13629
|
web.app
|
|
13504
13630
|
*.0emm.com
|
|
@@ -13599,6 +13725,10 @@ goupile.fr
|
|
|
13599
13725
|
// Submitted by <domeinnaam@minaz.nl>
|
|
13600
13726
|
gov.nl
|
|
13601
13727
|
|
|
13728
|
+
// GrayJay Web Solutions Inc. : https://grayjaysports.ca
|
|
13729
|
+
// Submitted by Matt Yamkowy <info@grayjaysports.ca>
|
|
13730
|
+
grayjayleagues.com
|
|
13731
|
+
|
|
13602
13732
|
// Group 53, LLC : https://www.group53.com
|
|
13603
13733
|
// Submitted by Tyler Todd <noc@nova53.net>
|
|
13604
13734
|
awsmppl.com
|
|
@@ -13633,6 +13763,11 @@ hasura-app.io
|
|
|
13633
13763
|
// Submitted by Richard Zowalla <mi-admin@hs-heilbronn.de>
|
|
13634
13764
|
pages.it.hs-heilbronn.de
|
|
13635
13765
|
|
|
13766
|
+
// Helio Networks : https://heliohost.org
|
|
13767
|
+
// Submitted by Ben Frede <admin@heliohost.org>
|
|
13768
|
+
helioho.st
|
|
13769
|
+
heliohost.us
|
|
13770
|
+
|
|
13636
13771
|
// Hepforge : https://www.hepforge.org
|
|
13637
13772
|
// Submitted by David Grellscheid <admin@hepforge.org>
|
|
13638
13773
|
hepforge.org
|
|
@@ -13646,7 +13781,6 @@ herokussl.com
|
|
|
13646
13781
|
// Submitted by Oren Eini <oren@ravendb.net>
|
|
13647
13782
|
ravendb.cloud
|
|
13648
13783
|
ravendb.community
|
|
13649
|
-
ravendb.me
|
|
13650
13784
|
development.run
|
|
13651
13785
|
ravendb.run
|
|
13652
13786
|
|
|
@@ -13786,6 +13920,10 @@ iopsys.se
|
|
|
13786
13920
|
// Submitted by Matthew Hardeman <mhardeman@ipifony.com>
|
|
13787
13921
|
ipifony.net
|
|
13788
13922
|
|
|
13923
|
+
// is-a.dev : https://www.is-a.dev
|
|
13924
|
+
// Submitted by William Harrison <admin@maintainers.is-a.dev>
|
|
13925
|
+
is-a.dev
|
|
13926
|
+
|
|
13789
13927
|
// ir.md : https://nic.ir.md
|
|
13790
13928
|
// Submitted by Ali Soizi <info@nic.ir.md>
|
|
13791
13929
|
ir.md
|
|
@@ -13898,6 +14036,11 @@ myjino.ru
|
|
|
13898
14036
|
// Submitted by Daniel Fariña <ingenieria@jotelulu.com>
|
|
13899
14037
|
jotelulu.cloud
|
|
13900
14038
|
|
|
14039
|
+
// JouwWeb B.V. : https://www.jouwweb.nl
|
|
14040
|
+
// Submitted by Camilo Sperberg <tech@webador.com>
|
|
14041
|
+
jouwweb.site
|
|
14042
|
+
webadorsite.com
|
|
14043
|
+
|
|
13901
14044
|
// Joyent : https://www.joyent.com/
|
|
13902
14045
|
// Submitted by Brian Bennett <brian.bennett@joyent.com>
|
|
13903
14046
|
*.triton.zone
|
|
@@ -13971,6 +14114,10 @@ lpusercontent.com
|
|
|
13971
14114
|
// Submitted by Lelux Admin <publisuffix@lelux.site>
|
|
13972
14115
|
lelux.site
|
|
13973
14116
|
|
|
14117
|
+
// Libre IT Ltd : https://libre.nz
|
|
14118
|
+
// Submitted by Tomas Maggio <support@libre.nz>
|
|
14119
|
+
runcontainers.dev
|
|
14120
|
+
|
|
13974
14121
|
// Lifetime Hosting : https://Lifetime.Hosting/
|
|
13975
14122
|
// Submitted by Mike Fillator <support@lifetime.hosting>
|
|
13976
14123
|
co.business
|
|
@@ -13981,10 +14128,6 @@ co.network
|
|
|
13981
14128
|
co.place
|
|
13982
14129
|
co.technology
|
|
13983
14130
|
|
|
13984
|
-
// Lightmaker Property Manager, Inc. : https://app.lmpm.com/
|
|
13985
|
-
// Submitted by Greg Holland <greg.holland@lmpm.com>
|
|
13986
|
-
app.lmpm.com
|
|
13987
|
-
|
|
13988
14131
|
// linkyard ldt: https://www.linkyard.ch/
|
|
13989
14132
|
// Submitted by Mario Siegenthaler <mario.siegenthaler@linkyard.ch>
|
|
13990
14133
|
linkyard.cloud
|
|
@@ -14145,7 +14288,6 @@ co.pl
|
|
|
14145
14288
|
// Managed by Corporate Domains
|
|
14146
14289
|
// Microsoft Azure : https://home.azure
|
|
14147
14290
|
*.azurecontainer.io
|
|
14148
|
-
cloudapp.azure.com
|
|
14149
14291
|
azure-api.net
|
|
14150
14292
|
azureedge.net
|
|
14151
14293
|
azurefd.net
|
|
@@ -14231,6 +14373,10 @@ netlify.app
|
|
|
14231
14373
|
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
|
14232
14374
|
4u.com
|
|
14233
14375
|
|
|
14376
|
+
// NGO.US Registry : https://nic.ngo.us
|
|
14377
|
+
// Submitted by Alstra Solutions Ltd. Networking Team <admin@alstra.org>
|
|
14378
|
+
ngo.us
|
|
14379
|
+
|
|
14234
14380
|
// ngrok : https://ngrok.com/
|
|
14235
14381
|
// Submitted by Alan Shreve <alan@ngrok.com>
|
|
14236
14382
|
ngrok.app
|
|
@@ -14252,8 +14398,9 @@ ngrok.pro
|
|
|
14252
14398
|
torun.pl
|
|
14253
14399
|
|
|
14254
14400
|
// Nimbus Hosting Ltd. : https://www.nimbushosting.co.uk/
|
|
14255
|
-
// Submitted by Nicholas Ford <
|
|
14401
|
+
// Submitted by Nicholas Ford <dev@nimbushosting.co.uk>
|
|
14256
14402
|
nh-serv.co.uk
|
|
14403
|
+
nimsite.uk
|
|
14257
14404
|
|
|
14258
14405
|
// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
|
|
14259
14406
|
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
|
|
@@ -14280,6 +14427,10 @@ noop.app
|
|
|
14280
14427
|
// Submitted by Laurent Pellegrino <security@noticeable.io>
|
|
14281
14428
|
noticeable.news
|
|
14282
14429
|
|
|
14430
|
+
// Notion Labs, Inc : https://www.notion.so/
|
|
14431
|
+
// Submitted by Jess Yao <trust-core-team@makenotion.com>
|
|
14432
|
+
notion.site
|
|
14433
|
+
|
|
14283
14434
|
// Now-DNS : https://now-dns.com
|
|
14284
14435
|
// Submitted by Steve Russell <steve@now-dns.com>
|
|
14285
14436
|
dnsking.ch
|
|
@@ -14413,8 +14564,13 @@ pcloud.host
|
|
|
14413
14564
|
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
|
14414
14565
|
nyc.mn
|
|
14415
14566
|
|
|
14567
|
+
// O3O.Foundation : https://o3o.foundation/
|
|
14568
|
+
// Submitted by the prvcy.page Registry Team <psl@registry.prvcy.page>
|
|
14569
|
+
prvcy.page
|
|
14570
|
+
|
|
14416
14571
|
// Observable, Inc. : https://observablehq.com
|
|
14417
14572
|
// Submitted by Mike Bostock <dns@observablehq.com>
|
|
14573
|
+
observablehq.cloud
|
|
14418
14574
|
static.observableusercontent.com
|
|
14419
14575
|
|
|
14420
14576
|
// Octopodal Solutions, LLC. : https://ulterius.io/
|
|
@@ -14442,7 +14598,6 @@ omniwe.site
|
|
|
14442
14598
|
123minsida.se
|
|
14443
14599
|
123miweb.es
|
|
14444
14600
|
123paginaweb.pt
|
|
14445
|
-
123sait.ru
|
|
14446
14601
|
123siteweb.fr
|
|
14447
14602
|
123webseite.at
|
|
14448
14603
|
123webseite.de
|
|
@@ -14460,6 +14615,13 @@ simplesite.pl
|
|
|
14460
14615
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
|
14461
14616
|
nid.io
|
|
14462
14617
|
|
|
14618
|
+
// Open Domains : https://open-domains.net
|
|
14619
|
+
// Submitted by William Harrison <admin@open-domains.net>
|
|
14620
|
+
is-cool.dev
|
|
14621
|
+
is-not-a.dev
|
|
14622
|
+
localplayer.dev
|
|
14623
|
+
is-local.org
|
|
14624
|
+
|
|
14463
14625
|
// Open Social : https://www.getopensocial.com/
|
|
14464
14626
|
// Submitted by Alexander Varwijk <security@getopensocial.com>
|
|
14465
14627
|
opensocial.site
|
|
@@ -14480,6 +14642,11 @@ operaunite.com
|
|
|
14480
14642
|
// Submitted by Alexandre Linte <alexandre.linte@orange.com>
|
|
14481
14643
|
tech.orange
|
|
14482
14644
|
|
|
14645
|
+
// OsSav Technology Ltd. : https://ossav.com/
|
|
14646
|
+
// TLD Nic: http://nic.can.re - TLD Whois Server: whois.can.re
|
|
14647
|
+
// Submitted by OsSav Technology Ltd. <support@ossav.com>
|
|
14648
|
+
can.re
|
|
14649
|
+
|
|
14483
14650
|
// Oursky Limited : https://authgear.com/, https://skygear.io/
|
|
14484
14651
|
// Submitted by Authgear Team <hello@authgear.com>, Skygear Developer <hello@skygear.io>
|
|
14485
14652
|
authgear-staging.com
|
|
@@ -14530,10 +14697,11 @@ pagexl.com
|
|
|
14530
14697
|
|
|
14531
14698
|
// pcarrier.ca Software Inc: https://pcarrier.ca/
|
|
14532
14699
|
// Submitted by Pierre Carrier <pc@rrier.ca>
|
|
14533
|
-
|
|
14534
|
-
|
|
14535
|
-
|
|
14536
|
-
|
|
14700
|
+
*.xmit.co
|
|
14701
|
+
xmit.dev
|
|
14702
|
+
srv.us
|
|
14703
|
+
gh.srv.us
|
|
14704
|
+
gl.srv.us
|
|
14537
14705
|
|
|
14538
14706
|
// .pl domains (grandfathered)
|
|
14539
14707
|
art.pl
|
|
@@ -14621,10 +14789,6 @@ xen.prgmr.com
|
|
|
14621
14789
|
// Submitted by registry <lendl@nic.at>
|
|
14622
14790
|
priv.at
|
|
14623
14791
|
|
|
14624
|
-
// privacytools.io : https://www.privacytools.io/
|
|
14625
|
-
// Submitted by Jonah Aragon <jonah@privacytools.io>
|
|
14626
|
-
prvcy.page
|
|
14627
|
-
|
|
14628
14792
|
// Protocol Labs : https://protocol.ai/
|
|
14629
14793
|
// Submitted by Michael Burns <noc@protocol.ai>
|
|
14630
14794
|
*.dweb.link
|
|
@@ -14691,9 +14855,12 @@ qcx.io
|
|
|
14691
14855
|
*.sys.qcx.io
|
|
14692
14856
|
|
|
14693
14857
|
// QNAP System Inc : https://www.qnap.com
|
|
14694
|
-
// Submitted by Nick Chang <
|
|
14695
|
-
|
|
14858
|
+
// Submitted by Nick Chang <cloudadmin@qnap.com>
|
|
14859
|
+
myqnapcloud.cn
|
|
14696
14860
|
alpha-myqnapcloud.com
|
|
14861
|
+
dev-myqnapcloud.com
|
|
14862
|
+
mycloudnas.com
|
|
14863
|
+
mynascloud.com
|
|
14697
14864
|
myqnapcloud.com
|
|
14698
14865
|
|
|
14699
14866
|
// Quip : https://quip.com
|
|
@@ -14923,6 +15090,10 @@ service.gov.scot
|
|
|
14923
15090
|
// Submitted by Shante Adam <shante@skyhat.io>
|
|
14924
15091
|
scrysec.com
|
|
14925
15092
|
|
|
15093
|
+
// Scrypted : https://scrypted.app
|
|
15094
|
+
// Submitted by Koushik Dutta <public-suffix-list@scrypted.app>
|
|
15095
|
+
client.scrypted.io
|
|
15096
|
+
|
|
14926
15097
|
// Securepoint GmbH : https://www.securepoint.de
|
|
14927
15098
|
// Submitted by Erik Anders <erik.anders@securepoint.de>
|
|
14928
15099
|
firewall-gateway.com
|
|
@@ -14962,6 +15133,10 @@ biz.ua
|
|
|
14962
15133
|
co.ua
|
|
14963
15134
|
pp.ua
|
|
14964
15135
|
|
|
15136
|
+
// Sheezy.Art : https://sheezy.art
|
|
15137
|
+
// Submitted by Nyoom <admin@sheezy.art>
|
|
15138
|
+
sheezy.games
|
|
15139
|
+
|
|
14965
15140
|
// Shift Crypto AG : https://shiftcrypto.ch
|
|
14966
15141
|
// Submitted by alex <alex@shiftcrypto.ch>
|
|
14967
15142
|
shiftcrypto.dev
|
|
@@ -15032,9 +15207,9 @@ small-web.org
|
|
|
15032
15207
|
vp4.me
|
|
15033
15208
|
|
|
15034
15209
|
// Snowflake Inc : https://www.snowflake.com/
|
|
15035
|
-
// Submitted by
|
|
15036
|
-
snowflake.app
|
|
15037
|
-
privatelink.snowflake.app
|
|
15210
|
+
// Submitted by Sam Haar <psl@snowflake.com>
|
|
15211
|
+
*.snowflake.app
|
|
15212
|
+
*.privatelink.snowflake.app
|
|
15038
15213
|
streamlit.app
|
|
15039
15214
|
streamlitapp.com
|
|
15040
15215
|
|
|
@@ -15046,6 +15221,12 @@ try-snowplow.com
|
|
|
15046
15221
|
// Submitted by Drew DeVault <sir@cmpwn.com>
|
|
15047
15222
|
srht.site
|
|
15048
15223
|
|
|
15224
|
+
// StackBlitz : https://stackblitz.com
|
|
15225
|
+
// Submitted by Dominic Elm <hello@stackblitz.com>
|
|
15226
|
+
w-corp-staticblitz.com
|
|
15227
|
+
w-credentialless-staticblitz.com
|
|
15228
|
+
w-staticblitz.com
|
|
15229
|
+
|
|
15049
15230
|
// Stackhero : https://www.stackhero.io
|
|
15050
15231
|
// Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
|
|
15051
15232
|
stackhero-network.com
|
|
@@ -15347,6 +15528,10 @@ inc.hk
|
|
|
15347
15528
|
// Submitted by ITComdomains <to@it.com>
|
|
15348
15529
|
it.com
|
|
15349
15530
|
|
|
15531
|
+
// Unison Computing, PBC : https://unison.cloud
|
|
15532
|
+
// Submitted by Simon Højberg <security@unison.cloud>
|
|
15533
|
+
unison-services.cloud
|
|
15534
|
+
|
|
15350
15535
|
// UNIVERSAL DOMAIN REGISTRY : https://www.udr.org.yt/
|
|
15351
15536
|
// see also: whois -h whois.udr.org.yt help
|
|
15352
15537
|
// Submitted by Atanunu Igbunuroghene <publicsuffixlist@udr.org.yt>
|
|
@@ -15374,6 +15559,11 @@ dnsupdate.info
|
|
|
15374
15559
|
// Submitted by Ed Moore <Ed.Moore@lib.de.us>
|
|
15375
15560
|
lib.de.us
|
|
15376
15561
|
|
|
15562
|
+
// Val Town, Inc : https://val.town/
|
|
15563
|
+
// Submitted by Tom MacWright <security@val.town>
|
|
15564
|
+
express.val.run
|
|
15565
|
+
web.val.run
|
|
15566
|
+
|
|
15377
15567
|
// VeryPositive SIA : http://very.lv
|
|
15378
15568
|
// Submitted by Danko Aleksejevs <danko@very.lv>
|
|
15379
15569
|
2038.io
|
|
@@ -15396,47 +15586,6 @@ v-info.info
|
|
|
15396
15586
|
// Submitted by Nathan van Bakel <info@voorloper.com>
|
|
15397
15587
|
voorloper.cloud
|
|
15398
15588
|
|
|
15399
|
-
// Voxel.sh DNS : https://voxel.sh/dns/
|
|
15400
|
-
// Submitted by Mia Rehlinger <dns@voxel.sh>
|
|
15401
|
-
neko.am
|
|
15402
|
-
nyaa.am
|
|
15403
|
-
be.ax
|
|
15404
|
-
cat.ax
|
|
15405
|
-
es.ax
|
|
15406
|
-
eu.ax
|
|
15407
|
-
gg.ax
|
|
15408
|
-
mc.ax
|
|
15409
|
-
us.ax
|
|
15410
|
-
xy.ax
|
|
15411
|
-
nl.ci
|
|
15412
|
-
xx.gl
|
|
15413
|
-
app.gp
|
|
15414
|
-
blog.gt
|
|
15415
|
-
de.gt
|
|
15416
|
-
to.gt
|
|
15417
|
-
be.gy
|
|
15418
|
-
cc.hn
|
|
15419
|
-
io.kg
|
|
15420
|
-
jp.kg
|
|
15421
|
-
tv.kg
|
|
15422
|
-
uk.kg
|
|
15423
|
-
us.kg
|
|
15424
|
-
de.ls
|
|
15425
|
-
at.md
|
|
15426
|
-
de.md
|
|
15427
|
-
jp.md
|
|
15428
|
-
to.md
|
|
15429
|
-
indie.porn
|
|
15430
|
-
vxl.sh
|
|
15431
|
-
ch.tc
|
|
15432
|
-
me.tc
|
|
15433
|
-
we.tc
|
|
15434
|
-
nyan.to
|
|
15435
|
-
at.vg
|
|
15436
|
-
blog.vu
|
|
15437
|
-
dev.vu
|
|
15438
|
-
me.vu
|
|
15439
|
-
|
|
15440
15589
|
// V.UA Domain Administrator : https://domain.v.ua/
|
|
15441
15590
|
// Submitted by Serhii Rostilo <sergey@rostilo.kiev.ua>
|
|
15442
15591
|
v.ua
|
|
@@ -15465,6 +15614,10 @@ reserve-online.com
|
|
|
15465
15614
|
bookonline.app
|
|
15466
15615
|
hotelwithflight.com
|
|
15467
15616
|
|
|
15617
|
+
// WebWaddle Ltd: https://webwaddle.com/
|
|
15618
|
+
// Submitted by Merlin Glander <hostmaster@webwaddle.com>
|
|
15619
|
+
*.wadl.top
|
|
15620
|
+
|
|
15468
15621
|
// WeDeploy by Liferay, Inc. : https://www.wedeploy.com
|
|
15469
15622
|
// Submitted by Henrique Vicente <security@wedeploy.com>
|
|
15470
15623
|
wedeploy.io
|
|
@@ -15475,6 +15628,10 @@ wedeploy.sh
|
|
|
15475
15628
|
// Submitted by Jung Jin <jungseok.jin@wdc.com>
|
|
15476
15629
|
remotewd.com
|
|
15477
15630
|
|
|
15631
|
+
// Whatbox Inc. : https://whatbox.ca/
|
|
15632
|
+
// Submitted by Anthony Ryan <servers@whatbox.ca>
|
|
15633
|
+
box.ca
|
|
15634
|
+
|
|
15478
15635
|
// WIARD Enterprises : https://wiardweb.com
|
|
15479
15636
|
// Submitted by Kidd Hustle <kiddhustle@wiardweb.com>
|
|
15480
15637
|
pages.wiardweb.com
|
|
@@ -15577,6 +15734,10 @@ za.org
|
|
|
15577
15734
|
// Submitted by Julian Alker <security@zap-hosting.com>
|
|
15578
15735
|
zap.cloud
|
|
15579
15736
|
|
|
15737
|
+
// Zeabur : https://zeabur.com/
|
|
15738
|
+
// Submitted by Zeabur Team <contact@zeabur.com>
|
|
15739
|
+
zeabur.app
|
|
15740
|
+
|
|
15580
15741
|
// Zine EOOD : https://zine.bg/
|
|
15581
15742
|
// Submitted by Martin Angelov <martin@zine.bg>
|
|
15582
15743
|
bss.design
|