aws_recon 0.3.4 → 0.3.5
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/s3.rb +3 -1
- data/lib/aws_recon/version.rb +1 -1
- metadata +2 -3
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12b30d8e1939333bd6a2f94ba0bfa5a8b9aa381e0330546425158360cda8e099
|
|
4
|
+
data.tar.gz: dea36844f6fc06403b563fd0dc6938d222c0dc8757b7b88c0cdd03e0b5df79e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50fa5ec78c7bbedc8f89321cbd0a679945e2509a2ba8d51c0fd6e95d15a3e7cdf29db051f0b9816d85bf49af0d7375e2f8ada6796b7c9a4ddb3b403ebda4b598
|
|
7
|
+
data.tar.gz: d1d1cb453321a8dcb669839b3e9597af0a11882863c15f9a44c23f6dda77efaa0c302ed3208032c12a12f97b09f9eff0776f4346e579b588ab10c1ba4d2b713e
|
|
@@ -48,6 +48,7 @@ class S3 < Mapper
|
|
|
48
48
|
{ func: 'get_bucket_policy', key: 'policy', field: 'policy' },
|
|
49
49
|
{ func: 'get_bucket_policy_status', key: 'public', field: 'policy_status' },
|
|
50
50
|
{ func: 'get_public_access_block', key: 'public_access_block', field: 'public_access_block_configuration' },
|
|
51
|
+
{ func: 'get_object_lock_configuration', key: 'object_lock_configuration', field: 'object_lock_configuration' },
|
|
51
52
|
{ func: 'get_bucket_tagging', key: 'tagging', field: nil },
|
|
52
53
|
{ func: 'get_bucket_logging', key: 'logging', field: 'logging_enabled' },
|
|
53
54
|
{ func: 'get_bucket_versioning', key: 'versioning', field: nil },
|
|
@@ -66,7 +67,7 @@ class S3 < Mapper
|
|
|
66
67
|
end
|
|
67
68
|
|
|
68
69
|
rescue Aws::S3::Errors::ServiceError => e
|
|
69
|
-
log_error(e.code)
|
|
70
|
+
log_error(bucket.name, op.func, e.code)
|
|
70
71
|
|
|
71
72
|
raise e unless suppressed_errors.include?(e.code) && !@options.quit_on_exception
|
|
72
73
|
end
|
|
@@ -90,6 +91,7 @@ class S3 < Mapper
|
|
|
90
91
|
NoSuchWebsiteConfiguration
|
|
91
92
|
ReplicationConfigurationNotFoundError
|
|
92
93
|
NoSuchPublicAccessBlockConfiguration
|
|
94
|
+
ObjectLockConfigurationNotFoundError
|
|
93
95
|
]
|
|
94
96
|
end
|
|
95
97
|
end
|
data/lib/aws_recon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws_recon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Larsen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-03-
|
|
12
|
+
date: 2021-03-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aws-sdk
|
|
@@ -167,7 +167,6 @@ files:
|
|
|
167
167
|
- ".github/workflows/smoke-test.yml"
|
|
168
168
|
- ".gitignore"
|
|
169
169
|
- ".rubocop.yml"
|
|
170
|
-
- ".travis.yml"
|
|
171
170
|
- Dockerfile
|
|
172
171
|
- Gemfile
|
|
173
172
|
- LICENSE.txt
|