cartography 0.111.0__py3-none-any.whl → 0.112.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 +11 -0
- cartography/config.py +8 -0
- cartography/data/indexes.cypher +0 -2
- cartography/intel/aws/apigateway.py +126 -17
- cartography/intel/aws/ec2/instances.py +3 -1
- cartography/intel/aws/ec2/network_interfaces.py +1 -1
- cartography/intel/aws/ec2/vpc_peerings.py +262 -125
- cartography/intel/azure/__init__.py +35 -32
- cartography/intel/azure/subscription.py +2 -2
- cartography/intel/azure/tenant.py +39 -30
- cartography/intel/azure/util/credentials.py +49 -174
- cartography/intel/entra/__init__.py +47 -1
- cartography/intel/entra/applications.py +220 -170
- cartography/intel/entra/groups.py +41 -22
- cartography/intel/entra/ou.py +28 -20
- cartography/intel/entra/users.py +24 -18
- cartography/intel/gcp/__init__.py +25 -8
- cartography/intel/gcp/compute.py +47 -12
- cartography/intel/kubernetes/__init__.py +26 -0
- cartography/intel/kubernetes/eks.py +402 -0
- cartography/intel/kubernetes/rbac.py +133 -0
- cartography/models/aws/apigateway/apigatewayintegration.py +79 -0
- cartography/models/aws/apigateway/apigatewaymethod.py +74 -0
- cartography/models/aws/ec2/vpc_peering.py +157 -0
- cartography/models/azure/principal.py +44 -0
- cartography/models/azure/tenant.py +20 -0
- cartography/models/kubernetes/clusterrolebindings.py +40 -0
- cartography/models/kubernetes/groups.py +107 -0
- cartography/models/kubernetes/oidc.py +51 -0
- cartography/models/kubernetes/rolebindings.py +40 -0
- cartography/models/kubernetes/users.py +105 -0
- cartography/util.py +2 -0
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/METADATA +8 -5
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/RECORD +39 -31
- cartography/data/jobs/cleanup/aws_import_vpc_peering_cleanup.json +0 -45
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/WHEEL +0 -0
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/entry_points.txt +0 -0
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/licenses/LICENSE +0 -0
- {cartography-0.111.0.dist-info → cartography-0.112.0.dist-info}/top_level.txt +0 -0
cartography/util.py
CHANGED
|
@@ -270,6 +270,8 @@ def aws_handle_regions(func: AWSGetFunc) -> AWSGetFunc:
|
|
|
270
270
|
"AccessDenied",
|
|
271
271
|
"AccessDeniedException",
|
|
272
272
|
"AuthFailure",
|
|
273
|
+
"AuthorizationError",
|
|
274
|
+
"AuthorizationErrorException",
|
|
273
275
|
"InvalidClientTokenId",
|
|
274
276
|
"UnauthorizedOperation",
|
|
275
277
|
"UnrecognizedClientException",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cartography
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.112.0
|
|
4
4
|
Summary: Explore assets and their relationships across your technical infrastructure.
|
|
5
5
|
Maintainer: Cartography Contributors
|
|
6
|
-
License:
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://cartography-cncf.github.io/cartography
|
|
8
8
|
Project-URL: Documentation, https://cartography-cncf.github.io/cartography
|
|
9
9
|
Project-URL: Repository, https://github.com/cartography-cncf/cartography
|
|
@@ -11,7 +11,6 @@ Project-URL: Issues, https://github.com/cartography-cncf/cartography/issues
|
|
|
11
11
|
Project-URL: Changelog, https://github.com/cartography-cncf/cartography/releases
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
14
|
Classifier: Natural Language :: English
|
|
16
15
|
Classifier: Programming Language :: Python
|
|
17
16
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -94,7 +93,7 @@ You can learn more about the story behind Cartography in our [presentation at BS
|
|
|
94
93
|
- [Google GSuite](https://cartography-cncf.github.io/cartography/modules/gsuite/index.html) - users, groups
|
|
95
94
|
- [Kandji](https://cartography-cncf.github.io/cartography/modules/kandji/index.html) - Devices
|
|
96
95
|
- [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
|
|
97
|
-
- [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container, ServiceAccount, Role, RoleBinding, ClusterRole, ClusterRoleBinding
|
|
96
|
+
- [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container, ServiceAccount, Role, RoleBinding, ClusterRole, ClusterRoleBinding, OIDCProvider
|
|
98
97
|
- [Lastpass](https://cartography-cncf.github.io/cartography/modules/lastpass/index.html) - users
|
|
99
98
|
- [Microsoft Azure](https://cartography-cncf.github.io/cartography/modules/azure/index.html) - CosmosDB, SQL, Storage, Virtual Machine
|
|
100
99
|
- [Microsoft Entra ID](https://cartography-cncf.github.io/cartography/modules/entra/index.html) - Users
|
|
@@ -153,6 +152,10 @@ Now that data is in the graph, you can quickly start with our [querying tutorial
|
|
|
153
152
|
Directly querying Neo4j is already very useful as a sort of "swiss army knife" for security data problems, but you can also build applications and data pipelines around Cartography. View this doc on [applications](https://cartography-cncf.github.io/cartography/usage/applications.html).
|
|
154
153
|
|
|
155
154
|
|
|
155
|
+
## Docs
|
|
156
|
+
|
|
157
|
+
See [here](https://cartography-cncf.github.io/cartography/)
|
|
158
|
+
|
|
156
159
|
## Community
|
|
157
160
|
|
|
158
161
|
- Hang out with us on Slack: Join the CNCF Slack workspace [here](https://communityinviter.com/apps/cloud-native/cncf), and then join the `#cartography` channel.
|
|
@@ -168,7 +171,7 @@ This project is licensed under the [Apache 2.0 License](LICENSE).
|
|
|
168
171
|
Thank you for considering contributing to Cartography!
|
|
169
172
|
|
|
170
173
|
### Code of conduct
|
|
171
|
-
All contributors and participants of this project must follow the
|
|
174
|
+
All contributors and participants of this project must follow the [CNCF code of conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md).
|
|
172
175
|
|
|
173
176
|
### Bug reports and feature requests and discussions
|
|
174
177
|
Submit a GitHub issue to report a bug or request a new feature. If we decide that the issue needs more discussion - usually because the scope is too large or we need to make careful decision - we will convert the issue to a [GitHub Discussion](https://github.com/cartography-cncf/cartography/discussions).
|
|
@@ -1,12 +1,12 @@
|
|
|
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=47W3dLnNOvtv9_-MruX0ob1Ldd5LTVQS7278NjI_d9U,708
|
|
4
|
+
cartography/cli.py,sha256=HMBVeVjNSypEH4SI3_ifVXse3VQOSWDH4AeUj8t_aAk,49225
|
|
5
|
+
cartography/config.py,sha256=2ng1kOkgbH4Lq_8eNj1NR9XiD1_St7Twrmfpafie33c,18331
|
|
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
|
|
9
|
-
cartography/util.py,sha256=
|
|
9
|
+
cartography/util.py,sha256=T4AUDNfooN9brDPfKk2g2l8petv4bo3Jxz-o14u3_3Y,16379
|
|
10
10
|
cartography/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
cartography/client/aws/__init__.py,sha256=Zj7nX21QQELwPLZlpldm_22IiXZ1VFsEFQbWX_e4okU,558
|
|
12
12
|
cartography/client/aws/ecr.py,sha256=04IXnuEAauyO5Mx9Wmt79WdUnYDhYsk2QSOnwE5_BeM,1664
|
|
@@ -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=oUg5nQlQPSuLbqT1mGb2DJYKvpvT08R5l7_F5vd5Hg4,22214
|
|
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
|
|
@@ -55,7 +55,6 @@ cartography/data/jobs/cleanup/aws_import_sqs_queues_cleanup.json,sha256=Mla8y-CW
|
|
|
55
55
|
cartography/data/jobs/cleanup/aws_import_tags_cleanup.json,sha256=mVOmhpoeHYItYQFATlTTeBhUt2GipAliRhh69zQcHok,7360
|
|
56
56
|
cartography/data/jobs/cleanup/aws_import_tgw_cleanup.json,sha256=jHlKj2jcI3avvDMOCbFd89hTS0HcNVrZinJ4AYgykQs,2097
|
|
57
57
|
cartography/data/jobs/cleanup/aws_import_users_cleanup.json,sha256=TY0VFJlbgd3ClmuHSzNuNAu-tDWFbAeEGWIZz-rmlGg,257
|
|
58
|
-
cartography/data/jobs/cleanup/aws_import_vpc_peering_cleanup.json,sha256=jpIy2W2T9A9tB5EZQeVU2p2Z0LY52NYHS8W51NQTKaA,2040
|
|
59
58
|
cartography/data/jobs/cleanup/aws_ingest_ec2_auto_scaling_groups_cleanup.json,sha256=6EXQO_xH3kXkgxN_H3j45LKEN_TZucLg__g-lD3gyfI,1802
|
|
60
59
|
cartography/data/jobs/cleanup/aws_ingest_load_balancers_cleanup.json,sha256=1vidNCrITt-_bxw5lsSzyqGsuyWiNhI6-bnuv5lMvRI,1729
|
|
61
60
|
cartography/data/jobs/cleanup/aws_ingest_load_balancers_v2_cleanup.json,sha256=kIMc5YTkWDOLdHCOAHPb7Q8Oz9pP6GzGO9gjBo0ZhR0,1596
|
|
@@ -145,7 +144,7 @@ cartography/intel/anthropic/util.py,sha256=m2OopxCC6chCwOxUXmc9nWW--nOlYyBL_Nc3K
|
|
|
145
144
|
cartography/intel/anthropic/workspaces.py,sha256=_t2kdGIFceDziC_BqIJa9-nLWIoWJbPoFNX1JYqbQ-w,2544
|
|
146
145
|
cartography/intel/aws/__init__.py,sha256=lgu0kxERg_dJGuktEDU0ImpHuNGHJharoLEpirKWPZM,12330
|
|
147
146
|
cartography/intel/aws/acm.py,sha256=a_i2pYPpocjlL8itwlcrmg8KrSLfjcmrkhcrPP-Omj8,3827
|
|
148
|
-
cartography/intel/aws/apigateway.py,sha256=
|
|
147
|
+
cartography/intel/aws/apigateway.py,sha256=o1QOR3vOw2WvXHwnRV0uparkYU2NWKk3M1DpjfUvYOk,18970
|
|
149
148
|
cartography/intel/aws/cloudtrail.py,sha256=LCqf3pQMiMY4h1Wehb_OjwXst2fMIEnNOD8HbXsK4X4,2753
|
|
150
149
|
cartography/intel/aws/cloudtrail_management_events.py,sha256=z5VZH1wQvl_ROG1sB9ZPdH4uexp-BKrI-WdEkhQKbkQ,35751
|
|
151
150
|
cartography/intel/aws/cloudwatch.py,sha256=bBPlx5W15nun-jhYs-UAZQpo9Qm7FcBs4gBQevTqmi4,7246
|
|
@@ -187,14 +186,14 @@ cartography/intel/aws/ec2/__init__.py,sha256=Lh_keh8WH-GNxxT4-Gw5MNiZFhDHe2kr3AC
|
|
|
187
186
|
cartography/intel/aws/ec2/auto_scaling_groups.py,sha256=s2XP1HPEWYg752trj_bwH9kB5zsRORErD9VFqfU6c1s,9141
|
|
188
187
|
cartography/intel/aws/ec2/elastic_ip_addresses.py,sha256=7y4hwNXZTeo3lKX9cNrk9HvBTb5RXRD9GDU7dnDSYwg,4148
|
|
189
188
|
cartography/intel/aws/ec2/images.py,sha256=U4qsgfj4YeROZ_C8wcXOImBRq8WNWtuPZy6yusdPqMw,4156
|
|
190
|
-
cartography/intel/aws/ec2/instances.py,sha256=
|
|
189
|
+
cartography/intel/aws/ec2/instances.py,sha256=VqPEw8DyONBY-ImtOCYSyZamoDWBdfh5zn91bRsL4dw,13539
|
|
191
190
|
cartography/intel/aws/ec2/internet_gateways.py,sha256=oALj-_nv91Otnxlp9R_vrMwbLWPEUFZLRRy60LFBqgM,3103
|
|
192
191
|
cartography/intel/aws/ec2/key_pairs.py,sha256=494IxQac8XCbxhVWQKBHrkWnoKq8WXZ_D3bqR8DGRg0,2828
|
|
193
192
|
cartography/intel/aws/ec2/launch_templates.py,sha256=d7QRmEd2IYxRJH7mQVv8ugVqRJYWmN6SEfIwqoNnNX4,6938
|
|
194
193
|
cartography/intel/aws/ec2/load_balancer_v2s.py,sha256=t_ut_uvkrUB3B16vAJGqG3PsnJy7fTR7Vv2lsg7hyXM,9396
|
|
195
194
|
cartography/intel/aws/ec2/load_balancers.py,sha256=SRdsSIUvq8zhLMqa1hpFv7bio2wtpLKmkfbZl9XNCFY,6321
|
|
196
195
|
cartography/intel/aws/ec2/network_acls.py,sha256=UqAYCA6uA7UWbJVjC9wRBM8W0410j-boOSgyZ79UnfA,6873
|
|
197
|
-
cartography/intel/aws/ec2/network_interfaces.py,sha256=
|
|
196
|
+
cartography/intel/aws/ec2/network_interfaces.py,sha256=93tnROpr29bYVwo6nE8kGLXQzXml-mJwE0L54InP4s0,9557
|
|
198
197
|
cartography/intel/aws/ec2/reserved_instances.py,sha256=BsshVUzkuOstbidYEGq0By2Y-ZM5T7OVxfVrHVJ6HS8,3321
|
|
199
198
|
cartography/intel/aws/ec2/route_tables.py,sha256=NSW7B-4wII4mf5ClX5F1q4cKfSNAjxBSnrdk4EhxXz0,10465
|
|
200
199
|
cartography/intel/aws/ec2/security_groups.py,sha256=VAa4Cp0PJtjLrl95MIudXdF8VR4ZafY3bOjuyrlPnmc,6582
|
|
@@ -204,19 +203,19 @@ cartography/intel/aws/ec2/tgw.py,sha256=FcXWgLkr4EcD9DRXJMeyWQIgIHidaq40UrZneKhv
|
|
|
204
203
|
cartography/intel/aws/ec2/util.py,sha256=t6oJX9nCTejvp0D9ihxfhmCoD1aoOXQB0cuvz0pMCe0,226
|
|
205
204
|
cartography/intel/aws/ec2/volumes.py,sha256=C5V9LRE41REU4siHMAaE9yAjtbpLi8yTkaqLEw1uXMg,3726
|
|
206
205
|
cartography/intel/aws/ec2/vpc.py,sha256=JXRy0G33PQmMx2UM788InHEq7UW45MdH_wasH22t_uE,6536
|
|
207
|
-
cartography/intel/aws/ec2/vpc_peerings.py,sha256=
|
|
206
|
+
cartography/intel/aws/ec2/vpc_peerings.py,sha256=bP-qWHmSEoPMiOa3cumcyAQHvVO_Ifbo-U2NwD6N67o,11526
|
|
208
207
|
cartography/intel/aws/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
208
|
cartography/intel/aws/util/arns.py,sha256=Hwg_Lnf9ZNRTI-oEXU182S9ejOTy2-ggm2RKIxV5lGc,549
|
|
210
209
|
cartography/intel/aws/util/common.py,sha256=iiwqBiD65iSrS3LbnnBLBMkyV8BrXBEscI5TMxcAdXA,1817
|
|
211
|
-
cartography/intel/azure/__init__.py,sha256=
|
|
210
|
+
cartography/intel/azure/__init__.py,sha256=TZKzvKuMQ7Z4br-aLLcEZwplUn6g3Jx9zUsuGwFTe3o,4347
|
|
212
211
|
cartography/intel/azure/compute.py,sha256=Tg_vdK0MBpjZYaiihkpWsdUCFgdtZbhpDuV2tXAggbg,9139
|
|
213
212
|
cartography/intel/azure/cosmosdb.py,sha256=HqpGJwusE_FG6X_ZgpnBpt2h0hGA-zrKZ6PLvhbALwg,43591
|
|
214
213
|
cartography/intel/azure/sql.py,sha256=VJ7tXKn23MnXCd2P_b5Sq9xJBHfGwS6z5-xxHN_5EeU,34289
|
|
215
214
|
cartography/intel/azure/storage.py,sha256=yItkgGAnWDQAmtytOeC8NxJVgwd8DT0gkFYw-rFiGi4,28639
|
|
216
|
-
cartography/intel/azure/subscription.py,sha256=
|
|
217
|
-
cartography/intel/azure/tenant.py,sha256=
|
|
215
|
+
cartography/intel/azure/subscription.py,sha256=eEWLrre4vRc4Pkfr0sc6Uc_ZOiIgVlkTQ7OR4C-Kghc,3509
|
|
216
|
+
cartography/intel/azure/tenant.py,sha256=T5JSk_aX6eGe0nIYX1zRNDyySndyr8vXNNdP0hSApMc,1786
|
|
218
217
|
cartography/intel/azure/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
-
cartography/intel/azure/util/credentials.py,sha256=
|
|
218
|
+
cartography/intel/azure/util/credentials.py,sha256=aoJX6CPlVOC4ocaLN03uHUvA6MqbhttscrQmSPR5BHQ,3106
|
|
220
219
|
cartography/intel/bigfix/__init__.py,sha256=gRe47P1-a7ae7kVpBtHUAFQMs4ElxRn-n-0fROVTizA,1058
|
|
221
220
|
cartography/intel/bigfix/computers.py,sha256=Tq4Q6yMVMV5azDnDexCeVNBmUJesIC3prqlWHk0NrcQ,6038
|
|
222
221
|
cartography/intel/cloudflare/__init__.py,sha256=9RUxCk8xb1i-6vS5pH45aK5w3F2a1XZE184t7jiGSdc,2227
|
|
@@ -243,13 +242,13 @@ cartography/intel/duo/phones.py,sha256=3_MPXmR4ub4Jra0ISr6cKzC5z_Pvx7YhHojWeJJku
|
|
|
243
242
|
cartography/intel/duo/tokens.py,sha256=lVe0ByS3ncLA3FZXoqN8eLj_HMsl5s4uDT-uWlLJhSs,2407
|
|
244
243
|
cartography/intel/duo/users.py,sha256=e2eK716wVlO71O9Q9KrWZot2cHjHZ7KgC9ZW27pCDaI,4143
|
|
245
244
|
cartography/intel/duo/web_authn_credentials.py,sha256=mLWXdBe4V6fHCFotmtJmwhTSoOY6Hx87D3zI3hlL2nc,2656
|
|
246
|
-
cartography/intel/entra/__init__.py,sha256=
|
|
247
|
-
cartography/intel/entra/applications.py,sha256=
|
|
248
|
-
cartography/intel/entra/groups.py,sha256=
|
|
249
|
-
cartography/intel/entra/ou.py,sha256=
|
|
250
|
-
cartography/intel/entra/users.py,sha256=
|
|
251
|
-
cartography/intel/gcp/__init__.py,sha256=
|
|
252
|
-
cartography/intel/gcp/compute.py,sha256=
|
|
245
|
+
cartography/intel/entra/__init__.py,sha256=hiKREwLFSAunnlvm4XmLu_gMZVrq4HWD3OHYHAbjdCc,3811
|
|
246
|
+
cartography/intel/entra/applications.py,sha256=ewPLVf18LxEwE0I8mCNv1SAbQoLzObruvBzQ8TFTKIU,14750
|
|
247
|
+
cartography/intel/entra/groups.py,sha256=q8K-ttH796dG1DKeMAXuN6FmqT238aa4cGcZXNmYaRA,6869
|
|
248
|
+
cartography/intel/entra/ou.py,sha256=baV_Rh22a4WMnPrQB6E57XR6GwVQWkME1bntnZ1hzBo,4144
|
|
249
|
+
cartography/intel/entra/users.py,sha256=vlEVXJTr75exV-sunV7V-B1Kqm9jtZQCA909ls1qHQ0,8748
|
|
250
|
+
cartography/intel/gcp/__init__.py,sha256=YXHapMy1zAPO60kOPhw5XIGtUNiMwGlcWvsiCxn7nq4,20117
|
|
251
|
+
cartography/intel/gcp/compute.py,sha256=oYBOXUO6sy4aUWCjsie5E0ho6ybPgCrCO3WfMMujjhk,50456
|
|
253
252
|
cartography/intel/gcp/crm.py,sha256=BoVBKthjviOD7WSGhXdKtBhrk4TR9qTxMQX6xsmEedw,12682
|
|
254
253
|
cartography/intel/gcp/dns.py,sha256=motkUXZLO30FEemqdffWuZA1Y1DLv0lGOgUqOi6ep4c,8157
|
|
255
254
|
cartography/intel/gcp/gke.py,sha256=2-lhTzFEh-gAQ756Sr0kZZJY5_zcFWPS7_p0EVNzuR8,8326
|
|
@@ -279,11 +278,12 @@ cartography/intel/keycloak/roles.py,sha256=iflMWEVH2J5uS_CAM_ZXC6ZYMGIkgvudPUHu9
|
|
|
279
278
|
cartography/intel/keycloak/scopes.py,sha256=3xa6eFIjbknewi6Y-AXI9DyVe2pfGc9155OliX2WXDw,1825
|
|
280
279
|
cartography/intel/keycloak/users.py,sha256=XMqCysorc1NA4hfe_CqQ6Plq8wvQiYOoBDrfLeAHnkc,1597
|
|
281
280
|
cartography/intel/keycloak/util.py,sha256=CsZ7tT56v5ptor0eBJl-hgRS-qoNH0V7s7ejcUGOhHE,1633
|
|
282
|
-
cartography/intel/kubernetes/__init__.py,sha256=
|
|
281
|
+
cartography/intel/kubernetes/__init__.py,sha256=PRoUjDUSkbdobhk7_808Ma-IPDzUBZG69Bi0botPX4E,3087
|
|
283
282
|
cartography/intel/kubernetes/clusters.py,sha256=GgtsHRMUnNFd55QEyvq-PuHR4HC388yhQbL44W_iJPo,2515
|
|
283
|
+
cartography/intel/kubernetes/eks.py,sha256=R2BnpcVHb2pxJEythWN8EDCtuB9EUqZMIahrnGsde1k,13594
|
|
284
284
|
cartography/intel/kubernetes/namespaces.py,sha256=i2OER_NIPb9h9MVy1GIqQKKTd18-k7Apz6ReHJpWuzI,2497
|
|
285
285
|
cartography/intel/kubernetes/pods.py,sha256=7RqqqDC1V3UJJDXg1XyCI-LhkhIpl09TytBPL1EAOUE,5420
|
|
286
|
-
cartography/intel/kubernetes/rbac.py,sha256=
|
|
286
|
+
cartography/intel/kubernetes/rbac.py,sha256=WRNH_KfwRFKVX1tP6gspYHw0AJzbZe-BGj_2oFjWZqo,18801
|
|
287
287
|
cartography/intel/kubernetes/secrets.py,sha256=sGqyep28-WD0EhbMKY5iWqfRJt0SrLBkyvf5vxr7pjE,3256
|
|
288
288
|
cartography/intel/kubernetes/services.py,sha256=iFWVWBE0W7Vs6j09rd042Jxv4YIcqrQDZZMHHMRNhnQ,4927
|
|
289
289
|
cartography/intel/kubernetes/util.py,sha256=Y8uUz9VEdwIcOwCOyKfVasrEmJ-sIuYk0M5yIb05gsM,5381
|
|
@@ -377,6 +377,8 @@ cartography/models/aws/apigateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
377
377
|
cartography/models/aws/apigateway/apigateway.py,sha256=qwb-NQzw47qu3zH6SdGicrDfClYn19wZFYASaF_6GWo,2312
|
|
378
378
|
cartography/models/aws/apigateway/apigatewaycertificate.py,sha256=vFKip_EeOws3Ke-77xI6eyUMDJK2ZgB0XWHytIuesKA,3019
|
|
379
379
|
cartography/models/aws/apigateway/apigatewaydeployment.py,sha256=msxbdHbTb6Upp14f6JjuP6RHe2-TFgA-Ru5wVLnxyFY,2980
|
|
380
|
+
cartography/models/aws/apigateway/apigatewayintegration.py,sha256=S2ACvZXEzSKi_EdXMVsvsuy6u86A60d1vog1XBx-d5I,3301
|
|
381
|
+
cartography/models/aws/apigateway/apigatewaymethod.py,sha256=4MS4iqx9Z1VqJMIcAiPrfT06NGoZy6FlXc49ETX3WnM,3174
|
|
380
382
|
cartography/models/aws/apigateway/apigatewayresource.py,sha256=iyri4znJo1pgAAe4xBs-eoE5dHK8fEsg6-5OusdvwE0,2856
|
|
381
383
|
cartography/models/aws/apigateway/apigatewaystage.py,sha256=d3m82TH4ggC--0HdE3SG7n-Uwm5Gu9eZMRT23h7a2as,3179
|
|
382
384
|
cartography/models/aws/cloudtrail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -426,6 +428,7 @@ cartography/models/aws/ec2/subnets.py,sha256=BtlFgf03IaD9XFesv5uzHBCm6xr71LT435m
|
|
|
426
428
|
cartography/models/aws/ec2/volumes.py,sha256=spAi4QjoYjp5G-qNuFJdW4b-oZg7by5g5FEaqJv1mZo,5242
|
|
427
429
|
cartography/models/aws/ec2/vpc.py,sha256=7pJ-FzkoPKxUcdFlBSHbvGr2bQoujeACUS1BRsJD8Kc,2011
|
|
428
430
|
cartography/models/aws/ec2/vpc_cidr.py,sha256=8DMZZKjIbgrUpet-ojQEM-5Nlo81EPUbrdOkYerUPv4,4072
|
|
431
|
+
cartography/models/aws/ec2/vpc_peering.py,sha256=fg4AgK-OqUitjp4Vohwei4XmxyRb-Bur3hQcIZhFo7A,6067
|
|
429
432
|
cartography/models/aws/ecr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
433
|
cartography/models/aws/ecr/image.py,sha256=8atk1Z13BgUOcAq3uIK-sJ9gDxwcmeCIk7x1PW9B4BE,1753
|
|
431
434
|
cartography/models/aws/ecr/repository.py,sha256=goItMJ3XnLSSk8FCMvgCpWCSsleTqdNzUT_Asvw8Yhk,2908
|
|
@@ -499,6 +502,8 @@ cartography/models/aws/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
499
502
|
cartography/models/aws/ssm/instance_information.py,sha256=URlqoum2ZSKrd2BYgqFRwqJxW8mdgzjNhlvzM02v2_4,4149
|
|
500
503
|
cartography/models/aws/ssm/instance_patch.py,sha256=03eHkwLaCXDv5LR9yJXH8DYfUYH6O6uZcGtaI9PV5B0,3158
|
|
501
504
|
cartography/models/aws/ssm/parameters.py,sha256=pKwDhG7yFwshUCQC24SSQw9MjIJ2KE1VIoESw2fASTs,3307
|
|
505
|
+
cartography/models/azure/principal.py,sha256=OAFzIdE1daD6IbNuAvZWLqrvhZ5Eoo1N1o4kxSvj0xk,1727
|
|
506
|
+
cartography/models/azure/tenant.py,sha256=d0KzBXaKuXogd-TGk3wqSyAwotG8ZcidUbgoULUjOEY,644
|
|
502
507
|
cartography/models/bigfix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
508
|
cartography/models/bigfix/bigfix_computer.py,sha256=ep96YTcXXEJEIvHt3KZBYt5LaA4INRu7Awl_uiyWdFE,3552
|
|
504
509
|
cartography/models/bigfix/bigfix_root.py,sha256=MngCXiibyoLrOv3ADTV0iQKX0pYBr-oQAhQvN2o-M1E,598
|
|
@@ -561,17 +566,20 @@ cartography/models/keycloak/role.py,sha256=BK31Auc5vXT3wn1u8845gl7UmiXFiZexKcc4Y
|
|
|
561
566
|
cartography/models/keycloak/scope.py,sha256=tWATUpVONiK0A-Q7fdychT3wgBEafGD-hslJ7Yk4xD0,3181
|
|
562
567
|
cartography/models/keycloak/user.py,sha256=o59mGAENRo1kzdmtDsesPGyXE0JxSrp9pGACBqxyMhQ,2308
|
|
563
568
|
cartography/models/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
564
|
-
cartography/models/kubernetes/clusterrolebindings.py,sha256=
|
|
569
|
+
cartography/models/kubernetes/clusterrolebindings.py,sha256=3VV6b1hKx04YRKnLEDUK7lsuhR5amXD7JMCXpdsYP38,5629
|
|
565
570
|
cartography/models/kubernetes/clusterroles.py,sha256=jZ-EGxmXX_sY_blpbzycHXr5b0cnBtnOr4zTXcub1KA,2189
|
|
566
571
|
cartography/models/kubernetes/clusters.py,sha256=mg1LcSQvd-dHa4dKZeoMZq4M9gh1rI-9fqf8MpHhR6M,1181
|
|
567
572
|
cartography/models/kubernetes/containers.py,sha256=xRys7sm0uI5ZFEd8_6nSZRRLZEysHJow9B0bkWSeJik,4570
|
|
573
|
+
cartography/models/kubernetes/groups.py,sha256=Z8bWLPH6CizY2-R45TbYwPc_HQ4gyaph4iCnGBqBQe8,3966
|
|
568
574
|
cartography/models/kubernetes/namespaces.py,sha256=2RSjIeyPU_-ouG-rbvZhC5c5D-jMuKxjfBt5-UN_VOY,2268
|
|
575
|
+
cartography/models/kubernetes/oidc.py,sha256=bXoVA5kH181_sVxHhbuKkZTCwuwHGMQGYvHU9TS0XDw,2138
|
|
569
576
|
cartography/models/kubernetes/pods.py,sha256=z2FXYomtXLoaqMwq0FqJFOcu1yX_PpbqfE_QW_Tigdg,3370
|
|
570
|
-
cartography/models/kubernetes/rolebindings.py,sha256=
|
|
577
|
+
cartography/models/kubernetes/rolebindings.py,sha256=Sb0fso0XICpKSrxMMbsD6x67rW14pXrLvSWDNsjYGwg,6226
|
|
571
578
|
cartography/models/kubernetes/roles.py,sha256=M07uraf1KRVH1f6ISgSykg7gDFt_V2vIoLGeG20NEqQ,3068
|
|
572
579
|
cartography/models/kubernetes/secrets.py,sha256=D18RvHWB6HQ2iyqXyX2PxGVToJlOf4werCDU7aPs69w,3384
|
|
573
580
|
cartography/models/kubernetes/serviceaccounts.py,sha256=O8-4fr8ax9jFiC1JdSm9KF5a9XIM0eIWKU2OLxW5YS4,3104
|
|
574
581
|
cartography/models/kubernetes/services.py,sha256=OIIYH45HKbAeEQVMMCJXdzemnGWnyfq-mYqk4Te1qE8,4529
|
|
582
|
+
cartography/models/kubernetes/users.py,sha256=zg1K0XxX-z7w35-1R3tneABMcuQcostQpikx0zQh0pg,3919
|
|
575
583
|
cartography/models/lastpass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
576
584
|
cartography/models/lastpass/tenant.py,sha256=qZX0Me1WezBpWpSYhjlVp4N4x3z7p2wmwe0fUNl-s7M,618
|
|
577
585
|
cartography/models/lastpass/user.py,sha256=Uky6fNhjHBD3GhnTijiaBgaKtofY1B7Assgtq-_dk8M,3518
|
|
@@ -621,9 +629,9 @@ cartography/models/trivy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
621
629
|
cartography/models/trivy/findings.py,sha256=SgI_h1aRyR20uAHvuXIZ1T6r4IZJt6SVhxRaF2bTsm0,3085
|
|
622
630
|
cartography/models/trivy/fix.py,sha256=ho9ENVl9HSXqyggyCwR6ilkOBKDxpQ7rGibo_j21NA4,2587
|
|
623
631
|
cartography/models/trivy/package.py,sha256=IwO1RZZ-MFRtNbt8Cq6YFl6fdNJMFmULnJkkK8Q4rL4,2809
|
|
624
|
-
cartography-0.
|
|
625
|
-
cartography-0.
|
|
626
|
-
cartography-0.
|
|
627
|
-
cartography-0.
|
|
628
|
-
cartography-0.
|
|
629
|
-
cartography-0.
|
|
632
|
+
cartography-0.112.0.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
|
|
633
|
+
cartography-0.112.0.dist-info/METADATA,sha256=L97-EzRUSDo6TQ7HQhvv5Igx1DB3ZdnZYljmOvpB3aw,13281
|
|
634
|
+
cartography-0.112.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
635
|
+
cartography-0.112.0.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
|
|
636
|
+
cartography-0.112.0.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
|
|
637
|
+
cartography-0.112.0.dist-info/RECORD,,
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [
|
|
3
|
-
{
|
|
4
|
-
"query": "MATCH (:AWSAccount{id: $AWS_ID})-[:RESOURCE]->(:AWSVpc)<-[:ACCEPTER_VPC]-(n:AWSPeeringConnection) 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]->(:AWSVpc)<-[:REQUESTER_VPC]-(n:AWSPeeringConnection) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
10
|
-
"iterative": true,
|
|
11
|
-
"iterationsize": 100
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"query": "MATCH (n:AWSCidrBlock)<-[:BLOCK_ASSOCIATION]-(:AWSVpc)<-[:RESOURCE]-(:AWSAccount{foreign: true, id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
15
|
-
"iterative": true,
|
|
16
|
-
"iterationsize": 100
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"query": "MATCH (:AWSCidrBlock)<-[r:BLOCK_ASSOCIATION]-(:AWSVpc)<-[:RESOURCE]-(:AWSAccount{foreign: true, id: $AWS_ID}) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
20
|
-
"iterative": true,
|
|
21
|
-
"iterationsize": 100
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"query": "MATCH (n:AWSVpc)<-[:RESOURCE]-(:AWSAccount{foreign: true, id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
25
|
-
"iterative": true,
|
|
26
|
-
"iterationsize": 100
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"query": "MATCH (:AWSVpc)<-[r:RESOURCE]-(:AWSAccount{foreign: true, id: $AWS_ID}) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
30
|
-
"iterative": true,
|
|
31
|
-
"iterationsize": 100
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"query": "MATCH (:AWSVpc)-[r:VPC_PEERING]-(:AWSVpc)<-[:RESOURCE]-(:AWSAccount{foreign: true, id: $AWS_ID}) WHERE r.lastupdated <> $UPDATE_TAG WITH r LIMIT $LIMIT_SIZE DELETE (r)",
|
|
35
|
-
"iterative": true,
|
|
36
|
-
"iterationsize": 100
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"query": "MATCH (n:AWSAccount{foreign: true, id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
40
|
-
"iterative": true,
|
|
41
|
-
"iterationsize": 100
|
|
42
|
-
}
|
|
43
|
-
],
|
|
44
|
-
"name": "cleanup AWS VPC information"
|
|
45
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|