cartography 0.113.0__py3-none-any.whl → 0.114.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.
- cartography/_version.py +2 -2
- cartography/cli.py +8 -0
- cartography/config.py +4 -0
- cartography/data/indexes.cypher +0 -27
- cartography/intel/aws/iam.py +741 -492
- cartography/intel/aws/organizations.py +7 -8
- cartography/intel/aws/permission_relationships.py +4 -16
- cartography/intel/azure/__init__.py +16 -0
- cartography/intel/azure/app_service.py +105 -0
- cartography/intel/azure/functions.py +124 -0
- cartography/intel/entra/__init__.py +31 -0
- cartography/intel/entra/app_role_assignments.py +277 -0
- cartography/intel/entra/applications.py +4 -238
- cartography/intel/entra/federation/__init__.py +0 -0
- cartography/intel/entra/federation/aws_identity_center.py +77 -0
- cartography/intel/entra/service_principals.py +217 -0
- cartography/intel/gcp/__init__.py +136 -440
- cartography/intel/gcp/clients.py +65 -0
- cartography/intel/gcp/compute.py +18 -44
- cartography/intel/gcp/crm/__init__.py +0 -0
- cartography/intel/gcp/crm/folders.py +108 -0
- cartography/intel/gcp/crm/orgs.py +65 -0
- cartography/intel/gcp/crm/projects.py +109 -0
- cartography/intel/gcp/gke.py +72 -113
- cartography/intel/github/__init__.py +41 -0
- cartography/intel/github/commits.py +423 -0
- cartography/intel/github/repos.py +73 -39
- cartography/models/aws/iam/access_key.py +103 -0
- cartography/models/aws/iam/account_role.py +24 -0
- cartography/models/aws/iam/federated_principal.py +60 -0
- cartography/models/aws/iam/group.py +60 -0
- cartography/models/aws/iam/group_membership.py +26 -0
- cartography/models/aws/iam/inline_policy.py +78 -0
- cartography/models/aws/iam/managed_policy.py +51 -0
- cartography/models/aws/iam/policy_statement.py +57 -0
- cartography/models/aws/iam/role.py +83 -0
- cartography/models/aws/iam/root_principal.py +52 -0
- cartography/models/aws/iam/service_principal.py +30 -0
- cartography/models/aws/iam/sts_assumerole_allow.py +38 -0
- cartography/models/aws/iam/user.py +54 -0
- cartography/models/azure/__init__.py +0 -0
- cartography/models/azure/app_service.py +59 -0
- cartography/models/azure/function_app.py +59 -0
- cartography/models/entra/entra_user_to_aws_sso.py +41 -0
- cartography/models/entra/service_principal.py +104 -0
- cartography/models/gcp/compute/subnet.py +74 -0
- cartography/models/gcp/crm/__init__.py +0 -0
- cartography/models/gcp/crm/folders.py +98 -0
- cartography/models/gcp/crm/organizations.py +21 -0
- cartography/models/gcp/crm/projects.py +100 -0
- cartography/models/gcp/gke.py +69 -0
- cartography/models/github/commits.py +63 -0
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/METADATA +7 -5
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/RECORD +58 -32
- cartography/data/jobs/cleanup/aws_import_account_access_key_cleanup.json +0 -17
- cartography/data/jobs/cleanup/aws_import_groups_cleanup.json +0 -13
- cartography/data/jobs/cleanup/aws_import_principals_cleanup.json +0 -30
- cartography/data/jobs/cleanup/aws_import_roles_cleanup.json +0 -13
- cartography/data/jobs/cleanup/aws_import_users_cleanup.json +0 -8
- cartography/data/jobs/cleanup/gcp_compute_vpc_subnet_cleanup.json +0 -35
- cartography/data/jobs/cleanup/gcp_crm_folder_cleanup.json +0 -23
- cartography/data/jobs/cleanup/gcp_crm_organization_cleanup.json +0 -17
- cartography/data/jobs/cleanup/gcp_crm_project_cleanup.json +0 -23
- cartography/data/jobs/cleanup/gcp_gke_cluster_cleanup.json +0 -17
- cartography/intel/gcp/crm.py +0 -355
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/WHEEL +0 -0
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/entry_points.txt +0 -0
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/licenses/LICENSE +0 -0
- {cartography-0.113.0.dist-info → cartography-0.114.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
|
|
3
|
+
from cartography.models.core.common import PropertyRef
|
|
4
|
+
from cartography.models.core.nodes import CartographyNodeProperties
|
|
5
|
+
from cartography.models.core.nodes import CartographyNodeSchema
|
|
6
|
+
from cartography.models.core.relationships import CartographyRelProperties
|
|
7
|
+
from cartography.models.core.relationships import CartographyRelSchema
|
|
8
|
+
from cartography.models.core.relationships import LinkDirection
|
|
9
|
+
from cartography.models.core.relationships import make_target_node_matcher
|
|
10
|
+
from cartography.models.core.relationships import TargetNodeMatcher
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@dataclass(frozen=True)
|
|
14
|
+
class GCPGKEClusterNodeProperties(CartographyNodeProperties):
|
|
15
|
+
id: PropertyRef = PropertyRef("id", extra_index=True)
|
|
16
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
17
|
+
name: PropertyRef = PropertyRef("name")
|
|
18
|
+
self_link: PropertyRef = PropertyRef("self_link")
|
|
19
|
+
description: PropertyRef = PropertyRef("description")
|
|
20
|
+
logging_service: PropertyRef = PropertyRef("logging_service")
|
|
21
|
+
monitoring_service: PropertyRef = PropertyRef("monitoring_service")
|
|
22
|
+
network: PropertyRef = PropertyRef("network")
|
|
23
|
+
subnetwork: PropertyRef = PropertyRef("subnetwork")
|
|
24
|
+
cluster_ipv4cidr: PropertyRef = PropertyRef("cluster_ipv4cidr")
|
|
25
|
+
zone: PropertyRef = PropertyRef("zone")
|
|
26
|
+
location: PropertyRef = PropertyRef("location")
|
|
27
|
+
endpoint: PropertyRef = PropertyRef("endpoint")
|
|
28
|
+
initial_version: PropertyRef = PropertyRef("initial_version")
|
|
29
|
+
current_master_version: PropertyRef = PropertyRef("current_master_version")
|
|
30
|
+
status: PropertyRef = PropertyRef("status")
|
|
31
|
+
services_ipv4cidr: PropertyRef = PropertyRef("services_ipv4cidr")
|
|
32
|
+
database_encryption: PropertyRef = PropertyRef("database_encryption")
|
|
33
|
+
network_policy: PropertyRef = PropertyRef("network_policy")
|
|
34
|
+
master_authorized_networks: PropertyRef = PropertyRef("master_authorized_networks")
|
|
35
|
+
legacy_abac: PropertyRef = PropertyRef("legacy_abac")
|
|
36
|
+
shielded_nodes: PropertyRef = PropertyRef("shielded_nodes")
|
|
37
|
+
private_nodes: PropertyRef = PropertyRef("private_nodes")
|
|
38
|
+
private_endpoint_enabled: PropertyRef = PropertyRef("private_endpoint_enabled")
|
|
39
|
+
private_endpoint: PropertyRef = PropertyRef("private_endpoint")
|
|
40
|
+
public_endpoint: PropertyRef = PropertyRef("public_endpoint")
|
|
41
|
+
masterauth_username: PropertyRef = PropertyRef("masterauth_username")
|
|
42
|
+
masterauth_password: PropertyRef = PropertyRef("masterauth_password")
|
|
43
|
+
created_at: PropertyRef = PropertyRef("created_at")
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@dataclass(frozen=True)
|
|
47
|
+
class GCPGKEClusterToProjectRelProperties(CartographyRelProperties):
|
|
48
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@dataclass(frozen=True)
|
|
52
|
+
# (:GCPProject)-[:RESOURCE]->(:GKECluster)
|
|
53
|
+
class GCPGKEClusterToProjectRel(CartographyRelSchema):
|
|
54
|
+
target_node_label: str = "GCPProject"
|
|
55
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
56
|
+
{"id": PropertyRef("PROJECT_ID", set_in_kwargs=True)}
|
|
57
|
+
)
|
|
58
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
59
|
+
rel_label: str = "RESOURCE"
|
|
60
|
+
properties: GCPGKEClusterToProjectRelProperties = (
|
|
61
|
+
GCPGKEClusterToProjectRelProperties()
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
@dataclass(frozen=True)
|
|
66
|
+
class GCPGKEClusterSchema(CartographyNodeSchema):
|
|
67
|
+
label: str = "GKECluster"
|
|
68
|
+
properties: GCPGKEClusterNodeProperties = GCPGKEClusterNodeProperties()
|
|
69
|
+
sub_resource_relationship: GCPGKEClusterToProjectRel = GCPGKEClusterToProjectRel()
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Data model for GitHub commit tracking, specifically for tracking which GitHubUsers have committed
|
|
3
|
+
to which GitHubRepositories in the last 30 days.
|
|
4
|
+
|
|
5
|
+
This uses MatchLinks to connect existing GitHubUser nodes to GitHubRepository nodes based on
|
|
6
|
+
commit data from a separate GitHub API call.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from dataclasses import dataclass
|
|
10
|
+
|
|
11
|
+
from cartography.models.core.common import PropertyRef
|
|
12
|
+
from cartography.models.core.relationships import CartographyRelProperties
|
|
13
|
+
from cartography.models.core.relationships import CartographyRelSchema
|
|
14
|
+
from cartography.models.core.relationships import LinkDirection
|
|
15
|
+
from cartography.models.core.relationships import make_source_node_matcher
|
|
16
|
+
from cartography.models.core.relationships import make_target_node_matcher
|
|
17
|
+
from cartography.models.core.relationships import SourceNodeMatcher
|
|
18
|
+
from cartography.models.core.relationships import TargetNodeMatcher
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
@dataclass(frozen=True)
|
|
22
|
+
class GitHubUserCommittedToRepoRelProperties(CartographyRelProperties):
|
|
23
|
+
"""
|
|
24
|
+
Properties for the COMMITTED_TO relationship between GitHubUser and GitHubRepository.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
# Required for all MatchLinks
|
|
28
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
29
|
+
_sub_resource_label: PropertyRef = PropertyRef(
|
|
30
|
+
"_sub_resource_label", set_in_kwargs=True
|
|
31
|
+
)
|
|
32
|
+
_sub_resource_id: PropertyRef = PropertyRef("_sub_resource_id", set_in_kwargs=True)
|
|
33
|
+
|
|
34
|
+
# Rich relationship properties
|
|
35
|
+
commit_count: PropertyRef = PropertyRef("commit_count")
|
|
36
|
+
last_commit_date: PropertyRef = PropertyRef("last_commit_date")
|
|
37
|
+
first_commit_date: PropertyRef = PropertyRef("first_commit_date")
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@dataclass(frozen=True)
|
|
41
|
+
class GitHubUserCommittedToRepoRel(CartographyRelSchema):
|
|
42
|
+
"""
|
|
43
|
+
MatchLink schema for connecting GitHubUser nodes to GitHubRepository nodes
|
|
44
|
+
based on commits in the last 30 days.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
target_node_label: str = "GitHubRepository"
|
|
48
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
49
|
+
{
|
|
50
|
+
"id": PropertyRef("repo_url"),
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
source_node_label: str = "GitHubUser"
|
|
54
|
+
source_node_matcher: SourceNodeMatcher = make_source_node_matcher(
|
|
55
|
+
{
|
|
56
|
+
"id": PropertyRef("user_url"),
|
|
57
|
+
}
|
|
58
|
+
)
|
|
59
|
+
direction: LinkDirection = LinkDirection.OUTWARD
|
|
60
|
+
rel_label: str = "COMMITTED_TO"
|
|
61
|
+
properties: GitHubUserCommittedToRepoRelProperties = (
|
|
62
|
+
GitHubUserCommittedToRepoRelProperties()
|
|
63
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cartography
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.114.0
|
|
4
4
|
Summary: Explore assets and their relationships across your technical infrastructure.
|
|
5
5
|
Maintainer: Cartography Contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -25,7 +25,7 @@ Requires-Dist: backoff>=2.1.2
|
|
|
25
25
|
Requires-Dist: boto3>=1.15.1
|
|
26
26
|
Requires-Dist: botocore>=1.18.1
|
|
27
27
|
Requires-Dist: dnspython>=1.15.0
|
|
28
|
-
Requires-Dist: neo4j>=
|
|
28
|
+
Requires-Dist: neo4j>=5.28.2
|
|
29
29
|
Requires-Dist: policyuniverse>=1.1.0.0
|
|
30
30
|
Requires-Dist: google-api-python-client>=1.7.8
|
|
31
31
|
Requires-Dist: google-auth>=2.37.0
|
|
@@ -42,6 +42,7 @@ Requires-Dist: azure-cli-core>=2.26.0
|
|
|
42
42
|
Requires-Dist: azure-mgmt-compute>=5.0.0
|
|
43
43
|
Requires-Dist: azure-mgmt-resource>=10.2.0
|
|
44
44
|
Requires-Dist: azure-mgmt-cosmosdb>=6.0.0
|
|
45
|
+
Requires-Dist: azure-mgmt-web>=7.0.0
|
|
45
46
|
Requires-Dist: msrestazure>=0.6.4
|
|
46
47
|
Requires-Dist: azure-mgmt-storage>=16.0.0
|
|
47
48
|
Requires-Dist: azure-mgmt-sql<=1.0.0
|
|
@@ -55,6 +56,7 @@ Requires-Dist: xmltodict
|
|
|
55
56
|
Requires-Dist: duo-client
|
|
56
57
|
Requires-Dist: cloudflare<5.0.0,>=4.1.0
|
|
57
58
|
Requires-Dist: scaleway>=2.9.0
|
|
59
|
+
Requires-Dist: google-cloud-resource-manager>=1.14.2
|
|
58
60
|
Dynamic: license-file
|
|
59
61
|
|
|
60
62
|

|
|
@@ -95,10 +97,10 @@ You can learn more about the story behind Cartography in our [presentation at BS
|
|
|
95
97
|
- [Keycloak](https://cartography-cncf.github.io/cartography/modules/keycloak/index.html) - Realms, Users, Groups, Roles, Scopes, Clients, IdentityProviders, Authentication Flows, Authentication Executions, Organizations, Organization Domains
|
|
96
98
|
- [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container, ServiceAccount, Role, RoleBinding, ClusterRole, ClusterRoleBinding, OIDCProvider
|
|
97
99
|
- [Lastpass](https://cartography-cncf.github.io/cartography/modules/lastpass/index.html) - users
|
|
98
|
-
- [Microsoft Azure](https://cartography-cncf.github.io/cartography/modules/azure/index.html) -
|
|
99
|
-
- [Microsoft Entra ID](https://cartography-cncf.github.io/cartography/modules/entra/index.html) - Users
|
|
100
|
+
- [Microsoft Azure](https://cartography-cncf.github.io/cartography/modules/azure/index.html) - App Service, CosmosDB, Functions, SQL, Storage, Virtual Machine
|
|
101
|
+
- [Microsoft Entra ID](https://cartography-cncf.github.io/cartography/modules/entra/index.html) - Users, Groups, Applications, OUs, App Roles, federation to AWS Identity Center
|
|
100
102
|
- [NIST CVE](https://cartography-cncf.github.io/cartography/modules/cve/index.html) - Common Vulnerabilities and Exposures (CVE) data from NIST database
|
|
101
|
-
- [Okta](https://cartography-cncf.github.io/cartography/modules/okta/index.html) - users, groups, organizations, roles, applications, factors, trusted origins, reply URIs
|
|
103
|
+
- [Okta](https://cartography-cncf.github.io/cartography/modules/okta/index.html) - users, groups, organizations, roles, applications, factors, trusted origins, reply URIs, federation to AWS roles, federation to AWS Identity Center
|
|
102
104
|
- [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) - Organization, AdminApiKey, User, Project, ServiceAccount, ApiKey
|
|
103
105
|
- [Oracle Cloud Infrastructure](https://cartography-cncf.github.io/cartography/modules/oci/index.html) - IAM
|
|
104
106
|
- [PagerDuty](https://cartography-cncf.github.io/cartography/modules/pagerduty/index.html) - Users, teams, services, schedules, escalation policies, integrations, vendors
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
cartography/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
cartography/__main__.py,sha256=y5iqUrj4BmqZfjeDT-9balzpXeMARgHeIedRMRI1gr8,100
|
|
3
|
-
cartography/_version.py,sha256=
|
|
4
|
-
cartography/cli.py,sha256=
|
|
5
|
-
cartography/config.py,sha256=
|
|
3
|
+
cartography/_version.py,sha256=9sbPDJrDtsCSI0CVxWd_hlSTh-cScOFoCY8RBWcZND4,708
|
|
4
|
+
cartography/cli.py,sha256=e2b5nlcFgG9D0vmr39BtNdi0r7tT6OYyvI-bxjzc5-c,49510
|
|
5
|
+
cartography/config.py,sha256=aXOnUZP4JoOhTGu3wM--eEZ0HAR24W2ux3LmLp_410Q,18591
|
|
6
6
|
cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
cartography/stats.py,sha256=N95prYlSzY8U52VFgKIDgOWOawu5Mig4N7GcVp3binQ,4420
|
|
8
8
|
cartography/sync.py,sha256=VzEKb3FNVZwN1GHk1l4MRPcL50ipM2X_NMdGCc_uYoI,13974
|
|
@@ -14,7 +14,7 @@ cartography/client/aws/iam.py,sha256=dYsGikc36DEsSeR2XVOVFFUDwuU9yWj_EVkpgVYCFgM
|
|
|
14
14
|
cartography/client/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
cartography/client/core/tx.py,sha256=Xx6_a5u7PE5pyREuBL_J39ORcafqieFf4KdosaEv1c4,13530
|
|
16
16
|
cartography/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
cartography/data/indexes.cypher,sha256=
|
|
17
|
+
cartography/data/indexes.cypher,sha256=J2iwuStx4MdoM_qrL1HwFx5rU_Fxt3BTY3wRNwU6DTE,20273
|
|
18
18
|
cartography/data/permission_relationships.yaml,sha256=RuKGGc_3ZUQ7ag0MssB8k_zaonCkVM5E8I_svBWTmGc,969
|
|
19
19
|
cartography/data/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
cartography/data/jobs/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,7 +30,6 @@ cartography/data/jobs/analysis/gsuite_human_link.json,sha256=ArWA51fNIeeXwYiroJb
|
|
|
30
30
|
cartography/data/jobs/analysis/keycloak_inheritance.json,sha256=LWxIZGeI9O7rSNcdpMdhTBcbVkAW2twGleph5oEzGxU,1851
|
|
31
31
|
cartography/data/jobs/cleanup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
cartography/data/jobs/cleanup/aws_account_cleanup.json,sha256=DEB4h6Z4NSpYaLXECPhNk8HHbT0XNlqUA01pXIskBxc,473
|
|
33
|
-
cartography/data/jobs/cleanup/aws_import_account_access_key_cleanup.json,sha256=UCrAXf-8yQIoUa843VLLTpqrSpNa753c1cxzg32oqU0,737
|
|
34
33
|
cartography/data/jobs/cleanup/aws_import_config_cleanup.json,sha256=VCAJjEnFcQUR16VxKdpsOkBJEnhMuLk-7Kgm_p9k1NM,754
|
|
35
34
|
cartography/data/jobs/cleanup/aws_import_ec2_launch_configurations_cleanup.json,sha256=x9IIzb9Sr1353ygkA-qqUUbZS9XO2v3GzUHe-0J4Pw8,281
|
|
36
35
|
cartography/data/jobs/cleanup/aws_import_ecr_cleanup.json,sha256=7Sga9WlbhHe-VyoFaF0LrlhbAFvSSOjVKiRf_VW8To8,1355
|
|
@@ -38,15 +37,12 @@ cartography/data/jobs/cleanup/aws_import_ecs_cleanup.json,sha256=6HtmZy7gNC0ZxLU
|
|
|
38
37
|
cartography/data/jobs/cleanup/aws_import_elastic_ip_addresses_cleanup.json,sha256=Gd4cppQTr9X4646UNS8g0VLR1eSOm8r0GjBxQMuuEic,1043
|
|
39
38
|
cartography/data/jobs/cleanup/aws_import_elasticache_cleanup.json,sha256=wpHgX6CLBrQG6n-7foB7T8WVomKZ4lmPaXe6D1kNDFo,961
|
|
40
39
|
cartography/data/jobs/cleanup/aws_import_es_cleanup.json,sha256=VqRqiMcT0Ag0Qif2g0oLG1-Sm2JxDLay6j6pBnwgL8s,608
|
|
41
|
-
cartography/data/jobs/cleanup/aws_import_groups_cleanup.json,sha256=QSdWIpC_Ru4TFBm9I5mpI-ZHyusbzCzCePWN-yn8TQU,463
|
|
42
40
|
cartography/data/jobs/cleanup/aws_import_groups_membership_cleanup.json,sha256=OSeasbv01pn47J1ib3yal_dAzbEOCZVJnldMqK0SAOQ,292
|
|
43
41
|
cartography/data/jobs/cleanup/aws_import_groups_policy_cleanup.json,sha256=U_yKHAsjHoI9fiiTqGyhlMazgeZumlZwMO70CpJpuAM,309
|
|
44
42
|
cartography/data/jobs/cleanup/aws_import_internet_gateways_cleanup.json,sha256=SHHrR9pX0V1r-RxwJggHGeFA7JVQAAK02D-n-vqOvdU,287
|
|
45
43
|
cartography/data/jobs/cleanup/aws_import_kms_cleanup.json,sha256=NU9doXVk4UmAY59aYnld95Wc1b8DrfCbvJltUsATxko,1441
|
|
46
|
-
cartography/data/jobs/cleanup/aws_import_principals_cleanup.json,sha256=yrI1FISGTlgaUZXFSj7XUCNzRoLqkcavLur4Lw4zSmU,1363
|
|
47
44
|
cartography/data/jobs/cleanup/aws_import_redshift_clusters_cleanup.json,sha256=TNQ93Z7pPchdBAp3WiuoZMeDWdr_WQ139HiDPl32WhE,1963
|
|
48
45
|
cartography/data/jobs/cleanup/aws_import_reserved_instances_cleanup.json,sha256=P98o_cdNpso732eE-FjK4UYMp__--ZuedmiA3aXeQig,524
|
|
49
|
-
cartography/data/jobs/cleanup/aws_import_roles_cleanup.json,sha256=z6M8to_4TcOx4TKVbtfu86gRQgbDfVlJmRn3voNXbaI,500
|
|
50
46
|
cartography/data/jobs/cleanup/aws_import_roles_policy_cleanup.json,sha256=qssEDBXg5yVaOLg2lpsrnPTHBfW7ERD9BMeciTm22oM,307
|
|
51
47
|
cartography/data/jobs/cleanup/aws_import_s3_acl_cleanup.json,sha256=AmQDF8VZwXLtZ9cYe4xB7uY-VA3BMhc1YUS8HJKZ2q4,533
|
|
52
48
|
cartography/data/jobs/cleanup/aws_import_s3_buckets_cleanup.json,sha256=zF_TRTZGorQO6SIXryO3qAUVWM8We2fBABuTS3rflQU,756
|
|
@@ -54,7 +50,6 @@ cartography/data/jobs/cleanup/aws_import_securityhub_cleanup.json,sha256=WO6OrIF
|
|
|
54
50
|
cartography/data/jobs/cleanup/aws_import_sqs_queues_cleanup.json,sha256=Mla8y-CWaQdPJO9IDmWDz_zCAuclcJ4GRhlAlYVj_qw,629
|
|
55
51
|
cartography/data/jobs/cleanup/aws_import_tags_cleanup.json,sha256=mVOmhpoeHYItYQFATlTTeBhUt2GipAliRhh69zQcHok,7360
|
|
56
52
|
cartography/data/jobs/cleanup/aws_import_tgw_cleanup.json,sha256=jHlKj2jcI3avvDMOCbFd89hTS0HcNVrZinJ4AYgykQs,2097
|
|
57
|
-
cartography/data/jobs/cleanup/aws_import_users_cleanup.json,sha256=TY0VFJlbgd3ClmuHSzNuNAu-tDWFbAeEGWIZz-rmlGg,257
|
|
58
53
|
cartography/data/jobs/cleanup/aws_ingest_ec2_auto_scaling_groups_cleanup.json,sha256=6EXQO_xH3kXkgxN_H3j45LKEN_TZucLg__g-lD3gyfI,1802
|
|
59
54
|
cartography/data/jobs/cleanup/aws_ingest_load_balancers_cleanup.json,sha256=1vidNCrITt-_bxw5lsSzyqGsuyWiNhI6-bnuv5lMvRI,1729
|
|
60
55
|
cartography/data/jobs/cleanup/aws_ingest_load_balancers_v2_cleanup.json,sha256=kIMc5YTkWDOLdHCOAHPb7Q8Oz9pP6GzGO9gjBo0ZhR0,1596
|
|
@@ -81,11 +76,6 @@ cartography/data/jobs/cleanup/gcp_compute_firewall_cleanup.json,sha256=FVNJ8EPaP
|
|
|
81
76
|
cartography/data/jobs/cleanup/gcp_compute_forwarding_rules_cleanup.json,sha256=1xP5eTaHkAuVIRU5fHAOIv2tG90rdl2sFpIm-1Yv39E,992
|
|
82
77
|
cartography/data/jobs/cleanup/gcp_compute_instance_cleanup.json,sha256=i_Ni3HfuralAWxePLVAv09DNWwTl6_8l6q7HnlPO254,2774
|
|
83
78
|
cartography/data/jobs/cleanup/gcp_compute_vpc_cleanup.json,sha256=MipVxpRuzsYt2F1-ioZxGg94MsL8yK6ciULjEtMWG1Y,355
|
|
84
|
-
cartography/data/jobs/cleanup/gcp_compute_vpc_subnet_cleanup.json,sha256=4OhOBCSAbaED-HdKTCcaYyYjyq4HCRIR05qYy4ZdI2c,1610
|
|
85
|
-
cartography/data/jobs/cleanup/gcp_crm_folder_cleanup.json,sha256=hjEcSzG775un37uPBGz3FWm6nSQPQx9glWvGi1DrRN8,950
|
|
86
|
-
cartography/data/jobs/cleanup/gcp_crm_organization_cleanup.json,sha256=Jftx00zgZRBwnCRWF7oie9ZQnydshN0qnGx0HXnraxc,613
|
|
87
|
-
cartography/data/jobs/cleanup/gcp_crm_project_cleanup.json,sha256=JImcuuz9HI2TL0mDfpeXZuQvm5YojHuEwFrerI4w-Ek,951
|
|
88
|
-
cartography/data/jobs/cleanup/gcp_gke_cluster_cleanup.json,sha256=3bMEJ44AEvjkj_1ibclk6Ys5r1LniUWefpZ_U5hTwHI,671
|
|
89
79
|
cartography/data/jobs/cleanup/github_repos_cleanup.json,sha256=HsQbGviHXyEYm9bITWByjQAyC4zSE0eLkg9_CNlKFcA,3678
|
|
90
80
|
cartography/data/jobs/cleanup/gsuite_ingest_groups_cleanup.json,sha256=ddXAUi6aVi2htf5R1bNn6YrC3SjshjLBgWtlzBgZ9Do,961
|
|
91
81
|
cartography/data/jobs/cleanup/gsuite_ingest_users_cleanup.json,sha256=0qMLbVSTyq5F9vt4-TvVa3YAAvZCpPtzF9EwblaTxWg,353
|
|
@@ -161,14 +151,14 @@ cartography/intel/aws/emr.py,sha256=EJoKjHQP7-F_A1trUNU05Sb42yNR1i0C9VIpGcCfAXw,
|
|
|
161
151
|
cartography/intel/aws/eventbridge.py,sha256=PUq0UBxKro5oiTyq8U3gLcxomh5UaeBxoO7BhIKea6k,4442
|
|
162
152
|
cartography/intel/aws/glue.py,sha256=y3RQRNQutdMugSKOVnbJfA1CFfu12g8sqSuhp_AF4aI,5211
|
|
163
153
|
cartography/intel/aws/guardduty.py,sha256=QpwWisz3TzbOxkRKNjByk4WWDCCMXr8jgNOgOdjQM5g,8532
|
|
164
|
-
cartography/intel/aws/iam.py,sha256=
|
|
154
|
+
cartography/intel/aws/iam.py,sha256=K1EENJqmJpJxtaPJQCH_n5SCM5SIYisV_e97w5ByPOQ,42292
|
|
165
155
|
cartography/intel/aws/iam_instance_profiles.py,sha256=QUyu30xid60BFaemp-q0y9FgNsHaIQyQnQ8gHUzWC4k,2211
|
|
166
156
|
cartography/intel/aws/identitycenter.py,sha256=Q1k1BuBmtA85s5tHGS7lvgGxQ-H-piIyiWgyevFL92U,11161
|
|
167
157
|
cartography/intel/aws/inspector.py,sha256=G8a60uuFCuENvR2DNJ9VmWEJwG9UDENaC1buULvuSZc,12415
|
|
168
158
|
cartography/intel/aws/kms.py,sha256=vfufz0FuSZaonWQh0llHwt1UY5nlwqtQ1kzGxBwbMdc,11184
|
|
169
159
|
cartography/intel/aws/lambda_function.py,sha256=3hpgqI1HOeywcP3xV-OcoCOxfyyqfyMaYeb46xdf8B4,9585
|
|
170
|
-
cartography/intel/aws/organizations.py,sha256=
|
|
171
|
-
cartography/intel/aws/permission_relationships.py,sha256=
|
|
160
|
+
cartography/intel/aws/organizations.py,sha256=fwPrEWNovwLi34SxGpLHVns4jPcXtqYBWKKi0nuonsw,4600
|
|
161
|
+
cartography/intel/aws/permission_relationships.py,sha256=TWQKkqj6GpP2Ge1hvR-pRXNFUhc9cKKmPfUrXzsGYNY,15401
|
|
172
162
|
cartography/intel/aws/rds.py,sha256=BfMe0Hm1PKNBf2USGWdFUr4yqWF-ULnUEdX9A0l2AP0,19534
|
|
173
163
|
cartography/intel/aws/redshift.py,sha256=FGcCzcnm1OOrbJvLqtR1DwWVn1pt4Y6_eKkTUERT7Ws,7108
|
|
174
164
|
cartography/intel/aws/resourcegroupstaggingapi.py,sha256=TkMlUKLrRBWAyeUu-cHKce7TFkwBnWV_Im8DONgnLGU,12852
|
|
@@ -206,9 +196,11 @@ cartography/intel/aws/ec2/vpc_peerings.py,sha256=bP-qWHmSEoPMiOa3cumcyAQHvVO_Ifb
|
|
|
206
196
|
cartography/intel/aws/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
197
|
cartography/intel/aws/util/arns.py,sha256=Hwg_Lnf9ZNRTI-oEXU182S9ejOTy2-ggm2RKIxV5lGc,549
|
|
208
198
|
cartography/intel/aws/util/common.py,sha256=iiwqBiD65iSrS3LbnnBLBMkyV8BrXBEscI5TMxcAdXA,1817
|
|
209
|
-
cartography/intel/azure/__init__.py,sha256=
|
|
199
|
+
cartography/intel/azure/__init__.py,sha256=xDPworS9OtFji5vSUQ76AYoGJiRtjtrzAyHqoMcTvbw,4691
|
|
200
|
+
cartography/intel/azure/app_service.py,sha256=w68zkBhpJvy21K1_trg_ouOsQpWAj8W3mtlkiPrZUEg,3262
|
|
210
201
|
cartography/intel/azure/compute.py,sha256=Tg_vdK0MBpjZYaiihkpWsdUCFgdtZbhpDuV2tXAggbg,9139
|
|
211
202
|
cartography/intel/azure/cosmosdb.py,sha256=HqpGJwusE_FG6X_ZgpnBpt2h0hGA-zrKZ6PLvhbALwg,43591
|
|
203
|
+
cartography/intel/azure/functions.py,sha256=SVvfZTblZHGig3Kxr-jXALBuHts7Z0kfXBpjOvqvriY,3797
|
|
212
204
|
cartography/intel/azure/sql.py,sha256=VJ7tXKn23MnXCd2P_b5Sq9xJBHfGwS6z5-xxHN_5EeU,34289
|
|
213
205
|
cartography/intel/azure/storage.py,sha256=yItkgGAnWDQAmtytOeC8NxJVgwd8DT0gkFYw-rFiGi4,28639
|
|
214
206
|
cartography/intel/azure/subscription.py,sha256=eEWLrre4vRc4Pkfr0sc6Uc_ZOiIgVlkTQ7OR4C-Kghc,3509
|
|
@@ -241,20 +233,29 @@ cartography/intel/duo/phones.py,sha256=3_MPXmR4ub4Jra0ISr6cKzC5z_Pvx7YhHojWeJJku
|
|
|
241
233
|
cartography/intel/duo/tokens.py,sha256=lVe0ByS3ncLA3FZXoqN8eLj_HMsl5s4uDT-uWlLJhSs,2407
|
|
242
234
|
cartography/intel/duo/users.py,sha256=e2eK716wVlO71O9Q9KrWZot2cHjHZ7KgC9ZW27pCDaI,4143
|
|
243
235
|
cartography/intel/duo/web_authn_credentials.py,sha256=mLWXdBe4V6fHCFotmtJmwhTSoOY6Hx87D3zI3hlL2nc,2656
|
|
244
|
-
cartography/intel/entra/__init__.py,sha256=
|
|
245
|
-
cartography/intel/entra/
|
|
236
|
+
cartography/intel/entra/__init__.py,sha256=JcWQytP7LkdEKtxKlln7yFdU4Ld6LImRNn9dbIh_O4s,4892
|
|
237
|
+
cartography/intel/entra/app_role_assignments.py,sha256=fYdCMfDYDtQRyexRRaELNitu8g5ExrETBcDoYzlHLYw,10345
|
|
238
|
+
cartography/intel/entra/applications.py,sha256=cBX-3iAxDr7TQPJBu5Q3_FjOxEOMBkNciJX11U9rXiw,5856
|
|
246
239
|
cartography/intel/entra/groups.py,sha256=q8K-ttH796dG1DKeMAXuN6FmqT238aa4cGcZXNmYaRA,6869
|
|
247
240
|
cartography/intel/entra/ou.py,sha256=baV_Rh22a4WMnPrQB6E57XR6GwVQWkME1bntnZ1hzBo,4144
|
|
241
|
+
cartography/intel/entra/service_principals.py,sha256=4daaa6Is0JqleK7M11yRikCS7WaYPpCGS77ISFjtHm8,7410
|
|
248
242
|
cartography/intel/entra/users.py,sha256=vlEVXJTr75exV-sunV7V-B1Kqm9jtZQCA909ls1qHQ0,8748
|
|
249
|
-
cartography/intel/
|
|
250
|
-
cartography/intel/
|
|
251
|
-
cartography/intel/gcp/
|
|
243
|
+
cartography/intel/entra/federation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
+
cartography/intel/entra/federation/aws_identity_center.py,sha256=U-QFv6Nb5ct3gTCGclBRgcO8o3j9qW-7UI6oA4PsHLo,2508
|
|
245
|
+
cartography/intel/gcp/__init__.py,sha256=pCqM1aK6lq-qOnqOF7JFYKAcPW3Hl6sw9TZPROwNpM4,10159
|
|
246
|
+
cartography/intel/gcp/clients.py,sha256=DV7_6b20nSTYdbzZMbw_-Ns5aD92XfaKMWRZwZSbpEQ,2268
|
|
247
|
+
cartography/intel/gcp/compute.py,sha256=DEqdM3zZShq6fZFuwzMW43EiAFw228UE969ufW6RMm4,49489
|
|
252
248
|
cartography/intel/gcp/dns.py,sha256=cZWqGN4X__8M8tsamzAjxPWOKKxaRH4IqqtUHjtneG4,6049
|
|
253
|
-
cartography/intel/gcp/gke.py,sha256=
|
|
249
|
+
cartography/intel/gcp/gke.py,sha256=gkGluV0rV9tlAaFbv91BmOy0P3CsK036nSgNS5rSFqY,6324
|
|
254
250
|
cartography/intel/gcp/iam.py,sha256=rRSqDncJD6NngpVOQ_bvQfnEldQNq-UMyW8wWQpTPhQ,7682
|
|
255
251
|
cartography/intel/gcp/storage.py,sha256=oVZLq-REEPqgnD7P6rd8dJ4CsycqTrSkZVh8pD-Lat8,6419
|
|
256
|
-
cartography/intel/
|
|
257
|
-
cartography/intel/
|
|
252
|
+
cartography/intel/gcp/crm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
|
+
cartography/intel/gcp/crm/folders.py,sha256=cXAKeAqpIbIAtGL5WAovjo8NoG-iJKpqyWGQWVvcss4,3347
|
|
254
|
+
cartography/intel/gcp/crm/orgs.py,sha256=aVNMn9my-K4o1cfaruDvvIzxvJz_phVRRkaPtale5RU,1693
|
|
255
|
+
cartography/intel/gcp/crm/projects.py,sha256=1BAlkhkn87FvkOtZn80l0OltyBbcUhIfotgZkiSAqKA,3786
|
|
256
|
+
cartography/intel/github/__init__.py,sha256=SsHD_TDTQyt-mkdi3Hq6pvx3PBPWGLfDFrX3rm7y6uU,3069
|
|
257
|
+
cartography/intel/github/commits.py,sha256=oH9xIPzCgGyeQ7clXwYSwRcPzCSksPr3NlXoW3x6oR8,14029
|
|
258
|
+
cartography/intel/github/repos.py,sha256=ewX809xyGh1j8-qR3zVfyYD1uVTNGJWVTLsTMMMco54,43720
|
|
258
259
|
cartography/intel/github/teams.py,sha256=JICUXVScYbowtbOtIe-D4bibPmSBbQnL5z8IjzqSJ3s,14657
|
|
259
260
|
cartography/intel/github/users.py,sha256=meAkOpymGGdXXqZDCqv0hPIqCP4FHJvHkVug7L8jA10,9125
|
|
260
261
|
cartography/intel/github/util.py,sha256=sFzr9OG3DYSXyB2uPbdbUBInT_XZNd-7MppyLxhrYGY,8571
|
|
@@ -460,7 +461,20 @@ cartography/models/aws/glue/job.py,sha256=Y4RUgfpXKf-4z4vxGEa4eEka7oJOATGks0hy_A
|
|
|
460
461
|
cartography/models/aws/guardduty/__init__.py,sha256=ILQhP6R9RLgXzPKdmPzuGqhOgAXeIReUEyqKS-ZXS3k,19
|
|
461
462
|
cartography/models/aws/guardduty/findings.py,sha256=LwUE1DbDyl9c3g5fUSZxsYKQ8U44wDS4Pps-QPMyr3Y,4184
|
|
462
463
|
cartography/models/aws/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
464
|
+
cartography/models/aws/iam/access_key.py,sha256=9JlbqhCDcl9UaLvxyIto5ON-0Ec5-Ko27Kos0mmQioc,3832
|
|
465
|
+
cartography/models/aws/iam/account_role.py,sha256=75R1oMPDyiAT1lT8cZtUAW_2f0uuXQsvPFqIhtPs7C0,800
|
|
466
|
+
cartography/models/aws/iam/federated_principal.py,sha256=Ixsd26NNAPjFt0OhkbYqjZsx6RW0BnWLJEOOcF4Ff1s,2296
|
|
467
|
+
cartography/models/aws/iam/group.py,sha256=bbv9hKKdTW-iCa1078sLl0qSGyCnGaAyFlKnZWtKIJQ,2429
|
|
468
|
+
cartography/models/aws/iam/group_membership.py,sha256=7Z9EmQkAYGIEtJ1FAgAWOzfRSXkqAozSWHj4xyWh_FU,1042
|
|
469
|
+
cartography/models/aws/iam/inline_policy.py,sha256=suTL58w1xdXH_spZWRCH-dQvtFHvHhFyrPz7L2OHgtE,3026
|
|
463
470
|
cartography/models/aws/iam/instanceprofile.py,sha256=tlIkiCPX_9B9XPNAR0LcJAec8AbJq4dxgN8dgvEPXLs,2942
|
|
471
|
+
cartography/models/aws/iam/managed_policy.py,sha256=fJ-lCHWppK42ZTdoswqoDgKPtw6TqW5a_6a9HeQTwrY,2131
|
|
472
|
+
cartography/models/aws/iam/policy_statement.py,sha256=h52IvksuF31OxaIY30FhWddt-HCsi41Amxrtdux7WnY,2273
|
|
473
|
+
cartography/models/aws/iam/role.py,sha256=Yopl4EgM_3XFuCko-k-G15OGp2tn_gBKguROx7BPDP4,3111
|
|
474
|
+
cartography/models/aws/iam/root_principal.py,sha256=GuZUPw2fpg72ZvoMch9h9hYBfVXqVYzD3KO8v5_BAXI,2034
|
|
475
|
+
cartography/models/aws/iam/service_principal.py,sha256=EAy95HWazUrRgUDnO-M4CFdNlrP72aStc_tw3g6ymag,1102
|
|
476
|
+
cartography/models/aws/iam/sts_assumerole_allow.py,sha256=oFWbp3gQJV_5QgqduT39pCuAQDAPS2NsBojYoiQ3tcc,1644
|
|
477
|
+
cartography/models/aws/iam/user.py,sha256=D8KkC9tOFs6UPzDAUjlJa9xvOAxoX9MQ04OgIJHlc-M,2209
|
|
464
478
|
cartography/models/aws/identitycenter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
479
|
cartography/models/aws/identitycenter/awsidentitycenter.py,sha256=-ybcEgdZjwF0RINR_iLpmf5EOjuXYbz_CtixP-yqV30,2038
|
|
466
480
|
cartography/models/aws/identitycenter/awspermissionset.py,sha256=egFas3D4tkUZhaE2uQTwLihsVtJB8QBMlgBO5Px4UYs,5294
|
|
@@ -503,6 +517,9 @@ cartography/models/aws/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
503
517
|
cartography/models/aws/ssm/instance_information.py,sha256=URlqoum2ZSKrd2BYgqFRwqJxW8mdgzjNhlvzM02v2_4,4149
|
|
504
518
|
cartography/models/aws/ssm/instance_patch.py,sha256=03eHkwLaCXDv5LR9yJXH8DYfUYH6O6uZcGtaI9PV5B0,3158
|
|
505
519
|
cartography/models/aws/ssm/parameters.py,sha256=pKwDhG7yFwshUCQC24SSQw9MjIJ2KE1VIoESw2fASTs,3307
|
|
520
|
+
cartography/models/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
521
|
+
cartography/models/azure/app_service.py,sha256=BL9SYYxdvUcQ4l2UbB49HIKSMNMBxznrxu3AkTsORl0,2262
|
|
522
|
+
cartography/models/azure/function_app.py,sha256=u3yBo1r4K3AG3XGHd6aZWTi8g0SuYsA2TtZThF0JJTc,2274
|
|
506
523
|
cartography/models/azure/principal.py,sha256=OAFzIdE1daD6IbNuAvZWLqrvhZ5Eoo1N1o4kxSvj0xk,1727
|
|
507
524
|
cartography/models/azure/tenant.py,sha256=d0KzBXaKuXogd-TGk3wqSyAwotG8ZcidUbgoULUjOEY,644
|
|
508
525
|
cartography/models/bigfix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -538,17 +555,26 @@ cartography/models/duo/web_authn_credential.py,sha256=nCdonZFyShuE5-CnI2Vxiu5BZ0
|
|
|
538
555
|
cartography/models/entra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
539
556
|
cartography/models/entra/app_role_assignment.py,sha256=BvZBWq3jd1Fw448dmIXQpHT-mBOqevNY_my-iQHpZp8,4618
|
|
540
557
|
cartography/models/entra/application.py,sha256=ZNVY0a0T2nmdoVj2i5Xri0J8oIR5d9HVcLAl0yLG6s8,1968
|
|
558
|
+
cartography/models/entra/entra_user_to_aws_sso.py,sha256=Rq2wKX151ABIKvH3ma_Ur-xU1vSWaSNtrUJCprQmGEI,1713
|
|
541
559
|
cartography/models/entra/group.py,sha256=Ora5w7t7D7m98EVjknchsAmoEhEtlMJAeziCvkbYtAU,4859
|
|
542
560
|
cartography/models/entra/ou.py,sha256=YmtW1Cp_XX29uzbunhEGl073AzV6PZsQtLs_MR-ACNU,2056
|
|
561
|
+
cartography/models/entra/service_principal.py,sha256=3kljRmWrhN1hNJPhmJWGMnBB6uO3Ld_OOB_-J-YO6P8,4372
|
|
543
562
|
cartography/models/entra/tenant.py,sha256=abpNTvOtXHgdrU-y7q6jt--odcq1eRsT2j5nMdVy_Gw,1793
|
|
544
563
|
cartography/models/entra/user.py,sha256=UIZ3y4JRMfU5QgcOSGAdURH1wKvtQwicDw1q48AbhX8,3315
|
|
545
564
|
cartography/models/gcp/dns.py,sha256=X8I4efhcboJXQfx6CxOTg2P-CEox1xUoe0igiSHzGyk,4446
|
|
565
|
+
cartography/models/gcp/gke.py,sha256=J-PToPOkORblyfcj1vKbMjhJL-E9322rauBLfTPs6w4,3450
|
|
546
566
|
cartography/models/gcp/iam.py,sha256=HvPoHFqsa7hfYsAlZJ41jKaVqs0_UTP8EjvOfpEAQdM,3285
|
|
547
567
|
cartography/models/gcp/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
|
+
cartography/models/gcp/compute/subnet.py,sha256=o58n6isg-FhtLYLmv386W7jj6yQNnXrMa-m1nnkqD0o,2998
|
|
548
569
|
cartography/models/gcp/compute/vpc.py,sha256=bbFfo_Rh7brXvNqY8fx-jz9zUDtPew_Wcq-WGv9j9cI,2131
|
|
570
|
+
cartography/models/gcp/crm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
571
|
+
cartography/models/gcp/crm/folders.py,sha256=_TCqtP3Xdlt3R44txleS-gwL7tfmJR_nRQFBU2HzHmM,3775
|
|
572
|
+
cartography/models/gcp/crm/organizations.py,sha256=HCwcOEwTFQWOGQZLX-cqE4E8WYeKtmF36XuFvZ0VS7Q,883
|
|
573
|
+
cartography/models/gcp/crm/projects.py,sha256=J4W1-S68gzO8hX2CK5aQmCvsyKh3XvxNZV_P1RIKS_E,3786
|
|
549
574
|
cartography/models/gcp/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
575
|
cartography/models/gcp/storage/bucket.py,sha256=nS4RHNU0ni4FDGUb-MKEc5UJceyvUa3FR4QlnYxq1nc,4974
|
|
551
576
|
cartography/models/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
|
+
cartography/models/github/commits.py,sha256=fvx5tKNsM_P0pkiF3TwU6-Rq7CqKnZTePOJfsH-BuXk,2423
|
|
552
578
|
cartography/models/github/dependencies.py,sha256=V_Ktx_YRABYB1xAI9Z-YivDsljQsqlDLgrfof7OPubA,3099
|
|
553
579
|
cartography/models/github/manifests.py,sha256=1trwgECCjvZKS63z2k8mB55Fa8d2l-uU7HSgfL95iwA,2078
|
|
554
580
|
cartography/models/github/orgs.py,sha256=cEG7yX56VzzI3OkQFjUum2LdrXCLWl4ExvNqSZ7Bmiw,1107
|
|
@@ -633,9 +659,9 @@ cartography/models/trivy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
633
659
|
cartography/models/trivy/findings.py,sha256=SgI_h1aRyR20uAHvuXIZ1T6r4IZJt6SVhxRaF2bTsm0,3085
|
|
634
660
|
cartography/models/trivy/fix.py,sha256=ho9ENVl9HSXqyggyCwR6ilkOBKDxpQ7rGibo_j21NA4,2587
|
|
635
661
|
cartography/models/trivy/package.py,sha256=IwO1RZZ-MFRtNbt8Cq6YFl6fdNJMFmULnJkkK8Q4rL4,2809
|
|
636
|
-
cartography-0.
|
|
637
|
-
cartography-0.
|
|
638
|
-
cartography-0.
|
|
639
|
-
cartography-0.
|
|
640
|
-
cartography-0.
|
|
641
|
-
cartography-0.
|
|
662
|
+
cartography-0.114.0.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
|
|
663
|
+
cartography-0.114.0.dist-info/METADATA,sha256=rxtuDKGLj5CNY0-76Dm7LzUknRBp3yJoIpJSyTbLpmM,13528
|
|
664
|
+
cartography-0.114.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
665
|
+
cartography-0.114.0.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
|
|
666
|
+
cartography-0.114.0.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
|
|
667
|
+
cartography-0.114.0.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:AccountAccessKey)<-[:AWS_ACCESS_KEY]-(:AWSUser)<-[:RESOURCE]-(:AWSAccount{id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "cleanup access keys that are attached to users"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (n:AccountAccessKey) WHERE NOT (n)<-[:AWS_ACCESS_KEY]-(:AWSUser) AND n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "cleanup access keys that no longer attached to users, such as when a user no longer exists"
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"name": "cleanup AccountAccessKey"
|
|
17
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [{
|
|
3
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(n:AWSGroup) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
4
|
-
"iterative": true,
|
|
5
|
-
"iterationsize": 100
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[r:AWS_GROUP]->(:AWSGroup) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
9
|
-
"iterative": true,
|
|
10
|
-
"iterationsize": 100
|
|
11
|
-
}],
|
|
12
|
-
"name": "cleanup AWSGroup"
|
|
13
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSPrincipal)-[:POLICY]->(:AWSPolicy)-[:STATEMENT]->(n:AWSPolicyStatement) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSPrincipal)-[:POLICY]->(:AWSPolicy)-[r:STATEMENT]->(:AWSPolicyStatement) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
10
|
-
"iterative": true,
|
|
11
|
-
"iterationsize": 100
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSPrincipal)-[:POLICY]->(n:AWSPolicy) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
15
|
-
"iterative": true,
|
|
16
|
-
"iterationsize": 100
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSPrincipal)-[r:POLICY]->(:AWSPolicy) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
20
|
-
"iterative": true,
|
|
21
|
-
"iterationsize": 100
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"query": "MATCH (AWSAccount{foreign:true})-[:RESOURCE]->(n:AWSPrincipal) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
25
|
-
"iterative": true,
|
|
26
|
-
"iterationsize": 100
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"name": "cleanup AWSPrincipals, AWSPolicies and AWSPolicyStatements"
|
|
30
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [{
|
|
3
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(n:AWSRole) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
4
|
-
"iterative": true,
|
|
5
|
-
"iterationsize": 100
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSRole)-[r:TRUSTS_AWS_PRINCIPAL]->(:AWSPrincipal) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
9
|
-
"iterative": true,
|
|
10
|
-
"iterationsize": 100
|
|
11
|
-
}],
|
|
12
|
-
"name": "cleanup AWSRole"
|
|
13
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:GCPSubnet) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "Delete GCP Subnets that no longer exist and detach them from all previously connected nodes."
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (:GCPSubnet)<-[r:RESOURCE]-(:GCPVpc) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "Remove GCP VPC-to-Subnet relationships that are out of date."
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"query": "MATCH (:GCPNetworkInterface)-[r:PART_OF_SUBNET]-(:GCPSubnet) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
17
|
-
"iterative": true,
|
|
18
|
-
"iterationsize": 100,
|
|
19
|
-
"__comment__": "Remove GCP NetworkInterface-to-Subnet relationships that are out of date."
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"query": "MATCH (n:GCPNicAccessConfig) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
23
|
-
"iterative": true,
|
|
24
|
-
"iterationsize": 100,
|
|
25
|
-
"__comment__": "Remove GCP Network Interface Access Configs that no longer exist and detach them from all previously connected nodes."
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"query": "MATCH (:GCPNicAccessConfig)-[r:RESOURCE]-(:GCPNetworkInterface) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
29
|
-
"iterative": true,
|
|
30
|
-
"iterationsize": 100,
|
|
31
|
-
"__comment__": "Remove GCP NetworkInterface-to-NicAccessConfig relationships that are out of date."
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"name": "cleanup GCP Instances"
|
|
35
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:GCPFolder) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "Delete GCPFolders that no longer exist and detach them from all previously connected nodes"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (:GCPFolder)-[r:RESOURCE]-(:GCPFolder) WHERE r.lastupdated <> $UPDATE_TAG WITH distinct r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "Remove GCP Folder-to-Folder relationships that are out of date."
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"query": "MATCH (:GCPFolder)<-[r:RESOURCE]-(:GCPOrganization) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
17
|
-
"iterative": true,
|
|
18
|
-
"iterationsize": 100,
|
|
19
|
-
"__comment__": "Remove GCP Folder-to-Organization relationships that are out of date."
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"name": "cleanup GCP Folders"
|
|
23
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:GCPOrganization) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "Remove GCP organizations that are out of date."
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (:GCPOrganization)-[r:RESOURCE]->(:GCPProject) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "Remove GCP Organization relationships that are out of date."
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"name": "cleanup GCP Organizations"
|
|
17
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:GCPProject) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "Delete GCP Projects that no longer exist and detach them from all previously connected nodes."
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (:GCPProject)<-[r:RESOURCE]-(:GCPFolder) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "Remove GCP Project-to-Folder relationships that are out of date."
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"query": "MATCH (:GCPProject)<-[r:RESOURCE]-(:GCPOrganization) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
17
|
-
"iterative": true,
|
|
18
|
-
"iterationsize": 100,
|
|
19
|
-
"__comment__": "Remove GCP Project-to-Organization relationships that are out of date."
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"name": "cleanup GCP Projects"
|
|
23
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (n:GKECluster) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
5
|
-
"iterative": true,
|
|
6
|
-
"iterationsize": 100,
|
|
7
|
-
"__comment__": "Delete GCP GKE Clusters that no longer exist and detach them from all previously connected nodes."
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"query": "MATCH (:GKECluster)<-[r:RESOURCE]-(:GCPProject) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
11
|
-
"iterative": true,
|
|
12
|
-
"iterationsize": 100,
|
|
13
|
-
"__comment__": "Remove GCP GKECluster-to-Project relationships that are out of date."
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"name": "Cleanup GCP GKE Cluster Instances"
|
|
17
|
-
}
|