aws_recon 0.2.14 → 0.2.15
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.
- checksums.yaml +4 -4
- data/lib/aws_recon/collectors/cloudtrail.rb +1 -0
- data/lib/aws_recon/version.rb +1 -1
- data/readme.md +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c474979fa320276fa9605cf6e13fea26096c4cbb115a3287ffc9faae644cbd63
|
4
|
+
data.tar.gz: fad3786ed1a152f2437eafd33481cf4183b8453bcedfe7e2132b8a62ac37f552
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51f4c2a2c33aff53a81bb36b757602080612bd6d304284d9439d4c4fa505a385de2194526056efb07286418fecf9520e965fb780f800a402071a7746d9f093f7
|
7
|
+
data.tar.gz: d45f606a06b3a9044ead0e1b2a7338107fe37a7eb7aeb81562b08783c815520426b96136e2566fe1e44ca5713fa3979ae25de999f2f8b06e8ed22af2d3e56915
|
@@ -21,6 +21,7 @@ class CloudTrail < Mapper
|
|
21
21
|
struct = OpenStruct.new(trail.to_h)
|
22
22
|
struct.tags = client.list_tags({ resource_id_list: [trail.trail_arn] }).resource_tag_list.first.tags_list
|
23
23
|
struct.type = 'cloud_trail'
|
24
|
+
struct.event_selectors = client.get_event_selectors({ trail_name: trail.name }).to_h
|
24
25
|
struct.status = client.get_trail_status({ name: trail.name }).to_h
|
25
26
|
struct.arn = trail.trail_arn
|
26
27
|
|
data/lib/aws_recon/version.rb
CHANGED
data/readme.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-

|
2
2
|
[](https://badge.fury.io/rb/aws_recon)
|
3
3
|
|
4
4
|
# AWS Recon
|
@@ -222,6 +222,7 @@ Current "coverage" by service is listed below. The services without coverage wil
|
|
222
222
|
|
223
223
|
AWS Recon aims to collect all resources and metadata that are relevant in determining the security posture of your AWS account(s). However, it does not actually examine the resources for security posture - that is the job of other tools that take the output of AWS Recon as input.
|
224
224
|
|
225
|
+
- [x] AccessAnalyzer
|
225
226
|
- [x] AdvancedShield
|
226
227
|
- [x] Athena
|
227
228
|
- [x] GuardDuty
|