cartography 0.106.0rc2__py3-none-any.whl → 0.107.0rc1__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 +131 -2
- cartography/config.py +42 -0
- cartography/driftdetect/cli.py +3 -2
- cartography/intel/airbyte/__init__.py +105 -0
- cartography/intel/airbyte/connections.py +120 -0
- cartography/intel/airbyte/destinations.py +81 -0
- cartography/intel/airbyte/organizations.py +59 -0
- cartography/intel/airbyte/sources.py +78 -0
- cartography/intel/airbyte/tags.py +64 -0
- cartography/intel/airbyte/users.py +106 -0
- cartography/intel/airbyte/util.py +122 -0
- cartography/intel/airbyte/workspaces.py +63 -0
- cartography/intel/aws/__init__.py +1 -0
- cartography/intel/aws/cloudtrail_management_events.py +364 -0
- cartography/intel/aws/codebuild.py +132 -0
- cartography/intel/aws/resources.py +4 -0
- cartography/intel/aws/sns.py +62 -2
- cartography/intel/entra/users.py +84 -42
- cartography/intel/scaleway/__init__.py +127 -0
- cartography/intel/scaleway/iam/__init__.py +0 -0
- cartography/intel/scaleway/iam/apikeys.py +71 -0
- cartography/intel/scaleway/iam/applications.py +71 -0
- cartography/intel/scaleway/iam/groups.py +71 -0
- cartography/intel/scaleway/iam/users.py +71 -0
- cartography/intel/scaleway/instances/__init__.py +0 -0
- cartography/intel/scaleway/instances/flexibleips.py +86 -0
- cartography/intel/scaleway/instances/instances.py +92 -0
- cartography/intel/scaleway/projects.py +79 -0
- cartography/intel/scaleway/storage/__init__.py +0 -0
- cartography/intel/scaleway/storage/snapshots.py +86 -0
- cartography/intel/scaleway/storage/volumes.py +84 -0
- cartography/intel/scaleway/utils.py +37 -0
- cartography/intel/sentinelone/__init__.py +63 -0
- cartography/intel/sentinelone/account.py +140 -0
- cartography/intel/sentinelone/agent.py +139 -0
- cartography/intel/sentinelone/api.py +113 -0
- cartography/intel/sentinelone/utils.py +9 -0
- cartography/models/airbyte/__init__.py +0 -0
- cartography/models/airbyte/connection.py +138 -0
- cartography/models/airbyte/destination.py +75 -0
- cartography/models/airbyte/organization.py +19 -0
- cartography/models/airbyte/source.py +75 -0
- cartography/models/airbyte/stream.py +74 -0
- cartography/models/airbyte/tag.py +69 -0
- cartography/models/airbyte/user.py +111 -0
- cartography/models/airbyte/workspace.py +46 -0
- cartography/models/aws/cloudtrail/management_events.py +64 -0
- cartography/models/aws/codebuild/__init__.py +0 -0
- cartography/models/aws/codebuild/project.py +49 -0
- cartography/models/aws/ecs/containers.py +19 -0
- cartography/models/aws/ecs/task_definitions.py +38 -0
- cartography/models/aws/sns/topic_subscription.py +74 -0
- cartography/models/entra/user.py +17 -51
- cartography/models/scaleway/__init__.py +0 -0
- cartography/models/scaleway/iam/__init__.py +0 -0
- cartography/models/scaleway/iam/apikey.py +96 -0
- cartography/models/scaleway/iam/application.py +52 -0
- cartography/models/scaleway/iam/group.py +95 -0
- cartography/models/scaleway/iam/user.py +60 -0
- cartography/models/scaleway/instance/__init__.py +0 -0
- cartography/models/scaleway/instance/flexibleip.py +52 -0
- cartography/models/scaleway/instance/instance.py +118 -0
- cartography/models/scaleway/organization.py +19 -0
- cartography/models/scaleway/project.py +48 -0
- cartography/models/scaleway/storage/__init__.py +0 -0
- cartography/models/scaleway/storage/snapshot.py +78 -0
- cartography/models/scaleway/storage/volume.py +51 -0
- cartography/models/sentinelone/__init__.py +1 -0
- cartography/models/sentinelone/account.py +40 -0
- cartography/models/sentinelone/agent.py +50 -0
- cartography/sync.py +11 -4
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/METADATA +20 -16
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/RECORD +78 -18
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/WHEEL +0 -0
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/entry_points.txt +0 -0
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/licenses/LICENSE +0 -0
- {cartography-0.106.0rc2.dist-info → cartography-0.107.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,51 @@
|
|
|
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 ScalewayVolumeNodeProperties(CartographyNodeProperties):
|
|
15
|
+
id: PropertyRef = PropertyRef("id")
|
|
16
|
+
name: PropertyRef = PropertyRef("name")
|
|
17
|
+
export_uri: PropertyRef = PropertyRef("export_uri")
|
|
18
|
+
size: PropertyRef = PropertyRef("size")
|
|
19
|
+
volume_type: PropertyRef = PropertyRef("volume_type")
|
|
20
|
+
creation_date: PropertyRef = PropertyRef("creation_date")
|
|
21
|
+
modification_date: PropertyRef = PropertyRef("modification_date")
|
|
22
|
+
tags: PropertyRef = PropertyRef("tags")
|
|
23
|
+
state: PropertyRef = PropertyRef("state")
|
|
24
|
+
zone: PropertyRef = PropertyRef("zone")
|
|
25
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
@dataclass(frozen=True)
|
|
29
|
+
class ScalewayVolumeToProjectRelProperties(CartographyRelProperties):
|
|
30
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@dataclass(frozen=True)
|
|
34
|
+
# (:ScalewayProject)-[:RESOURCE]->(:ScalewayVolume)
|
|
35
|
+
class ScalewayVolumeToProjectRel(CartographyRelSchema):
|
|
36
|
+
target_node_label: str = "ScalewayProject"
|
|
37
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
38
|
+
{"id": PropertyRef("PROJECT_ID", set_in_kwargs=True)},
|
|
39
|
+
)
|
|
40
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
41
|
+
rel_label: str = "RESOURCE"
|
|
42
|
+
properties: ScalewayVolumeToProjectRelProperties = (
|
|
43
|
+
ScalewayVolumeToProjectRelProperties()
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@dataclass(frozen=True)
|
|
48
|
+
class ScalewayVolumeSchema(CartographyNodeSchema):
|
|
49
|
+
label: str = "ScalewayVolume"
|
|
50
|
+
properties: ScalewayVolumeNodeProperties = ScalewayVolumeNodeProperties()
|
|
51
|
+
sub_resource_relationship: ScalewayVolumeToProjectRel = ScalewayVolumeToProjectRel()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# SentinelOne data models
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass(frozen=True)
|
|
9
|
+
class S1AccountNodeProperties(CartographyNodeProperties):
|
|
10
|
+
"""
|
|
11
|
+
Properties for SentinelOne Account nodes
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
# Required unique identifier
|
|
15
|
+
id: PropertyRef = PropertyRef("id")
|
|
16
|
+
|
|
17
|
+
# Automatic fields (set by cartography)
|
|
18
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
19
|
+
|
|
20
|
+
# Business fields from SentinelOne API
|
|
21
|
+
name: PropertyRef = PropertyRef("name", extra_index=True)
|
|
22
|
+
account_type: PropertyRef = PropertyRef("account_type")
|
|
23
|
+
active_agents: PropertyRef = PropertyRef("active_agents")
|
|
24
|
+
created_at: PropertyRef = PropertyRef("created_at")
|
|
25
|
+
expiration: PropertyRef = PropertyRef("expiration")
|
|
26
|
+
number_of_sites: PropertyRef = PropertyRef("number_of_sites")
|
|
27
|
+
state: PropertyRef = PropertyRef("state")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@dataclass(frozen=True)
|
|
31
|
+
class S1AccountSchema(CartographyNodeSchema):
|
|
32
|
+
"""
|
|
33
|
+
Schema for SentinelOne Account nodes
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
label: str = "S1Account"
|
|
37
|
+
properties: S1AccountNodeProperties = S1AccountNodeProperties()
|
|
38
|
+
|
|
39
|
+
# S1Account is a top-level tenant-like entity, so no sub_resource_relationship
|
|
40
|
+
sub_resource_relationship: None = None
|
|
@@ -0,0 +1,50 @@
|
|
|
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 S1AgentNodeProperties(CartographyNodeProperties):
|
|
15
|
+
id: PropertyRef = PropertyRef("id", extra_index=True)
|
|
16
|
+
uuid: PropertyRef = PropertyRef("uuid", extra_index=True)
|
|
17
|
+
computer_name: PropertyRef = PropertyRef("computer_name", extra_index=True)
|
|
18
|
+
firewall_enabled: PropertyRef = PropertyRef("firewall_enabled")
|
|
19
|
+
os_name: PropertyRef = PropertyRef("os_name")
|
|
20
|
+
os_revision: PropertyRef = PropertyRef("os_revision")
|
|
21
|
+
domain: PropertyRef = PropertyRef("domain")
|
|
22
|
+
last_active: PropertyRef = PropertyRef("last_active")
|
|
23
|
+
last_successful_scan: PropertyRef = PropertyRef("last_successful_scan")
|
|
24
|
+
scan_status: PropertyRef = PropertyRef("scan_status")
|
|
25
|
+
serial_number: PropertyRef = PropertyRef("serial_number", extra_index=True)
|
|
26
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@dataclass(frozen=True)
|
|
30
|
+
class S1AgentToAccountRelProperties(CartographyRelProperties):
|
|
31
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
@dataclass(frozen=True)
|
|
35
|
+
# (:S1Agent)<-[:RESOURCE]-(:S1Account)
|
|
36
|
+
class S1AgentToAccount(CartographyRelSchema):
|
|
37
|
+
target_node_label: str = "S1Account"
|
|
38
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
39
|
+
{"id": PropertyRef("S1_ACCOUNT_ID", set_in_kwargs=True)},
|
|
40
|
+
)
|
|
41
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
42
|
+
rel_label: str = "RESOURCE"
|
|
43
|
+
properties: S1AgentToAccountRelProperties = S1AgentToAccountRelProperties()
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@dataclass(frozen=True)
|
|
47
|
+
class S1AgentSchema(CartographyNodeSchema):
|
|
48
|
+
label: str = "S1Agent"
|
|
49
|
+
properties: S1AgentNodeProperties = S1AgentNodeProperties()
|
|
50
|
+
sub_resource_relationship: S1AgentToAccount = S1AgentToAccount()
|
cartography/sync.py
CHANGED
|
@@ -13,6 +13,7 @@ import neo4j.exceptions
|
|
|
13
13
|
from neo4j import GraphDatabase
|
|
14
14
|
from statsd import StatsClient
|
|
15
15
|
|
|
16
|
+
import cartography.intel.airbyte
|
|
16
17
|
import cartography.intel.analysis
|
|
17
18
|
import cartography.intel.anthropic
|
|
18
19
|
import cartography.intel.aws
|
|
@@ -28,13 +29,17 @@ import cartography.intel.entra
|
|
|
28
29
|
import cartography.intel.gcp
|
|
29
30
|
import cartography.intel.github
|
|
30
31
|
import cartography.intel.gsuite
|
|
32
|
+
import cartography.intel.jamf
|
|
31
33
|
import cartography.intel.kandji
|
|
32
34
|
import cartography.intel.kubernetes
|
|
33
35
|
import cartography.intel.lastpass
|
|
34
36
|
import cartography.intel.oci
|
|
35
37
|
import cartography.intel.okta
|
|
36
38
|
import cartography.intel.openai
|
|
39
|
+
import cartography.intel.pagerduty
|
|
40
|
+
import cartography.intel.scaleway
|
|
37
41
|
import cartography.intel.semgrep
|
|
42
|
+
import cartography.intel.sentinelone
|
|
38
43
|
import cartography.intel.snipeit
|
|
39
44
|
import cartography.intel.tailscale
|
|
40
45
|
import cartography.intel.trivy
|
|
@@ -49,6 +54,7 @@ logger = logging.getLogger(__name__)
|
|
|
49
54
|
TOP_LEVEL_MODULES = OrderedDict(
|
|
50
55
|
{ # preserve order so that the default sync always runs `analysis` at the very end
|
|
51
56
|
"create-indexes": cartography.intel.create_indexes.run,
|
|
57
|
+
"airbyte": cartography.intel.airbyte.start_airbyte_ingestion,
|
|
52
58
|
"anthropic": cartography.intel.anthropic.start_anthropic_ingestion,
|
|
53
59
|
"aws": cartography.intel.aws.start_aws_ingestion,
|
|
54
60
|
"azure": cartography.intel.azure.start_azure_ingestion,
|
|
@@ -68,10 +74,15 @@ TOP_LEVEL_MODULES = OrderedDict(
|
|
|
68
74
|
"lastpass": cartography.intel.lastpass.start_lastpass_ingestion,
|
|
69
75
|
"bigfix": cartography.intel.bigfix.start_bigfix_ingestion,
|
|
70
76
|
"duo": cartography.intel.duo.start_duo_ingestion,
|
|
77
|
+
"scaleway": cartography.intel.scaleway.start_scaleway_ingestion,
|
|
71
78
|
"semgrep": cartography.intel.semgrep.start_semgrep_ingestion,
|
|
72
79
|
"snipeit": cartography.intel.snipeit.start_snipeit_ingestion,
|
|
73
80
|
"tailscale": cartography.intel.tailscale.start_tailscale_ingestion,
|
|
81
|
+
"jamf": cartography.intel.jamf.start_jamf_ingestion,
|
|
82
|
+
"pagerduty": cartography.intel.pagerduty.start_pagerduty_ingestion,
|
|
74
83
|
"trivy": cartography.intel.trivy.start_trivy_ingestion,
|
|
84
|
+
"sentinelone": cartography.intel.sentinelone.start_sentinelone_ingestion,
|
|
85
|
+
# Analysis should be the last stage
|
|
75
86
|
"analysis": cartography.intel.analysis.run,
|
|
76
87
|
}
|
|
77
88
|
)
|
|
@@ -203,10 +214,6 @@ class Sync:
|
|
|
203
214
|
return available_modules
|
|
204
215
|
|
|
205
216
|
|
|
206
|
-
# Used to avoid repeatedly calling Sync.list_intel_modules()
|
|
207
|
-
TOP_LEVEL_MODULES = Sync.list_intel_modules()
|
|
208
|
-
|
|
209
|
-
|
|
210
217
|
def run_with_config(sync: Sync, config: Union[Config, argparse.Namespace]) -> int:
|
|
211
218
|
"""
|
|
212
219
|
Execute the cartography.sync.Sync.run method with parameters built from the given configuration object.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cartography
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.107.0rc1
|
|
4
4
|
Summary: Explore assets and their relationships across your technical infrastructure.
|
|
5
5
|
Maintainer: Cartography Contributors
|
|
6
6
|
License: apache2
|
|
@@ -55,6 +55,7 @@ Requires-Dist: python-dateutil
|
|
|
55
55
|
Requires-Dist: xmltodict
|
|
56
56
|
Requires-Dist: duo-client
|
|
57
57
|
Requires-Dist: cloudflare<5.0.0,>=4.1.0
|
|
58
|
+
Requires-Dist: scaleway>=2.9.0
|
|
58
59
|
Dynamic: license-file
|
|
59
60
|
|
|
60
61
|

|
|
@@ -80,28 +81,31 @@ You can learn more about the story behind Cartography in our [presentation at BS
|
|
|
80
81
|
|
|
81
82
|
|
|
82
83
|
## Supported platforms
|
|
83
|
-
- [
|
|
84
|
+
- [Airbyte](https://cartography-cncf.github.io/cartography/modules/airbyte/index.html) - Organization, Workspace, User, Source, Destination, Connection, Tag, Stream
|
|
85
|
+
- [Amazon Web Services](https://cartography-cncf.github.io/cartography/modules/aws/index.html) - ACM, API Gateway, CloudWatch, CodeBuild, Config, EC2, ECS, ECR, Elasticsearch, Elastic Kubernetes Service (EKS), DynamoDB, IAM, Inspector, KMS, Lambda, RDS, Redshift, Route53, S3, Secrets Manager(Secret Versions), Security Hub, SQS, SSM, STS, Tags
|
|
86
|
+
- [Anthropic](https://cartography-cncf.github.io/cartography/modules/anthropic/index.html) - Organization, ApiKey, User, Workspace
|
|
87
|
+
- [BigFix](https://cartography-cncf.github.io/cartography/modules/bigfix/index.html) - Computers
|
|
88
|
+
- [Cloudflare](https://cartography-cncf.github.io/cartography/modules/cloudflare/index.html) - Account, Role, Member, Zone, DNSRecord
|
|
89
|
+
- [Crowdstrike Falcon](https://cartography-cncf.github.io/cartography/modules/crowdstrike/index.html) - Hosts, Spotlight vulnerabilities, CVEs
|
|
90
|
+
- [DigitalOcean](https://cartography-cncf.github.io/cartography/modules/digitalocean/index.html)
|
|
91
|
+
- [Duo](https://cartography-cncf.github.io/cartography/modules/duo/index.html) - Users, Groups, Endpoints
|
|
92
|
+
- [GitHub](https://cartography-cncf.github.io/cartography/modules/github/index.html) - repos, branches, users, teams
|
|
84
93
|
- [Google Cloud Platform](https://cartography-cncf.github.io/cartography/modules/gcp/index.html) - Cloud Resource Manager, Compute, DNS, Storage, Google Kubernetes Engine
|
|
85
94
|
- [Google GSuite](https://cartography-cncf.github.io/cartography/modules/gsuite/index.html) - users, groups
|
|
86
|
-
- [
|
|
87
|
-
- [
|
|
88
|
-
- [
|
|
89
|
-
- [DigitalOcean](https://cartography-cncf.github.io/cartography/modules/digitalocean/index.html)
|
|
95
|
+
- [Kandji](https://cartography-cncf.github.io/cartography/modules/kandji/index.html) - Devices
|
|
96
|
+
- [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container
|
|
97
|
+
- [Lastpass](https://cartography-cncf.github.io/cartography/modules/lastpass/index.html) - users
|
|
90
98
|
- [Microsoft Azure](https://cartography-cncf.github.io/cartography/modules/azure/index.html) - CosmosDB, SQL, Storage, Virtual Machine
|
|
91
99
|
- [Microsoft Entra ID](https://cartography-cncf.github.io/cartography/modules/entra/index.html) - Users
|
|
92
|
-
- [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container
|
|
93
|
-
- [PagerDuty](https://cartography-cncf.github.io/cartography/modules/pagerduty/index.html) - Users, teams, services, schedules, escalation policies, integrations, vendors
|
|
94
|
-
- [Crowdstrike Falcon](https://cartography-cncf.github.io/cartography/modules/crowdstrike/index.html) - Hosts, Spotlight vulnerabilities, CVEs
|
|
95
100
|
- [NIST CVE](https://cartography-cncf.github.io/cartography/modules/cve/index.html) - Common Vulnerabilities and Exposures (CVE) data from NIST database
|
|
96
|
-
- [
|
|
97
|
-
- [
|
|
98
|
-
- [
|
|
99
|
-
- [
|
|
101
|
+
- [Okta](https://cartography-cncf.github.io/cartography/modules/okta/index.html) - users, groups, organizations, roles, applications, factors, trusted origins, reply URIs
|
|
102
|
+
- [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) - Organization, AdminApiKey, User, Project, ServiceAccount, ApiKey
|
|
103
|
+
- [Oracle Cloud Infrastructure](https://cartography-cncf.github.io/cartography/modules/oci/index.html) - IAM
|
|
104
|
+
- [PagerDuty](https://cartography-cncf.github.io/cartography/modules/pagerduty/index.html) - Users, teams, services, schedules, escalation policies, integrations, vendors
|
|
105
|
+
- [Scaleway](https://cartography-cncf.github.io/cartography/modules/scaleway/index.html) - Projects, IAM, Local Storage, Instances
|
|
106
|
+
- [SentinelOne](https://cartography-cncf.github.io/cartography/modules/sentinelone/index.html) - Accounts, Agents
|
|
100
107
|
- [SnipeIT](https://cartography-cncf.github.io/cartography/modules/snipeit/index.html) - Users, Assets
|
|
101
108
|
- [Tailscale](https://cartography-cncf.github.io/cartography/modules/tailscale/index.html) - Tailnet, Users, Devices, Groups, Tags, PostureIntegrations
|
|
102
|
-
- [Cloudflare](https://cartography-cncf.github.io/cartography/modules/cloudflare/index.html) - Account, Role, Member, Zone, DNSRecord
|
|
103
|
-
- [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) - Organization, AdminApiKey, User, Project, ServiceAccount, ApiKey
|
|
104
|
-
- [Anthropic](https://cartography-cncf.github.io/cartography/modules/anthropic/index.html) - Organization, ApiKey, User, Workspace
|
|
105
109
|
- [Trivy Scanner](https://cartography-cncf.github.io/cartography/modules/trivy/index.html) - AWS ECR Images
|
|
106
110
|
|
|
107
111
|
|
|
@@ -1,11 +1,11 @@
|
|
|
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=p-Djna7oRUSPYcKo49GYVaSUJK3PW0h7Jw79Ngeb9Mo,525
|
|
4
|
+
cartography/cli.py,sha256=e5F9239v_JoLR293JMZI1toYg43li2RX_F-qOHTB-HA,46054
|
|
5
|
+
cartography/config.py,sha256=mM7Frg8maGB4a0Oad2nvktM38uC7zgrwSmofO5l4Aus,16492
|
|
6
6
|
cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
cartography/stats.py,sha256=N95prYlSzY8U52VFgKIDgOWOawu5Mig4N7GcVp3binQ,4420
|
|
8
|
-
cartography/sync.py,sha256
|
|
8
|
+
cartography/sync.py,sha256=-WsU6tGUKpfxPRndm1QU_0HQyE20Q7fexQWRHWFrnQI,13867
|
|
9
9
|
cartography/util.py,sha256=YYynw4hblAf7xglGzS7vuHTJXxf7u4WjAiLVM4MiOLU,15535
|
|
10
10
|
cartography/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
cartography/client/aws/__init__.py,sha256=Zj7nX21QQELwPLZlpldm_22IiXZ1VFsEFQbWX_e4okU,558
|
|
@@ -119,7 +119,7 @@ cartography/data/jobs/scoped_analysis/semgrep_sca_risk_analysis.json,sha256=eIYx
|
|
|
119
119
|
cartography/driftdetect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
120
|
cartography/driftdetect/__main__.py,sha256=Eb9cVDp4eu0yrAiOmo5oSGTriCgxza8nA__NQk4SKgA,124
|
|
121
121
|
cartography/driftdetect/add_shortcut.py,sha256=12VEJB5xJX2mG9YCtBo3OePULgH56MlHWpgcCYs925M,2471
|
|
122
|
-
cartography/driftdetect/cli.py,sha256=
|
|
122
|
+
cartography/driftdetect/cli.py,sha256=ieYJhVpgpkVi6RYu3K72ZX3r29ryg1Srh6NA41UaBZM,9225
|
|
123
123
|
cartography/driftdetect/config.py,sha256=wHx1RmKRU3fJ9xD8Nf62uIFGOoaohgyqrFIAy-Fc_xM,2974
|
|
124
124
|
cartography/driftdetect/detect_deviations.py,sha256=5e8qL1D6lIeZEqUBFPpfdcO0nBdDLSAXg7RrU9djL20,4404
|
|
125
125
|
cartography/driftdetect/get_states.py,sha256=-p5FvqbHdCM6W5JBR8xAjwjD7Lod7wir3U5IDNJn_Ao,6183
|
|
@@ -139,16 +139,27 @@ cartography/intel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
139
139
|
cartography/intel/analysis.py,sha256=uWIpmrk2hezkqjfepqz1VV2BopT7VZ-alBj2YekfE_c,1546
|
|
140
140
|
cartography/intel/create_indexes.py,sha256=6G43Rko8oXsAhHdSb2RbSVMvGMLi_YALlyUQE77jPVw,742
|
|
141
141
|
cartography/intel/dns.py,sha256=-qdPLy195GKSXjiutdjnNBh8LXjot3lc8pVQTa9HQMU,5777
|
|
142
|
+
cartography/intel/airbyte/__init__.py,sha256=1j5Rh7iW0TI9O9oLRq1XZd7LIO1t6NctOpcpd_E9urU,3097
|
|
143
|
+
cartography/intel/airbyte/connections.py,sha256=yMgKUqoq_68_bfC6OMthVmddhndAX1FQxmOc8AqQJrw,3630
|
|
144
|
+
cartography/intel/airbyte/destinations.py,sha256=6cnn6b3NHHQQA-JibtoY-H24e_k_J8Pc3qAzyO5bcwU,2152
|
|
145
|
+
cartography/intel/airbyte/organizations.py,sha256=WkgwwN8zDqUprUPEEBbAebznux9kq-VDfhtzQXMMJCA,1432
|
|
146
|
+
cartography/intel/airbyte/sources.py,sha256=8QBjF3H1OFl4_9VVYkHPWAIds6nJmDSxCpTTyfsdeWg,2022
|
|
147
|
+
cartography/intel/airbyte/tags.py,sha256=28ibBENyVdhJxXb_aur3elgjiyqWPflxkO3Mp-EOFTw,1537
|
|
148
|
+
cartography/intel/airbyte/users.py,sha256=QnZPmZNWiEk3HrSjQ1tUV5XjaO9hOHovQAK3PWlGvT0,2935
|
|
149
|
+
cartography/intel/airbyte/util.py,sha256=-YQKXhYGwx3k640Xj7KE1pRYLsdOl-z3JcTpiEmWM98,4941
|
|
150
|
+
cartography/intel/airbyte/workspaces.py,sha256=sUSwXNKNR8TukLrlpzMR0LBh-G1QV5laFvTAbFAisbw,1534
|
|
142
151
|
cartography/intel/anthropic/__init__.py,sha256=KnpHLIfj1X60P3tOIscJRjOie_DGlQ6lNuLfkDLUkfU,1613
|
|
143
152
|
cartography/intel/anthropic/apikeys.py,sha256=wdXnjPuZ1VaO0X96E6rk-tIhMSnXWNNPeUOQxgIQNok,1773
|
|
144
153
|
cartography/intel/anthropic/users.py,sha256=8tE18LVlweG2BhdMPdicEw-_WCmFs5AR6cyFABE3pvs,1948
|
|
145
154
|
cartography/intel/anthropic/util.py,sha256=m2OopxCC6chCwOxUXmc9nWW--nOlYyBL_Nc3Kd4CEwY,1847
|
|
146
155
|
cartography/intel/anthropic/workspaces.py,sha256=_t2kdGIFceDziC_BqIJa9-nLWIoWJbPoFNX1JYqbQ-w,2544
|
|
147
|
-
cartography/intel/aws/__init__.py,sha256=
|
|
156
|
+
cartography/intel/aws/__init__.py,sha256=GOMkWtprFPZmPPe5ZfVPLLWovTo_Wj1271_rCCyCYyc,12245
|
|
148
157
|
cartography/intel/aws/acm.py,sha256=a_i2pYPpocjlL8itwlcrmg8KrSLfjcmrkhcrPP-Omj8,3827
|
|
149
158
|
cartography/intel/aws/apigateway.py,sha256=hOYVSY70DbrEfhi9gkX7PAMtg9WiPE0Pbp2wqGes7Vs,12198
|
|
150
159
|
cartography/intel/aws/cloudtrail.py,sha256=kip3O39ulRmuo9RpfkofzUcGnkNnF8ksD7hP0Qe75-A,2441
|
|
160
|
+
cartography/intel/aws/cloudtrail_management_events.py,sha256=_kJR3N4eHm1c1OgObsUgAdB11UQjN91B9B0U3kuk0_o,13036
|
|
151
161
|
cartography/intel/aws/cloudwatch.py,sha256=k9A8h__dE8N2LeF0o8lpJcNqNAaTCG1Ip3PgAF9mnlQ,2488
|
|
162
|
+
cartography/intel/aws/codebuild.py,sha256=8I-Xzm_c5-ixnGOOHIQLYYpClnaGjjHrEMjQ0-DGsgM,3958
|
|
152
163
|
cartography/intel/aws/config.py,sha256=IIICicLQ0OTT3H3o8LDakIkA1BPUMwSyzpKonet-PaY,7658
|
|
153
164
|
cartography/intel/aws/dynamodb.py,sha256=VvvjeUgi1ZrqY9flXIQnfhhaSVSEqXXHW6T9917VLBk,5728
|
|
154
165
|
cartography/intel/aws/ecr.py,sha256=7a9EHZru6AUIGE_6MJ4h4_ZmrvBxsXaerCHtGr59lJ0,8393
|
|
@@ -169,13 +180,13 @@ cartography/intel/aws/permission_relationships.py,sha256=LTmnHS6zk9hcdL548V5ka3E
|
|
|
169
180
|
cartography/intel/aws/rds.py,sha256=9TQsoUQAJXj3x7laqJp06N9TQIN9ARyRiImBW9lQKOI,26574
|
|
170
181
|
cartography/intel/aws/redshift.py,sha256=FGcCzcnm1OOrbJvLqtR1DwWVn1pt4Y6_eKkTUERT7Ws,7108
|
|
171
182
|
cartography/intel/aws/resourcegroupstaggingapi.py,sha256=CebHaVLh8cr4CDYz54p5MGANPuE5Ni-_nFC78Znh4uU,10807
|
|
172
|
-
cartography/intel/aws/resources.py,sha256=
|
|
183
|
+
cartography/intel/aws/resources.py,sha256=q0YTxhrFbD9ELamRNYhf4oAtvSlP0Y4xVjVVZUqU2rw,4181
|
|
173
184
|
cartography/intel/aws/route53.py,sha256=-AZDD4zVR5pQ_c1bx87UZuzbC0mDiI-YS_8llFMZkwI,14424
|
|
174
185
|
cartography/intel/aws/s3.py,sha256=Da_5NYvQ7MN1AIN7CK9XXlVZo0fPdNHkqBZY1JWnHH4,33598
|
|
175
186
|
cartography/intel/aws/s3accountpublicaccessblock.py,sha256=XkqHnbj9ODRcc7Rbl4swi03qvw_T-7Bnx3BHpTmlxio,4688
|
|
176
187
|
cartography/intel/aws/secretsmanager.py,sha256=TelS5Th0Yooj-cv243VHWu-xEadhfyP9x7B1sjPWDIM,7606
|
|
177
188
|
cartography/intel/aws/securityhub.py,sha256=oR808vrEAHsHH79u8hf-hkVTBcdNd6ZObCeNGD_xnSo,2324
|
|
178
|
-
cartography/intel/aws/sns.py,sha256=
|
|
189
|
+
cartography/intel/aws/sns.py,sha256=UlBvYzEjjXDgxN_dihqRatIcAt-NivNp_YsZPasVuT4,6377
|
|
179
190
|
cartography/intel/aws/sqs.py,sha256=RUR8chO1oU5esZbHzKyhOO4L7LXmH78G6kGGtUCqB5Q,4096
|
|
180
191
|
cartography/intel/aws/ssm.py,sha256=fHcx929my-Lb6fgJavyWLTBtPV6onaY7_GPnhKsv8hk,8173
|
|
181
192
|
cartography/intel/aws/ec2/__init__.py,sha256=Lh_keh8WH-GNxxT4-Gw5MNiZFhDHe2kr3AChPgELa9w,346
|
|
@@ -242,7 +253,7 @@ cartography/intel/entra/__init__.py,sha256=c4zkMFKRem8aRDUqjAvcNw8UwBvAv24Xq8yed
|
|
|
242
253
|
cartography/intel/entra/applications.py,sha256=RAvUxk_hwsKbf64ohhg3f-QuTzsT7zb8q13d9nQuyqg,13625
|
|
243
254
|
cartography/intel/entra/groups.py,sha256=PiXW28jWv1zoAYsTy_6ntAUDdQWdO2-AZvH5BfGytvg,5026
|
|
244
255
|
cartography/intel/entra/ou.py,sha256=iv5UgRcPIaUZ8DdveKTmMkz0thEPYichpL9XntbHiPo,3803
|
|
245
|
-
cartography/intel/entra/users.py,sha256=
|
|
256
|
+
cartography/intel/entra/users.py,sha256=LiQuvpzPefRWvW1o07l-8TYrr6sUmpiYFli_4ROKJEw,8491
|
|
246
257
|
cartography/intel/gcp/__init__.py,sha256=PtzheGqf2otRVmDe3Ai1n6JFq3_OtS2hmJrRfj8_BnQ,18896
|
|
247
258
|
cartography/intel/gcp/compute.py,sha256=BShmgIhv_9E4rYfDe2ER3XIWZmU1NJIyZWIAvZY0uh0,49805
|
|
248
259
|
cartography/intel/gcp/crm.py,sha256=BoVBKthjviOD7WSGhXdKtBhrk4TR9qTxMQX6xsmEedw,12682
|
|
@@ -300,10 +311,29 @@ cartography/intel/pagerduty/services.py,sha256=LRatlKI9VzincZC5Jci9sEonhGS1svbae
|
|
|
300
311
|
cartography/intel/pagerduty/teams.py,sha256=1MUsb0GW1jaKA-T9K94JhkvcwTR_PrTIyC08Z2zH7qM,2518
|
|
301
312
|
cartography/intel/pagerduty/users.py,sha256=bOO4TBkIfRe2MdQHgwQ6E4CFOnRty32u1U9Hz2DypuQ,1631
|
|
302
313
|
cartography/intel/pagerduty/vendors.py,sha256=mTF7KiVfvrajC3pZkZnKZCm9gqlAZa7zmx8eAXSmL14,1567
|
|
314
|
+
cartography/intel/scaleway/__init__.py,sha256=vxKJIGr6dWz1GH4wQzheE94CJoFBR9IGZGHLThf0ETg,3665
|
|
315
|
+
cartography/intel/scaleway/projects.py,sha256=dWunbXaCu59ZQ_X-jxA8RlNMAy7o5Lk5LifgkkLQ434,2076
|
|
316
|
+
cartography/intel/scaleway/utils.py,sha256=436m9TdJcd8SKMKt2f2LHH35VoFZDasy3ghiDRCEE1U,1285
|
|
317
|
+
cartography/intel/scaleway/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
+
cartography/intel/scaleway/iam/apikeys.py,sha256=Fo6iEavcbIlFZ-mv6Iedoc2amrSkc5zsCKGlUUY_iYU,1800
|
|
319
|
+
cartography/intel/scaleway/iam/applications.py,sha256=EBOtdskGW3Uj0ATJgpTZUKIcqLu6A5pDz35U3CMxmO8,1919
|
|
320
|
+
cartography/intel/scaleway/iam/groups.py,sha256=OvDwK_Or9rfJzudfUlSWDu-e-Yq29nO5L7HSBL7FAW0,1775
|
|
321
|
+
cartography/intel/scaleway/iam/users.py,sha256=UDdPEgCcQwcXB_o_iTcBn7Rkr8aDPYBK6h68UkCcAwM,1751
|
|
322
|
+
cartography/intel/scaleway/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
|
+
cartography/intel/scaleway/instances/flexibleips.py,sha256=jLVSa887yyC89yS6bDTPgUgtCMy2MgY0tQYTjE6cvBo,2472
|
|
324
|
+
cartography/intel/scaleway/instances/instances.py,sha256=myWaw2UScVp9VnFjmCD9yZoGZit3I1Ie7dNT7o46Ugc,2708
|
|
325
|
+
cartography/intel/scaleway/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
|
+
cartography/intel/scaleway/storage/snapshots.py,sha256=6OIQOZHHu-aBNgQXSUmpbfgtjM1iXpeETRPUK4ShkT4,2471
|
|
327
|
+
cartography/intel/scaleway/storage/volumes.py,sha256=VHhyptEv3QoVYb7R2ubjbpJs1BaXgnlhocag_uPagsE,2392
|
|
303
328
|
cartography/intel/semgrep/__init__.py,sha256=zNAH5iDbLeLeQex2L5RZytGVFY4OHYvfGuEsSpdBF9s,1353
|
|
304
329
|
cartography/intel/semgrep/dependencies.py,sha256=C_gAVOx8wN70sqvFUQD9fZ3ijv_D4W_-EiLrZ4qsvHY,8429
|
|
305
330
|
cartography/intel/semgrep/deployment.py,sha256=RdLuTxSyKiIaAuposppp7Vjjq4w9M9QFSXmHgGmSWkY,2020
|
|
306
331
|
cartography/intel/semgrep/findings.py,sha256=EtNwK__L1Af45xilyQPnMzu40mjWVfiCaw4WL-MWH7c,10036
|
|
332
|
+
cartography/intel/sentinelone/__init__.py,sha256=0iHDpFG5y3T8jso76sqAcvESu04KehDPW92JhbjtCm4,1978
|
|
333
|
+
cartography/intel/sentinelone/account.py,sha256=FHWAl6iqpVUKTSNr0u6iAoZ7HgZezvY5JaNzYLs6GdY,4404
|
|
334
|
+
cartography/intel/sentinelone/agent.py,sha256=7ZAG1D6X-7LkhZ2Yjatm84VvFybfNEmILqky0XsYGwQ,4386
|
|
335
|
+
cartography/intel/sentinelone/api.py,sha256=2SUD5ukrUt8-JcMkJ6e0_ZUwh68DwBDssbUZMYInDR0,3042
|
|
336
|
+
cartography/intel/sentinelone/utils.py,sha256=IH0E-jYRQFonqwO86QCgVGbiPJl7O1RUzO_BylKBRvo,371
|
|
307
337
|
cartography/intel/snipeit/__init__.py,sha256=XIBEduCoQirs1NuOJ02XKvcBAc0pyeFMJNJsn4iJfXc,1102
|
|
308
338
|
cartography/intel/snipeit/asset.py,sha256=kQQQwYPM6Pm7bJRSMguKmFLg0s6AD6RG1nU5LLLbhVk,2043
|
|
309
339
|
cartography/intel/snipeit/user.py,sha256=qO-uwbwyM_Ft95-q-yWUxOL9UdtGpxSn4XM5T-evdNs,1987
|
|
@@ -318,6 +348,15 @@ cartography/intel/tailscale/utils.py,sha256=Xhwcb_31LWQy4MhoFWre_fX8gvddFVt13jjk
|
|
|
318
348
|
cartography/intel/trivy/__init__.py,sha256=hYroW2ewXRiTPYC7QqxFBaakUgk6j7U66bCSh8cgrGY,5277
|
|
319
349
|
cartography/intel/trivy/scanner.py,sha256=u9b5ORpVXaqR6owO6QXjNh9Nz1Vx1nn-rsYfcyrSlx8,12021
|
|
320
350
|
cartography/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
+
cartography/models/airbyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
|
+
cartography/models/airbyte/connection.py,sha256=_tQSLqOwSU5tplBmLj331Knrv3n_czcvWWWHKpFuirg,5401
|
|
353
|
+
cartography/models/airbyte/destination.py,sha256=Ac1JTzzInkbsrn0t0nisGl3VTo9ZHbF9BaT3w54CGd0,3251
|
|
354
|
+
cartography/models/airbyte/organization.py,sha256=RdgMgHjDdUyS6S32lReYHBcijBEXvOx_HgtRUwgVVcg,757
|
|
355
|
+
cartography/models/airbyte/source.py,sha256=VImW8CRp_qe6M-I-_nxo7EFfzjkiD4p_kIxev7i4S4Q,3151
|
|
356
|
+
cartography/models/airbyte/stream.py,sha256=LenZqTLi7VdfnfGfDUpMXOrn1jiWpEzFgsZM7MUzjC8,3040
|
|
357
|
+
cartography/models/airbyte/tag.py,sha256=1CnWGauKtAwRQMkoogb2TFNiKlEA7D5bo8cHXGm86AQ,2682
|
|
358
|
+
cartography/models/airbyte/user.py,sha256=i31QLWUybtQZDe68wFOYb6zqyLdEGtFKGPR1Da_WiCU,4329
|
|
359
|
+
cartography/models/airbyte/workspace.py,sha256=HcoSsvyQEY04JL1ekgnX5Qie2d9CRsH0T3jDkiKaZa4,1939
|
|
321
360
|
cartography/models/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
361
|
cartography/models/anthropic/apikey.py,sha256=eDaaXBHkZtRrKCDgeBD5BYR4jVUH-5QTi7Ji9uEpd-0,3578
|
|
323
362
|
cartography/models/anthropic/organization.py,sha256=3Jr9dplEF57Jn50YKn_Jy7LMpDfSydudtiy3_Pismgc,669
|
|
@@ -332,9 +371,12 @@ cartography/models/aws/emr.py,sha256=iZPzyqFrDsyRSRZqjCHlyDkO91H__6iszJq5hkNpOLU
|
|
|
332
371
|
cartography/models/aws/acm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
372
|
cartography/models/aws/acm/certificate.py,sha256=GvB7xKBCoPmLsV9LnqAUg8x8sGTsDDsr7WIaqh4Sc-M,3141
|
|
334
373
|
cartography/models/aws/cloudtrail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
|
+
cartography/models/aws/cloudtrail/management_events.py,sha256=RKAHm6RGVJBaOS90Csa7Vg1LEgq4lXY9YnRIMD2iLwM,2816
|
|
335
375
|
cartography/models/aws/cloudtrail/trail.py,sha256=qQnpqFypKef8E7-JOR83euAtI6_j2KdjzGGFiQa6xkA,3676
|
|
336
376
|
cartography/models/aws/cloudwatch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
377
|
cartography/models/aws/cloudwatch/loggroup.py,sha256=_MRpRvU_Vg2rVlUdzfae6vOpbpmYaYE1EVN5zWucFbE,2456
|
|
378
|
+
cartography/models/aws/codebuild/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
+
cartography/models/aws/codebuild/project.py,sha256=r_DMCtHlbG9FGUk_I8j_E1inIbFcGAXtL6HxHrcgg0U,2122
|
|
338
380
|
cartography/models/aws/dynamodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
381
|
cartography/models/aws/dynamodb/gsi.py,sha256=9bG1weq7vuEdt5sUDRqY5Rud9V1pZsohd8O08lZq7lc,3116
|
|
340
382
|
cartography/models/aws/dynamodb/tables.py,sha256=_dUgNqJ3KGO85yFOwKQOy3pnUyb1nyZQ18pNS0OUuKY,2278
|
|
@@ -368,9 +410,9 @@ cartography/models/aws/ecs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
368
410
|
cartography/models/aws/ecs/clusters.py,sha256=uu-UzkSbpLu4UG5I6NsFMaThrPYl6jYe71EX8baMy1Q,2845
|
|
369
411
|
cartography/models/aws/ecs/container_definitions.py,sha256=ocJMyl6wfxbW3aPrR6xwzqP9VMpkanKA3ghqcM5BWL0,4169
|
|
370
412
|
cartography/models/aws/ecs/container_instances.py,sha256=LhBkyEWfOSejD57AERoQYVECJxwUMF09zPhrGYvnqwk,3632
|
|
371
|
-
cartography/models/aws/ecs/containers.py,sha256=
|
|
413
|
+
cartography/models/aws/ecs/containers.py,sha256=jmMdaonho4VI-TdZqBgTc1Ck-6XqI4O0hKRh1Ioerc4,3955
|
|
372
414
|
cartography/models/aws/ecs/services.py,sha256=YPVTS0BB3X6tFCqIX3V1AZXcnHQEADusQkErd88oH7o,4964
|
|
373
|
-
cartography/models/aws/ecs/task_definitions.py,sha256=
|
|
415
|
+
cartography/models/aws/ecs/task_definitions.py,sha256=Wee44GZazQfZQ1TRRZr8bYXwSGgNNDuYxHRBhOmvWzg,5573
|
|
374
416
|
cartography/models/aws/ecs/tasks.py,sha256=6r2WZDc26LGR2j-U5s5v4d4PbMIvEDSkLAbTtpFdrUM,5013
|
|
375
417
|
cartography/models/aws/efs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
418
|
cartography/models/aws/efs/access_point.py,sha256=Auk8E0AoPjrCxch8bP8fhT3JZ2WxblTTfYSqamA_p8g,3185
|
|
@@ -394,6 +436,7 @@ cartography/models/aws/secretsmanager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
394
436
|
cartography/models/aws/secretsmanager/secret_version.py,sha256=Ah4b9BjgL24MhmxRV-HarvmNs_uCRNVMkxgvzIEp9uk,4167
|
|
395
437
|
cartography/models/aws/sns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
396
438
|
cartography/models/aws/sns/topic.py,sha256=_Lcu7_c_UCUcPKEo5-kCdX3fAOkar_YKZbLmonX3BR8,2349
|
|
439
|
+
cartography/models/aws/sns/topic_subscription.py,sha256=8R8Gxj4QuZhpokLOhb_VogrYR04NiFpcMJ58L16gxQc,2947
|
|
397
440
|
cartography/models/aws/sqs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
441
|
cartography/models/aws/sqs/queue.py,sha256=ELSbeeYXotmzku6KAeDt2i1qMTUsV4tOIVA5JaPgXEE,3992
|
|
399
442
|
cartography/models/aws/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -436,7 +479,7 @@ cartography/models/entra/application.py,sha256=ZNVY0a0T2nmdoVj2i5Xri0J8oIR5d9HVc
|
|
|
436
479
|
cartography/models/entra/group.py,sha256=d8QLBzqje4MkdN2uC4LXSxjUQ8_2T_cv4YbrPGfZ994,3809
|
|
437
480
|
cartography/models/entra/ou.py,sha256=YmtW1Cp_XX29uzbunhEGl073AzV6PZsQtLs_MR-ACNU,2056
|
|
438
481
|
cartography/models/entra/tenant.py,sha256=abpNTvOtXHgdrU-y7q6jt--odcq1eRsT2j5nMdVy_Gw,1793
|
|
439
|
-
cartography/models/entra/user.py,sha256=
|
|
482
|
+
cartography/models/entra/user.py,sha256=uVMOYhVMwnR1dqokhAzk1IlHpmKwGpz0H5osS_9ENBE,3144
|
|
440
483
|
cartography/models/gcp/iam.py,sha256=k6egP-DHvMX18QcLuwklxqLZXd4YPMhAs5-qWWloqJ4,3071
|
|
441
484
|
cartography/models/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
485
|
cartography/models/github/orgs.py,sha256=cEG7yX56VzzI3OkQFjUum2LdrXCLWl4ExvNqSZ7Bmiw,1107
|
|
@@ -462,11 +505,28 @@ cartography/models/openai/organization.py,sha256=wkqjzApro3pv3Tq5IztXr2AbZdjbLmB
|
|
|
462
505
|
cartography/models/openai/project.py,sha256=DnZ8Mwp514pP3ieCfZGYmYo6aAn2W9JSGbPwT4nblNA,3564
|
|
463
506
|
cartography/models/openai/serviceaccount.py,sha256=Hzrqw-w8jlJGy_I-TW3pct4lQW0Lcnl32uv_Pht-oLQ,2041
|
|
464
507
|
cartography/models/openai/user.py,sha256=FsleyvdUZXpI3XUKDMYOpsbun6fpmTNXabDBhS1BfaM,2001
|
|
508
|
+
cartography/models/scaleway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
|
+
cartography/models/scaleway/organization.py,sha256=WyOwCz8EeDguvkL8uV_fwJ55PeC984OtEF4xeyTDdVk,664
|
|
510
|
+
cartography/models/scaleway/project.py,sha256=5iWOTRhtRqhnG33gNtheDFz865TNg8DeKfotNwSfzV4,2027
|
|
511
|
+
cartography/models/scaleway/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
+
cartography/models/scaleway/iam/apikey.py,sha256=hg_5oUY_w0X417bbRh9a15oVgl_IEKOLHVewVaDKYXg,3846
|
|
513
|
+
cartography/models/scaleway/iam/application.py,sha256=rFbeHDb3DEh4N9iVyCViBvV4mHtJ5xTsnMVAoMqjae0,2275
|
|
514
|
+
cartography/models/scaleway/iam/group.py,sha256=7K--61bIASkNm25rhXgQqgAyGFF-3_FXYPBmJqtv51Q,3796
|
|
515
|
+
cartography/models/scaleway/iam/user.py,sha256=3B9n2aTj92QGToozTiAVMifbacBpn7-EJRt1u8hdvvg,2641
|
|
516
|
+
cartography/models/scaleway/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
+
cartography/models/scaleway/instance/flexibleip.py,sha256=0c3s0RI79FShTulYkLh3kuxHGITWI9CX_teQ3Pi27qU,2177
|
|
518
|
+
cartography/models/scaleway/instance/instance.py,sha256=4rLttx75vu0EGXXGQn4-XR4ai_0SAUIXEFZWEnUK450,5020
|
|
519
|
+
cartography/models/scaleway/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
520
|
+
cartography/models/scaleway/storage/snapshot.py,sha256=E46mkMhFsFSwMB_3EMDj8NyLLG3f74BNe8ahe8sCsTo,3270
|
|
521
|
+
cartography/models/scaleway/storage/volume.py,sha256=XrsgCIRshcX4ywKQbQOLn1fvV7MP5eaKmiElqOOJsks,2217
|
|
465
522
|
cartography/models/semgrep/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
523
|
cartography/models/semgrep/dependencies.py,sha256=8rC5VE9cCxz0HImY3xHg5tWmMcTkv-6FI2fZg5M2qkA,4038
|
|
467
524
|
cartography/models/semgrep/deployment.py,sha256=n6bKyFPRfCDiMXaqZhv3SMAMS4Ba8XOBM7oawOfc-5Y,745
|
|
468
525
|
cartography/models/semgrep/findings.py,sha256=QycDISvd7BduVkRCaGzVS-656htuP5FVxI1PSE4tQFE,5607
|
|
469
526
|
cartography/models/semgrep/locations.py,sha256=uC0QCsqSWV0ZCvQuR3OPpecImbumNLpRqr3NC1PrnQ0,3079
|
|
527
|
+
cartography/models/sentinelone/__init__.py,sha256=DNFTywfYLRp-cX6S6zbVRkFmjud5MVtMM4Fro8PTU4Q,26
|
|
528
|
+
cartography/models/sentinelone/account.py,sha256=bUh07nyPXEMXVx8kCqT0-gX9tBH8-GufcQvC2TlHnP0,1370
|
|
529
|
+
cartography/models/sentinelone/agent.py,sha256=3FTJQQ_QRq9GGeIjuV0_8ZeJcnKWGHHC3exddZldqCY,2287
|
|
470
530
|
cartography/models/snipeit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
531
|
cartography/models/snipeit/asset.py,sha256=64Cq6ff0jemj_fvhQ_-B1xEHqsZ95RqtcbDSTzCI_00,3312
|
|
472
532
|
cartography/models/snipeit/tenant.py,sha256=E6uaY3d2W3MmfuUqF2TLpRP3T1QZkoIXRtp9BGxxSxk,695
|
|
@@ -482,9 +542,9 @@ cartography/models/trivy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
482
542
|
cartography/models/trivy/findings.py,sha256=SgI_h1aRyR20uAHvuXIZ1T6r4IZJt6SVhxRaF2bTsm0,3085
|
|
483
543
|
cartography/models/trivy/fix.py,sha256=ho9ENVl9HSXqyggyCwR6ilkOBKDxpQ7rGibo_j21NA4,2587
|
|
484
544
|
cartography/models/trivy/package.py,sha256=IwO1RZZ-MFRtNbt8Cq6YFl6fdNJMFmULnJkkK8Q4rL4,2809
|
|
485
|
-
cartography-0.
|
|
486
|
-
cartography-0.
|
|
487
|
-
cartography-0.
|
|
488
|
-
cartography-0.
|
|
489
|
-
cartography-0.
|
|
490
|
-
cartography-0.
|
|
545
|
+
cartography-0.107.0rc1.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
|
|
546
|
+
cartography-0.107.0rc1.dist-info/METADATA,sha256=4iitm8S4B9hie7yMMuR5tGdbOPOvBPqucuCHqXUXVnM,12861
|
|
547
|
+
cartography-0.107.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
548
|
+
cartography-0.107.0rc1.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
|
|
549
|
+
cartography-0.107.0rc1.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
|
|
550
|
+
cartography-0.107.0rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|