cloudcheck 8.7.0__tar.gz → 8.7.2__tar.gz

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.
Files changed (91) hide show
  1. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/Cargo.lock +94 -95
  2. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/Cargo.toml +1 -1
  3. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/PKG-INFO +40 -39
  4. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/README.md +39 -38
  5. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloud_providers_v2.json +2303 -2647
  6. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/helpers.py +5 -3
  7. cloudcheck-8.7.2/cloudcheck/providers/yandex.py +107 -0
  8. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck_update/__init__.py +21 -3
  9. cloudcheck-8.7.2/dist/cloudcheck-8.7.2-cp314-cp314-manylinux_2_38_x86_64.whl +0 -0
  10. cloudcheck-8.7.2/helm/Chart.yaml +3 -0
  11. cloudcheck-8.7.2/helm/templates/cloudcheck.yaml +28 -0
  12. cloudcheck-8.7.2/helm/values.yaml +4 -0
  13. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/pyproject.toml +2 -2
  14. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/src/lib.rs +2 -2
  15. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/src/main.rs +2 -2
  16. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/uv.lock +54 -132
  17. cloudcheck-8.7.0/dist/cloudcheck-8.7.0-cp314-cp314-manylinux_2_38_x86_64.whl +0 -0
  18. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.github/dependabot.yml +0 -0
  19. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.github/workflows/docker-tests.yml +0 -0
  20. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.github/workflows/pipeline-tests.yml +0 -0
  21. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.github/workflows/python-tests.yml +0 -0
  22. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.github/workflows/rust-tests.yml +0 -0
  23. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/.gitignore +0 -0
  24. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/Dockerfile +0 -0
  25. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloud_providers.json +0 -0
  26. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/__init__.py +0 -0
  27. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/__init__.py +0 -0
  28. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/akamai.py +0 -0
  29. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/alibaba.py +0 -0
  30. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/amazon.py +0 -0
  31. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/arvancloud.py +0 -0
  32. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/backblaze.py +0 -0
  33. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/baidu.py +0 -0
  34. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/base.py +0 -0
  35. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/cachefly.py +0 -0
  36. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/cdnetworks.py +0 -0
  37. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/cisco.py +0 -0
  38. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/cloudflare.py +0 -0
  39. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/cloudfront.py +0 -0
  40. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/ddosguard.py +0 -0
  41. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/dell.py +0 -0
  42. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/digitalocean.py +0 -0
  43. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/dod.py +0 -0
  44. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/fastly.py +0 -0
  45. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/fbi.py +0 -0
  46. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/gabia.py +0 -0
  47. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/gcore.py +0 -0
  48. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/github.py +0 -0
  49. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/gocache.py +0 -0
  50. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/google.py +0 -0
  51. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/heroku.py +0 -0
  52. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/hetzner.py +0 -0
  53. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/hostway.py +0 -0
  54. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/hpe.py +0 -0
  55. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/huawei.py +0 -0
  56. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/ibm.py +0 -0
  57. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/imperva.py +0 -0
  58. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/kamatera.py +0 -0
  59. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/kinx.py +0 -0
  60. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/ktcloud.py +0 -0
  61. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/leaseweb.py +0 -0
  62. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/lgtelecom.py +0 -0
  63. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/microsoft.py +0 -0
  64. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/microsoft365.py +0 -0
  65. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/navercloud.py +0 -0
  66. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/nhncloud.py +0 -0
  67. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/oracle.py +0 -0
  68. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/ovh.py +0 -0
  69. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/qrator.py +0 -0
  70. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/quiccloud.py +0 -0
  71. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/rackspace.py +0 -0
  72. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/ru_fso.py +0 -0
  73. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/salesforce.py +0 -0
  74. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/scaleway.py +0 -0
  75. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/skbroadband.py +0 -0
  76. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/stormwall.py +0 -0
  77. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/sucuri.py +0 -0
  78. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/tencent.py +0 -0
  79. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/uk_mod.py +0 -0
  80. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/wasabi.py +0 -0
  81. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/x4b.py +0 -0
  82. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/zoho.py +0 -0
  83. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck/providers/zscaler.py +0 -0
  84. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck_update/cli.py +0 -0
  85. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/cloudcheck_update/test_cloudcheck_update.py +0 -0
  86. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/pytest.ini +0 -0
  87. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/scripts/update_readme_table.py +0 -0
  88. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/src/api.rs +0 -0
  89. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/src/python.rs +0 -0
  90. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/test_cloudcheck.py +0 -0
  91. {cloudcheck-8.7.0 → cloudcheck-8.7.2}/test_docker.py +0 -0
@@ -175,9 +175,9 @@ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
175
175
 
176
176
  [[package]]
177
177
  name = "cc"
178
- version = "1.2.50"
178
+ version = "1.2.53"
179
179
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
- checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
180
+ checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
181
181
  dependencies = [
182
182
  "find-msvc-tools",
183
183
  "shlex",
@@ -225,13 +225,13 @@ dependencies = [
225
225
 
226
226
  [[package]]
227
227
  name = "clap_lex"
228
- version = "0.7.6"
228
+ version = "0.7.7"
229
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
230
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
231
231
 
232
232
  [[package]]
233
233
  name = "cloudcheck"
234
- version = "8.7.0"
234
+ version = "8.7.2"
235
235
  dependencies = [
236
236
  "axum",
237
237
  "clap",
@@ -387,19 +387,19 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
387
387
 
388
388
  [[package]]
389
389
  name = "find-msvc-tools"
390
- version = "0.1.5"
390
+ version = "0.1.8"
391
391
  source = "registry+https://github.com/rust-lang/crates.io-index"
392
- checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
392
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
393
393
 
394
394
  [[package]]
395
395
  name = "flate2"
396
- version = "1.1.5"
396
+ version = "1.1.8"
397
397
  source = "registry+https://github.com/rust-lang/crates.io-index"
398
- checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
398
+ checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
399
399
  dependencies = [
400
400
  "crc32fast",
401
- "libz-rs-sys",
402
401
  "miniz_oxide",
402
+ "zlib-rs",
403
403
  ]
404
404
 
405
405
  [[package]]
@@ -533,9 +533,9 @@ dependencies = [
533
533
 
534
534
  [[package]]
535
535
  name = "getrandom"
536
- version = "0.2.16"
536
+ version = "0.2.17"
537
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
538
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
538
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
539
539
  dependencies = [
540
540
  "cfg-if",
541
541
  "libc",
@@ -556,9 +556,9 @@ dependencies = [
556
556
 
557
557
  [[package]]
558
558
  name = "h2"
559
- version = "0.4.12"
559
+ version = "0.4.13"
560
560
  source = "registry+https://github.com/rust-lang/crates.io-index"
561
- checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
561
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
562
562
  dependencies = [
563
563
  "atomic-waker",
564
564
  "bytes",
@@ -815,9 +815,9 @@ dependencies = [
815
815
 
816
816
  [[package]]
817
817
  name = "indexmap"
818
- version = "2.12.1"
818
+ version = "2.13.0"
819
819
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
- checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
820
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
821
821
  dependencies = [
822
822
  "equivalent",
823
823
  "hashbrown",
@@ -842,9 +842,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
842
842
 
843
843
  [[package]]
844
844
  name = "iri-string"
845
- version = "0.7.9"
845
+ version = "0.7.10"
846
846
  source = "registry+https://github.com/rust-lang/crates.io-index"
847
- checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
847
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
848
848
  dependencies = [
849
849
  "memchr",
850
850
  "serde",
@@ -858,15 +858,15 @@ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
858
858
 
859
859
  [[package]]
860
860
  name = "itoa"
861
- version = "1.0.16"
861
+ version = "1.0.17"
862
862
  source = "registry+https://github.com/rust-lang/crates.io-index"
863
- checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
863
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
864
864
 
865
865
  [[package]]
866
866
  name = "jiff"
867
- version = "0.2.16"
867
+ version = "0.2.18"
868
868
  source = "registry+https://github.com/rust-lang/crates.io-index"
869
- checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
869
+ checksum = "e67e8da4c49d6d9909fe03361f9b620f58898859f5c7aded68351e85e71ecf50"
870
870
  dependencies = [
871
871
  "jiff-static",
872
872
  "log",
@@ -877,9 +877,9 @@ dependencies = [
877
877
 
878
878
  [[package]]
879
879
  name = "jiff-static"
880
- version = "0.2.16"
880
+ version = "0.2.18"
881
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
882
- checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
882
+ checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
883
883
  dependencies = [
884
884
  "proc-macro2",
885
885
  "quote",
@@ -888,9 +888,9 @@ dependencies = [
888
888
 
889
889
  [[package]]
890
890
  name = "js-sys"
891
- version = "0.3.83"
891
+ version = "0.3.85"
892
892
  source = "registry+https://github.com/rust-lang/crates.io-index"
893
- checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
893
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
894
894
  dependencies = [
895
895
  "once_cell",
896
896
  "wasm-bindgen",
@@ -898,18 +898,9 @@ dependencies = [
898
898
 
899
899
  [[package]]
900
900
  name = "libc"
901
- version = "0.2.178"
902
- source = "registry+https://github.com/rust-lang/crates.io-index"
903
- checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
904
-
905
- [[package]]
906
- name = "libz-rs-sys"
907
- version = "0.5.5"
901
+ version = "0.2.180"
908
902
  source = "registry+https://github.com/rust-lang/crates.io-index"
909
- checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415"
910
- dependencies = [
911
- "zlib-rs",
912
- ]
903
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
913
904
 
914
905
  [[package]]
915
906
  name = "linux-raw-sys"
@@ -1128,9 +1119,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1128
1119
 
1129
1120
  [[package]]
1130
1121
  name = "portable-atomic"
1131
- version = "1.12.0"
1122
+ version = "1.13.0"
1132
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
1124
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1134
1125
 
1135
1126
  [[package]]
1136
1127
  name = "portable-atomic-util"
@@ -1152,9 +1143,9 @@ dependencies = [
1152
1143
 
1153
1144
  [[package]]
1154
1145
  name = "proc-macro2"
1155
- version = "1.0.103"
1146
+ version = "1.0.105"
1156
1147
  source = "registry+https://github.com/rust-lang/crates.io-index"
1157
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1148
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
1158
1149
  dependencies = [
1159
1150
  "unicode-ident",
1160
1151
  ]
@@ -1235,9 +1226,9 @@ dependencies = [
1235
1226
 
1236
1227
  [[package]]
1237
1228
  name = "quote"
1238
- version = "1.0.42"
1229
+ version = "1.0.43"
1239
1230
  source = "registry+https://github.com/rust-lang/crates.io-index"
1240
- checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1231
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
1241
1232
  dependencies = [
1242
1233
  "proc-macro2",
1243
1234
  ]
@@ -1299,9 +1290,9 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1299
1290
 
1300
1291
  [[package]]
1301
1292
  name = "reqwest"
1302
- version = "0.12.26"
1293
+ version = "0.12.28"
1303
1294
  source = "registry+https://github.com/rust-lang/crates.io-index"
1304
- checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
1295
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1305
1296
  dependencies = [
1306
1297
  "base64",
1307
1298
  "bytes",
@@ -1345,7 +1336,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1345
1336
  dependencies = [
1346
1337
  "cc",
1347
1338
  "cfg-if",
1348
- "getrandom 0.2.16",
1339
+ "getrandom 0.2.17",
1349
1340
  "libc",
1350
1341
  "untrusted",
1351
1342
  "windows-sys 0.52.0",
@@ -1353,9 +1344,9 @@ dependencies = [
1353
1344
 
1354
1345
  [[package]]
1355
1346
  name = "rust-embed"
1356
- version = "8.9.0"
1347
+ version = "8.11.0"
1357
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1358
- checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca"
1349
+ checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
1359
1350
  dependencies = [
1360
1351
  "rust-embed-impl",
1361
1352
  "rust-embed-utils",
@@ -1364,9 +1355,9 @@ dependencies = [
1364
1355
 
1365
1356
  [[package]]
1366
1357
  name = "rust-embed-impl"
1367
- version = "8.9.0"
1358
+ version = "8.11.0"
1368
1359
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2"
1360
+ checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
1370
1361
  dependencies = [
1371
1362
  "proc-macro2",
1372
1363
  "quote",
@@ -1377,9 +1368,9 @@ dependencies = [
1377
1368
 
1378
1369
  [[package]]
1379
1370
  name = "rust-embed-utils"
1380
- version = "8.9.0"
1371
+ version = "8.11.0"
1381
1372
  source = "registry+https://github.com/rust-lang/crates.io-index"
1382
- checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475"
1373
+ checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
1383
1374
  dependencies = [
1384
1375
  "sha2",
1385
1376
  "walkdir",
@@ -1387,9 +1378,9 @@ dependencies = [
1387
1378
 
1388
1379
  [[package]]
1389
1380
  name = "rustix"
1390
- version = "1.1.2"
1381
+ version = "1.1.3"
1391
1382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1392
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1383
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1393
1384
  dependencies = [
1394
1385
  "bitflags",
1395
1386
  "errno",
@@ -1400,9 +1391,9 @@ dependencies = [
1400
1391
 
1401
1392
  [[package]]
1402
1393
  name = "rustls"
1403
- version = "0.23.35"
1394
+ version = "0.23.36"
1404
1395
  source = "registry+https://github.com/rust-lang/crates.io-index"
1405
- checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1396
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1406
1397
  dependencies = [
1407
1398
  "once_cell",
1408
1399
  "rustls-pki-types",
@@ -1413,18 +1404,18 @@ dependencies = [
1413
1404
 
1414
1405
  [[package]]
1415
1406
  name = "rustls-pki-types"
1416
- version = "1.13.2"
1407
+ version = "1.14.0"
1417
1408
  source = "registry+https://github.com/rust-lang/crates.io-index"
1418
- checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
1409
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1419
1410
  dependencies = [
1420
1411
  "zeroize",
1421
1412
  ]
1422
1413
 
1423
1414
  [[package]]
1424
1415
  name = "rustls-webpki"
1425
- version = "0.103.8"
1416
+ version = "0.103.9"
1426
1417
  source = "registry+https://github.com/rust-lang/crates.io-index"
1427
- checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1418
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1428
1419
  dependencies = [
1429
1420
  "ring",
1430
1421
  "rustls-pki-types",
@@ -1439,9 +1430,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1439
1430
 
1440
1431
  [[package]]
1441
1432
  name = "ryu"
1442
- version = "1.0.21"
1433
+ version = "1.0.22"
1443
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
1435
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1445
1436
 
1446
1437
  [[package]]
1447
1438
  name = "same-file"
@@ -1528,15 +1519,15 @@ dependencies = [
1528
1519
 
1529
1520
  [[package]]
1530
1521
  name = "serde_json"
1531
- version = "1.0.145"
1522
+ version = "1.0.149"
1532
1523
  source = "registry+https://github.com/rust-lang/crates.io-index"
1533
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1524
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1534
1525
  dependencies = [
1535
1526
  "itoa",
1536
1527
  "memchr",
1537
- "ryu",
1538
1528
  "serde",
1539
1529
  "serde_core",
1530
+ "zmij",
1540
1531
  ]
1541
1532
 
1542
1533
  [[package]]
@@ -1581,10 +1572,11 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1581
1572
 
1582
1573
  [[package]]
1583
1574
  name = "signal-hook-registry"
1584
- version = "1.4.7"
1575
+ version = "1.4.8"
1585
1576
  source = "registry+https://github.com/rust-lang/crates.io-index"
1586
- checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
1577
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1587
1578
  dependencies = [
1579
+ "errno",
1588
1580
  "libc",
1589
1581
  ]
1590
1582
 
@@ -1636,9 +1628,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1636
1628
 
1637
1629
  [[package]]
1638
1630
  name = "syn"
1639
- version = "2.0.111"
1631
+ version = "2.0.114"
1640
1632
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1633
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1642
1634
  dependencies = [
1643
1635
  "proc-macro2",
1644
1636
  "quote",
@@ -1694,9 +1686,9 @@ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1694
1686
 
1695
1687
  [[package]]
1696
1688
  name = "tempfile"
1697
- version = "3.23.0"
1689
+ version = "3.24.0"
1698
1690
  source = "registry+https://github.com/rust-lang/crates.io-index"
1699
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1691
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1700
1692
  dependencies = [
1701
1693
  "fastrand",
1702
1694
  "getrandom 0.3.4",
@@ -1717,9 +1709,9 @@ dependencies = [
1717
1709
 
1718
1710
  [[package]]
1719
1711
  name = "tokio"
1720
- version = "1.48.0"
1712
+ version = "1.49.0"
1721
1713
  source = "registry+https://github.com/rust-lang/crates.io-index"
1722
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1714
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1723
1715
  dependencies = [
1724
1716
  "bytes",
1725
1717
  "libc",
@@ -1765,9 +1757,9 @@ dependencies = [
1765
1757
 
1766
1758
  [[package]]
1767
1759
  name = "tokio-util"
1768
- version = "0.7.17"
1760
+ version = "0.7.18"
1769
1761
  source = "registry+https://github.com/rust-lang/crates.io-index"
1770
- checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
1762
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1771
1763
  dependencies = [
1772
1764
  "bytes",
1773
1765
  "futures-core",
@@ -1778,9 +1770,9 @@ dependencies = [
1778
1770
 
1779
1771
  [[package]]
1780
1772
  name = "tower"
1781
- version = "0.5.2"
1773
+ version = "0.5.3"
1782
1774
  source = "registry+https://github.com/rust-lang/crates.io-index"
1783
- checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1775
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1784
1776
  dependencies = [
1785
1777
  "futures-core",
1786
1778
  "futures-util",
@@ -1880,9 +1872,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1880
1872
 
1881
1873
  [[package]]
1882
1874
  name = "url"
1883
- version = "2.5.7"
1875
+ version = "2.5.8"
1884
1876
  source = "registry+https://github.com/rust-lang/crates.io-index"
1885
- checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1877
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1886
1878
  dependencies = [
1887
1879
  "form_urlencoded",
1888
1880
  "idna",
@@ -1983,18 +1975,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1983
1975
 
1984
1976
  [[package]]
1985
1977
  name = "wasip2"
1986
- version = "1.0.1+wasi-0.2.4"
1978
+ version = "1.0.2+wasi-0.2.9"
1987
1979
  source = "registry+https://github.com/rust-lang/crates.io-index"
1988
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1980
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1989
1981
  dependencies = [
1990
1982
  "wit-bindgen",
1991
1983
  ]
1992
1984
 
1993
1985
  [[package]]
1994
1986
  name = "wasm-bindgen"
1995
- version = "0.2.106"
1987
+ version = "0.2.108"
1996
1988
  source = "registry+https://github.com/rust-lang/crates.io-index"
1997
- checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1989
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1998
1990
  dependencies = [
1999
1991
  "cfg-if",
2000
1992
  "once_cell",
@@ -2005,11 +1997,12 @@ dependencies = [
2005
1997
 
2006
1998
  [[package]]
2007
1999
  name = "wasm-bindgen-futures"
2008
- version = "0.4.56"
2000
+ version = "0.4.58"
2009
2001
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
2002
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
2011
2003
  dependencies = [
2012
2004
  "cfg-if",
2005
+ "futures-util",
2013
2006
  "js-sys",
2014
2007
  "once_cell",
2015
2008
  "wasm-bindgen",
@@ -2018,9 +2011,9 @@ dependencies = [
2018
2011
 
2019
2012
  [[package]]
2020
2013
  name = "wasm-bindgen-macro"
2021
- version = "0.2.106"
2014
+ version = "0.2.108"
2022
2015
  source = "registry+https://github.com/rust-lang/crates.io-index"
2023
- checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2016
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
2024
2017
  dependencies = [
2025
2018
  "quote",
2026
2019
  "wasm-bindgen-macro-support",
@@ -2028,9 +2021,9 @@ dependencies = [
2028
2021
 
2029
2022
  [[package]]
2030
2023
  name = "wasm-bindgen-macro-support"
2031
- version = "0.2.106"
2024
+ version = "0.2.108"
2032
2025
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
- checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2026
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
2034
2027
  dependencies = [
2035
2028
  "bumpalo",
2036
2029
  "proc-macro2",
@@ -2041,18 +2034,18 @@ dependencies = [
2041
2034
 
2042
2035
  [[package]]
2043
2036
  name = "wasm-bindgen-shared"
2044
- version = "0.2.106"
2037
+ version = "0.2.108"
2045
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
2046
- checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2039
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
2047
2040
  dependencies = [
2048
2041
  "unicode-ident",
2049
2042
  ]
2050
2043
 
2051
2044
  [[package]]
2052
2045
  name = "web-sys"
2053
- version = "0.3.83"
2046
+ version = "0.3.85"
2054
2047
  source = "registry+https://github.com/rust-lang/crates.io-index"
2055
- checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2048
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
2056
2049
  dependencies = [
2057
2050
  "js-sys",
2058
2051
  "wasm-bindgen",
@@ -2260,9 +2253,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2260
2253
 
2261
2254
  [[package]]
2262
2255
  name = "wit-bindgen"
2263
- version = "0.46.0"
2256
+ version = "0.51.0"
2264
2257
  source = "registry+https://github.com/rust-lang/crates.io-index"
2265
- checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2258
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2266
2259
 
2267
2260
  [[package]]
2268
2261
  name = "writeable"
@@ -2373,6 +2366,12 @@ version = "0.5.5"
2373
2366
  source = "registry+https://github.com/rust-lang/crates.io-index"
2374
2367
  checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
2375
2368
 
2369
+ [[package]]
2370
+ name = "zmij"
2371
+ version = "1.0.15"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "94f63c051f4fe3c1509da62131a678643c5b6fbdc9273b2b79d4378ebda003d2"
2374
+
2376
2375
  [[package]]
2377
2376
  name = "zopfli"
2378
2377
  version = "0.8.3"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "cloudcheck"
3
- version = "8.7.0"
3
+ version = "8.7.2"
4
4
  edition = "2024"
5
5
  description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
6
6
  license = "GPL-3.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudcheck
3
- Version: 8.7.0
3
+ Version: 8.7.2
4
4
  Summary: Detailed database of cloud providers. Instantly look up a domain or IP address
5
5
  Requires-Python: >=3.9
6
6
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
@@ -149,65 +149,66 @@ When adding a new cloud provider:
149
149
  In addition to the above attributes, if you have a custom source of CIDRs or domains, you can override the `fetch_cidrs()` or `fetch_domains()` methods (which by default return an empty list) to go fetch your custom TXT/JSON file, etc.
150
150
 
151
151
  <!--PROVIDERTABLE-->
152
- ## Cloud Providers (55)
152
+ ## Cloud Providers (56)
153
153
 
154
154
  | Name | Description | Tags | Domains | Subnets |
155
155
  |------|-------------|------|---------|----------|
156
- | Akamai | A content delivery network and cloud services provider that delivers web and internet security services. | cloud | 81 | 6376 |
157
- | Alibaba Cloud | A Chinese cloud computing company and subsidiary of Alibaba Group, providing cloud services and infrastructure. | cloud | 394 | 81 |
158
- | Amazon Web Services | A comprehensive cloud computing platform provided by Amazon, offering infrastructure services, storage, and computing power. | cloud | 231 | 14090 |
159
- | Arvancloud | An Iranian cloud computing and content delivery network provider offering cloud infrastructure and CDN services. | cdn | 1 | 20 |
160
- | Backblaze | A cloud storage and backup service provider offering data backup and cloud storage solutions. | cloud | 2 | 26 |
156
+ | Akamai | A content delivery network and cloud services provider that delivers web and internet security services. | cloud | 81 | 6375 |
157
+ | Alibaba Cloud | A Chinese cloud computing company and subsidiary of Alibaba Group, providing cloud services and infrastructure. | cloud | 394 | 89 |
158
+ | Amazon Web Services | A comprehensive cloud computing platform provided by Amazon, offering infrastructure services, storage, and computing power. | cloud | 231 | 14201 |
159
+ | Arvancloud | An Iranian cloud computing and content delivery network provider offering cloud infrastructure and CDN services. | cdn | 1 | 9 |
160
+ | Backblaze | A cloud storage and backup service provider offering data backup and cloud storage solutions. | cloud | 2 | 27 |
161
161
  | Baidu Cloud Acceleration (百度云加速) | A Chinese content delivery network and cloud acceleration service provided by Baidu. | cdn | 134 | 0 |
162
- | CacheFly | A content delivery network provider offering global CDN services. | cdn | 0 | 23 |
162
+ | CacheFly | A content delivery network provider offering global CDN services. | cdn | 0 | 93 |
163
163
  | CDNetworks (씨디네트웍스) | A Korean content delivery network provider offering CDN and cloud services. | cdn | 0 | 3 |
164
- | Cisco | A multinational technology corporation that designs, manufactures, and sells networking hardware, software, and telecommunications equipment. | cloud | 121 | 629 |
165
- | Cloudflare | A web infrastructure and security company providing content delivery network services, DDoS mitigation, and web security solutions. | cdn | 60 | 2674 |
166
- | Amazon CloudFront | A content delivery network service provided by Amazon Web Services that delivers data, videos, applications, and APIs to customers globally. | cdn | 0 | 172 |
164
+ | Cisco | A multinational technology corporation that designs, manufactures, and sells networking hardware, software, and telecommunications equipment. | cloud | 121 | 647 |
165
+ | Cloudflare | A web infrastructure and security company providing content delivery network services, DDoS mitigation, and web security solutions. | cdn | 71 | 2790 |
166
+ | Amazon CloudFront | A content delivery network service provided by Amazon Web Services that delivers data, videos, applications, and APIs to customers globally. | cdn | 0 | 173 |
167
167
  | DDoS Guard | A DDoS protection and content delivery network service provider. | cdn | 0 | 19 |
168
- | Dell | A multinational technology company that develops, sells, repairs, and supports computers and related products and services. | cloud | 236 | 104 |
169
- | DigitalOcean | A cloud infrastructure provider offering virtual private servers, managed databases, and other cloud services for developers and businesses. | cloud | 4 | 265 |
170
- | Department of Defense | A U.S. government agency responsible for coordinating and supervising all agencies and functions of the government directly related to national security and the United States Armed Forces. | gov | 3 | 9226 |
168
+ | Dell | A multinational technology company that develops, sells, repairs, and supports computers and related products and services. | cloud | 236 | 101 |
169
+ | DigitalOcean | A cloud infrastructure provider offering virtual private servers, managed databases, and other cloud services for developers and businesses. | cloud | 4 | 271 |
170
+ | Department of Defense | A U.S. government agency responsible for coordinating and supervising all agencies and functions of the government directly related to national security and the United States Armed Forces. | gov | 3 | 9143 |
171
171
  | Federal Bureau of Investigation | A U.S. government agency that serves as the domestic intelligence and security service, responsible for investigating federal crimes and protecting national security. | gov | 3 | 21 |
172
- | Fastly | A content delivery network and edge cloud platform that provides edge computing, security, and performance services. | cdn | 8 | 1026 |
172
+ | Fastly | A content delivery network and edge cloud platform that provides edge computing, security, and performance services. | cdn | 8 | 1056 |
173
173
  | Gabia (가비아) | A Korean cloud hosting and infrastructure provider. | cloud | 0 | 48 |
174
- | G-Core Labs | A content delivery network and cloud infrastructure provider offering CDN, cloud computing, and edge services. | cdn | 0 | 1405 |
175
- | GitHub | A web-based platform for version control and collaboration using Git, providing hosting for software development and code repositories. | cdn | 33 | 4277 |
176
- | GoCache | A Brazilian content delivery network provider offering CDN services. | cdn | 0 | 28 |
177
- | Google Cloud | A suite of cloud computing services provided by Google, including infrastructure, platform, and software services for businesses and developers. | cloud | 1095 | 1863 |
174
+ | G-Core Labs | A content delivery network and cloud infrastructure provider offering CDN, cloud computing, and edge services. | cdn | 0 | 1412 |
175
+ | GitHub | A web-based platform for version control and collaboration using Git, providing hosting for software development and code repositories. | cdn | 33 | 4299 |
176
+ | GoCache | A Brazilian content delivery network provider offering CDN services. | cdn | 0 | 25 |
177
+ | Google Cloud | A suite of cloud computing services provided by Google, including infrastructure, platform, and software services for businesses and developers. | cloud | 1109 | 1871 |
178
178
  | Hewlett Packard Enterprise | A multinational enterprise information technology company that provides servers, storage, networking, and cloud services. | cloud | 16 | 38 |
179
179
  | Heroku | A cloud platform as a service that enables developers to build, run, and operate applications entirely in the cloud. | cloud | 12 | 0 |
180
- | Hetzner | A German cloud hosting provider offering dedicated servers, cloud instances, and storage solutions. | cloud | 14 | 126 |
180
+ | Hetzner | A German cloud hosting provider offering dedicated servers, cloud instances, and storage solutions. | cloud | 15 | 119 |
181
181
  | Hostway (호스트웨이) | A Korean cloud hosting and infrastructure provider. | cloud | 0 | 59 |
182
- | Huawei | A Chinese multinational technology corporation that designs, develops, and sells telecommunications equipment, consumer electronics, and cloud services. | cloud | 338 | 270 |
183
- | IBM | A multinational technology corporation that provides hardware, software, cloud computing, and consulting services. | cloud | 20 | 394 |
184
- | Imperva | A cybersecurity company that provides web application firewall, DDoS protection, and data security solutions. | waf | 1 | 23 |
185
- | Kamatera | A cloud infrastructure provider offering virtual private servers, cloud servers, and managed cloud services. | cloud | 1 | 163 |
186
- | KINX (한국인터넷인프라) | A Korean content delivery network and cloud infrastructure provider. | cdn | 0 | 136 |
187
- | KT Cloud (KT클라우드) | A Korean cloud computing service provided by KT Corporation. | cloud | 0 | 8 |
188
- | Leaseweb | A global hosting and cloud infrastructure provider offering dedicated servers, cloud hosting, and CDN services. | cloud | 0 | 1487 |
182
+ | Huawei | A Chinese multinational technology corporation that designs, develops, and sells telecommunications equipment, consumer electronics, and cloud services. | cloud | 338 | 264 |
183
+ | IBM | A multinational technology corporation that provides hardware, software, cloud computing, and consulting services. | cloud | 20 | 393 |
184
+ | Imperva | A cybersecurity company that provides web application firewall, DDoS protection, and data security solutions. | waf | 1 | 383 |
185
+ | Kamatera | A cloud infrastructure provider offering virtual private servers, cloud servers, and managed cloud services. | cloud | 1 | 158 |
186
+ | KINX (한국인터넷인프라) | A Korean content delivery network and cloud infrastructure provider. | cdn | 0 | 137 |
187
+ | KT Cloud (KT클라우드) | A Korean cloud computing service provided by KT Corporation. | cloud | 0 | 18 |
188
+ | Leaseweb | A global hosting and cloud infrastructure provider offering dedicated servers, cloud hosting, and CDN services. | cloud | 0 | 1493 |
189
189
  | LG U+ (LG유플러스) | A Korean telecommunications company offering CDN services. | cdn | 0 | 168 |
190
- | Microsoft | A multinational technology corporation that develops, manufactures, licenses, supports and sells computer software, consumer electronics and personal computers. Known for products like Windows, Office, Azure cloud services, and Xbox. | cloud | 689 | 2452 |
191
- | Microsoft 365 | A cloud-based productivity suite provided by Microsoft, including Office applications and cloud services. | cloud | 0 | 82 |
190
+ | Microsoft | A multinational technology corporation that develops, manufactures, licenses, supports and sells computer software, consumer electronics and personal computers. Known for products like Windows, Office, Azure cloud services, and Xbox. | cloud | 689 | 1174 |
191
+ | Microsoft 365 | A cloud-based productivity suite provided by Microsoft, including Office applications and cloud services. | cloud | 189 | 82 |
192
192
  | Naver Cloud Platform (네이버 클라우드 플랫폼) | A Korean cloud computing platform provided by Naver Corporation. | cloud | 0 | 73 |
193
193
  | NHN Cloud (NHN클라우드) | A Korean cloud computing platform provided by NHN Corporation. | cloud | 0 | 122 |
194
- | OVHcloud | A French cloud computing company that provides web hosting, dedicated servers, and cloud infrastructure services. | cloud | 3 | 517 |
195
- | Oracle | A multinational technology corporation that provides database software, cloud engineering systems, and enterprise software products. | cloud | 18 | 2329 |
194
+ | OVHcloud | A French cloud computing company that provides web hosting, dedicated servers, and cloud infrastructure services. | cloud | 3 | 509 |
195
+ | Oracle | A multinational technology corporation that provides database software, cloud engineering systems, and enterprise software products. | cloud | 18 | 2385 |
196
196
  | Qrator | A DDoS protection and content delivery network service provider. | cdn | 0 | 19 |
197
- | Quic.cloud | A content delivery network and edge computing platform providing CDN services. | cdn | 0 | 151 |
197
+ | Quic.cloud | A content delivery network and edge computing platform providing CDN services. | cdn | 0 | 155 |
198
198
  | Russian Federal Security Service | A Russian federal executive body responsible for counterintelligence, internal and border security, counterterrorism, and surveillance. | gov | 0 | 17 |
199
199
  | Rackspace | A managed cloud computing company that provides hosting, cloud services, and managed infrastructure solutions. | cloud | 1 | 199 |
200
- | Salesforce | A cloud-based software company that provides customer relationship management services and enterprise cloud computing solutions. | cloud | 39 | 48 |
201
- | Scaleway | A French cloud computing company that provides virtual private servers, bare metal servers, and cloud infrastructure services. | cloud | 1 | 40 |
200
+ | Salesforce | A cloud-based software company that provides customer relationship management services and enterprise cloud computing solutions. | cloud | 39 | 49 |
201
+ | Scaleway | A French cloud computing company that provides virtual private servers, bare metal servers, and cloud infrastructure services. | cloud | 1 | 42 |
202
202
  | SK Broadband (SK브로드밴드) | A Korean telecommunications company offering CDN services. | cdn | 0 | 22 |
203
- | StormWall | A DDoS protection and web application firewall service provider. | cdn | 0 | 20 |
203
+ | StormWall | A DDoS protection and web application firewall service provider. | cdn | 0 | 18 |
204
204
  | Sucuri | A website security and web application firewall service provider. | waf | 0 | 16 |
205
- | Tencent Cloud | A Chinese cloud computing service provider and subsidiary of Tencent, offering cloud infrastructure and platform services. | cloud | 580 | 368 |
205
+ | Tencent Cloud (腾讯云) | A Chinese cloud computing service provider and subsidiary of Tencent, offering cloud infrastructure and platform services. | cloud | 597 | 371 |
206
206
  | United Kingdom Ministry of Defence | A U.K. government department responsible for implementing the defence policy of the United Kingdom and managing the British Armed Forces. | gov | 1 | 0 |
207
207
  | Wasabi | A cloud storage provider offering hot cloud storage services with high performance and low cost. | cloud | 1 | 20 |
208
- | X4B | A DDoS protection and content delivery network service provider. | cdn | 0 | 3 |
209
- | Zoho | An Indian software company that provides cloud-based business software and productivity tools including CRM, email, and office suites. | cloud | 13 | 91 |
210
- | Zscaler | A cloud security company providing secure internet access, cloud security, and zero trust network access services. | cloud | 0 | 247 |
208
+ | X4B | A DDoS protection and content delivery network service provider. | cdn | 0 | 2 |
209
+ | Yandex Cloud | Russian cloud computing and internet services provider, offering infrastructure, storage, and various digital services. | cloud | 56 | 79 |
210
+ | Zoho | An Indian software company that provides cloud-based business software and productivity tools including CRM, email, and office suites. | cloud | 13 | 82 |
211
+ | Zscaler | A cloud security company providing secure internet access, cloud security, and zero trust network access services. | cloud | 0 | 251 |
211
212
  <!--ENDPROVIDERTABLE-->
212
213
 
213
214
  ## Development