cloudcheck 6.0.0.655__tar.gz → 6.0.0.679__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.
Potentially problematic release.
This version of cloudcheck might be problematic. Click here for more details.
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/PKG-INFO +10 -8
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/README.md +9 -7
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloud_providers.json +597 -70
- cloudcheck-6.0.0.679/cloudcheck/providers/arvancloud.py +22 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/cloudfront.py +2 -2
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/test/test_cloudcheck.py +1 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/pyproject.toml +1 -1
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/__init__.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/cloudcheck.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/helpers.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/__init__.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/akamai.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/amazon.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/azure.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/base.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/cloudflare.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/digitalocean.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/fastly.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/github.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/google.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/hetzner.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/imperva.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/oracle.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/providers/zoho.py +0 -0
- {cloudcheck-6.0.0.655 → cloudcheck-6.0.0.679}/cloudcheck/test/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudcheck
|
|
3
|
-
Version: 6.0.0.
|
|
3
|
+
Version: 6.0.0.679
|
|
4
4
|
Summary: Check whether an IP address belongs to a cloud provider
|
|
5
5
|
Home-page: https://github.com/blacklanternsecurity/cloudcheck
|
|
6
6
|
License: GPL-3.0
|
|
@@ -55,15 +55,17 @@ print(subnet) # IPv4Network('168.62.0.0/19')
|
|
|
55
55
|
~~~
|
|
56
56
|
|
|
57
57
|
## Supported cloud providers
|
|
58
|
-
-
|
|
58
|
+
- Akamai ([source](https://techdocs.akamai.com/property-manager/pdfs/akamai_ipv4_ipv6_CIDRs-txt.zip))
|
|
59
|
+
- Amazon ([source](https://ip-ranges.amazonaws.com/ip-ranges.json))
|
|
60
|
+
- Arvancloud ([source](https://www.arvancloud.ir/en/ips.txt))
|
|
59
61
|
- Azure ([source](https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519))
|
|
60
|
-
- Google ([source](https://www.gstatic.com/ipranges/cloud.json))
|
|
61
|
-
- Oracle Cloud ([source](https://docs.cloud.oracle.com/en-us/iaas/tools/public_ip_ranges.json))
|
|
62
|
-
- DigitalOcean ([source](http://digitalocean.com/geo/google.csv))
|
|
63
62
|
- Cloudflare ([source](https://api.cloudflare.com/client/v4/ips))
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
- Zoho ([source](https://github.com/blacklanternsecurity/cloudcheck/blob/master/cloudcheck/providers/zoho.py))
|
|
63
|
+
- Cloudfront ([source](https://d7uri8nf7uskq.cloudfront.net/tools/list-cloudfront-ips))
|
|
64
|
+
- DigitalOcean ([source](http://digitalocean.com/geo/google.csv))
|
|
67
65
|
- Fastly ([source](https://api.fastly.com/public-ip-list))
|
|
66
|
+
- Github ([source](https://api.github.com/meta))
|
|
67
|
+
- Google ([source](https://www.gstatic.com/ipranges/cloud.json))
|
|
68
68
|
- Imperva ([source](https://my.imperva.com/api/integration/v1/ips))
|
|
69
|
+
- Oracle Cloud ([source](https://docs.cloud.oracle.com/en-us/iaas/tools/public_ip_ranges.json))
|
|
70
|
+
- Zoho ([source](https://github.com/blacklanternsecurity/cloudcheck/blob/master/cloudcheck/providers/zoho.py))
|
|
69
71
|
|
|
@@ -31,14 +31,16 @@ print(subnet) # IPv4Network('168.62.0.0/19')
|
|
|
31
31
|
~~~
|
|
32
32
|
|
|
33
33
|
## Supported cloud providers
|
|
34
|
-
-
|
|
34
|
+
- Akamai ([source](https://techdocs.akamai.com/property-manager/pdfs/akamai_ipv4_ipv6_CIDRs-txt.zip))
|
|
35
|
+
- Amazon ([source](https://ip-ranges.amazonaws.com/ip-ranges.json))
|
|
36
|
+
- Arvancloud ([source](https://www.arvancloud.ir/en/ips.txt))
|
|
35
37
|
- Azure ([source](https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519))
|
|
36
|
-
- Google ([source](https://www.gstatic.com/ipranges/cloud.json))
|
|
37
|
-
- Oracle Cloud ([source](https://docs.cloud.oracle.com/en-us/iaas/tools/public_ip_ranges.json))
|
|
38
|
-
- DigitalOcean ([source](http://digitalocean.com/geo/google.csv))
|
|
39
38
|
- Cloudflare ([source](https://api.cloudflare.com/client/v4/ips))
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
- Zoho ([source](https://github.com/blacklanternsecurity/cloudcheck/blob/master/cloudcheck/providers/zoho.py))
|
|
39
|
+
- Cloudfront ([source](https://d7uri8nf7uskq.cloudfront.net/tools/list-cloudfront-ips))
|
|
40
|
+
- DigitalOcean ([source](http://digitalocean.com/geo/google.csv))
|
|
43
41
|
- Fastly ([source](https://api.fastly.com/public-ip-list))
|
|
42
|
+
- Github ([source](https://api.github.com/meta))
|
|
43
|
+
- Google ([source](https://www.gstatic.com/ipranges/cloud.json))
|
|
44
44
|
- Imperva ([source](https://my.imperva.com/api/integration/v1/ips))
|
|
45
|
+
- Oracle Cloud ([source](https://docs.cloud.oracle.com/en-us/iaas/tools/public_ip_ranges.json))
|
|
46
|
+
- Zoho ([source](https://github.com/blacklanternsecurity/cloudcheck/blob/master/cloudcheck/providers/zoho.py))
|