cartography 0.95.0__py3-none-any.whl → 0.96.0__py3-none-any.whl

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 cartography might be problematic. Click here for more details.

Files changed (42) hide show
  1. cartography/cli.py +15 -0
  2. cartography/client/core/tx.py +1 -1
  3. cartography/config.py +6 -2
  4. cartography/data/indexes.cypher +1 -2
  5. cartography/data/jobs/cleanup/aws_import_identity_center_cleanup.json +16 -0
  6. cartography/data/jobs/cleanup/{github_users_cleanup.json → github_org_and_users_cleanup.json} +5 -0
  7. cartography/data/jobs/cleanup/github_repos_cleanup.json +25 -0
  8. cartography/graph/querybuilder.py +4 -0
  9. cartography/intel/aws/apigateway.py +3 -3
  10. cartography/intel/aws/ec2/auto_scaling_groups.py +147 -185
  11. cartography/intel/aws/ec2/instances.py +2 -0
  12. cartography/intel/aws/ec2/network_acls.py +209 -0
  13. cartography/intel/aws/ec2/subnets.py +2 -0
  14. cartography/intel/aws/iam.py +4 -3
  15. cartography/intel/aws/identitycenter.py +307 -0
  16. cartography/intel/aws/resources.py +4 -0
  17. cartography/intel/cve/__init__.py +1 -1
  18. cartography/intel/cve/feed.py +10 -7
  19. cartography/intel/github/repos.py +176 -27
  20. cartography/intel/github/users.py +156 -39
  21. cartography/intel/okta/users.py +2 -1
  22. cartography/intel/semgrep/__init__.py +1 -1
  23. cartography/intel/semgrep/dependencies.py +54 -22
  24. cartography/models/aws/ec2/auto_scaling_groups.py +204 -0
  25. cartography/models/aws/ec2/launch_configurations.py +55 -0
  26. cartography/models/aws/ec2/network_acl_rules.py +98 -0
  27. cartography/models/aws/ec2/network_acls.py +86 -0
  28. cartography/models/aws/identitycenter/__init__.py +0 -0
  29. cartography/models/aws/identitycenter/awsidentitycenter.py +44 -0
  30. cartography/models/aws/identitycenter/awspermissionset.py +84 -0
  31. cartography/models/aws/identitycenter/awsssouser.py +68 -0
  32. cartography/models/core/common.py +18 -1
  33. cartography/models/github/orgs.py +26 -0
  34. cartography/models/github/users.py +119 -0
  35. cartography/models/semgrep/dependencies.py +13 -0
  36. cartography-0.96.0.dist-info/METADATA +53 -0
  37. {cartography-0.95.0.dist-info → cartography-0.96.0.dist-info}/RECORD +41 -28
  38. {cartography-0.95.0.dist-info → cartography-0.96.0.dist-info}/WHEEL +1 -1
  39. cartography-0.95.0.dist-info/METADATA +0 -53
  40. {cartography-0.95.0.dist-info → cartography-0.96.0.dist-info}/LICENSE +0 -0
  41. {cartography-0.95.0.dist-info → cartography-0.96.0.dist-info}/entry_points.txt +0 -0
  42. {cartography-0.95.0.dist-info → cartography-0.96.0.dist-info}/top_level.txt +0 -0
@@ -1,53 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cartography
3
- Version: 0.95.0
4
- Summary: Explore assets and their relationships across your technical infrastructure.
5
- Home-page: https://www.github.com/cartography-cncf/cartography
6
- Maintainer: Cartography Contributors
7
- License: apache2
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Natural Language :: English
12
- Classifier: Programming Language :: Python
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Topic :: Security
16
- Classifier: Topic :: Software Development :: Libraries
17
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
- Description-Content-Type: text/markdown
19
- License-File: LICENSE
20
- Requires-Dist: backoff >=2.1.2
21
- Requires-Dist: boto3 >=1.15.1
22
- Requires-Dist: botocore >=1.18.1
23
- Requires-Dist: dnspython >=1.15.0
24
- Requires-Dist: neo4j <5.0.0,>=4.4.4
25
- Requires-Dist: policyuniverse >=1.1.0.0
26
- Requires-Dist: google-api-python-client >=1.7.8
27
- Requires-Dist: oauth2client >=4.1.3
28
- Requires-Dist: marshmallow >=3.0.0rc7
29
- Requires-Dist: oci >=2.71.0
30
- Requires-Dist: okta <1.0.0
31
- Requires-Dist: pyyaml >=5.3.1
32
- Requires-Dist: requests >=2.22.0
33
- Requires-Dist: statsd
34
- Requires-Dist: packaging
35
- Requires-Dist: python-digitalocean >=1.16.0
36
- Requires-Dist: adal >=1.2.4
37
- Requires-Dist: azure-cli-core >=2.26.0
38
- Requires-Dist: azure-mgmt-compute >=5.0.0
39
- Requires-Dist: azure-mgmt-resource >=10.2.0
40
- Requires-Dist: azure-mgmt-cosmosdb >=6.0.0
41
- Requires-Dist: msrestazure >=0.6.4
42
- Requires-Dist: azure-mgmt-storage >=16.0.0
43
- Requires-Dist: azure-mgmt-sql <=1.0.0
44
- Requires-Dist: azure-identity >=1.5.0
45
- Requires-Dist: kubernetes >=22.6.0
46
- Requires-Dist: pdpyras >=4.3.0
47
- Requires-Dist: crowdstrike-falconpy >=0.5.1
48
- Requires-Dist: python-dateutil
49
- Requires-Dist: xmltodict
50
- Requires-Dist: duo-client
51
- Requires-Dist: importlib-resources ; python_version<"3.7"
52
-
53
- file: README.md