cloudcheck 7.0.694__tar.gz → 7.1.5__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.

Files changed (26) hide show
  1. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/PKG-INFO +4 -4
  2. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/README.md +1 -1
  3. cloudcheck-7.1.5/cloud_providers.json +31620 -0
  4. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/__init__.py +1 -1
  5. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/__init__.py +1 -1
  6. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/base.py +1 -0
  7. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/pyproject.toml +5 -5
  8. cloudcheck-7.0.694/cloud_providers.json +0 -30634
  9. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/cloudcheck.py +0 -0
  10. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/helpers.py +0 -0
  11. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/akamai.py +0 -0
  12. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/amazon.py +0 -0
  13. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/arvancloud.py +0 -0
  14. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/azure.py +0 -0
  15. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/cloudflare.py +0 -0
  16. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/cloudfront.py +0 -0
  17. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/digitalocean.py +0 -0
  18. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/fastly.py +0 -0
  19. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/github.py +0 -0
  20. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/google.py +0 -0
  21. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/hetzner.py +0 -0
  22. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/imperva.py +0 -0
  23. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/oracle.py +0 -0
  24. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/providers/zoho.py +0 -0
  25. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/test/__init__.py +0 -0
  26. {cloudcheck-7.0.694 → cloudcheck-7.1.5}/cloudcheck/test/test_cloudcheck.py +0 -0
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: cloudcheck
3
- Version: 7.0.694
3
+ Version: 7.1.5
4
4
  Summary: Check whether an IP address belongs to a cloud provider
5
- Home-page: https://github.com/blacklanternsecurity/cloudcheck
6
5
  License: GPL-3.0
7
6
  Author: TheTechromancer
8
7
  Requires-Python: >=3.9,<4.0
@@ -18,6 +17,7 @@ Requires-Dist: pydantic (>=2.4.2,<3.0.0)
18
17
  Requires-Dist: radixtarget (>=3.0.13,<4.0.0)
19
18
  Requires-Dist: regex (>=2024.4.16,<2025.0.0)
20
19
  Project-URL: Discord, https://discord.com/invite/PZqkgxu5SA
20
+ Project-URL: Homepage, https://github.com/blacklanternsecurity/cloudcheck
21
21
  Project-URL: PyPi, https://pypi.org/project/cloudcheck/
22
22
  Project-URL: Repository, https://github.com/blacklanternsecurity/cloudcheck
23
23
  Description-Content-Type: text/markdown
@@ -28,7 +28,7 @@ A simple Python utility to check whether an IP address or hostname belongs to a
28
28
 
29
29
  `cloud_providers.json` contains lists of domains and up-to-date CIDRs for each cloud provider (updated daily via CI/CD).
30
30
 
31
- Used by [Bighuge BLS OSINT Tool (BBOT)](https://github.com/blacklanternsecurity/bbot).
31
+ Used by [BBOT](https://github.com/blacklanternsecurity/bbot) and [BBOT Server](https://github.com/blacklanternsecurity/bbot-server).
32
32
 
33
33
  ## Installation
34
34
  ~~~bash
@@ -4,7 +4,7 @@ A simple Python utility to check whether an IP address or hostname belongs to a
4
4
 
5
5
  `cloud_providers.json` contains lists of domains and up-to-date CIDRs for each cloud provider (updated daily via CI/CD).
6
6
 
7
- Used by [Bighuge BLS OSINT Tool (BBOT)](https://github.com/blacklanternsecurity/bbot).
7
+ Used by [BBOT](https://github.com/blacklanternsecurity/bbot) and [BBOT Server](https://github.com/blacklanternsecurity/bbot-server).
8
8
 
9
9
  ## Installation
10
10
  ~~~bash