Skip to content

Commit 729eebf

Browse files
authored
Merge pull request #142 from darkbitio/build
Build
2 parents 0c400a5 + 69bec35 commit 729eebf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

aws_recon.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2424
spec.require_paths = ['lib']
2525

26-
spec.add_dependency 'aws-sdk', '~> 3.0'
26+
spec.add_dependency 'aws-sdk', '~> 3.1'
2727
spec.add_dependency 'parallel', '~> 1.20.1'
2828

2929
spec.add_development_dependency 'bundler', '~> 2.2.17'

lib/aws_recon/collectors/s3.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def collect
5353
{ func: 'get_bucket_tagging', key: 'tagging', field: nil },
5454
{ func: 'get_bucket_logging', key: 'logging', field: 'logging_enabled' },
5555
{ func: 'get_bucket_versioning', key: 'versioning', field: nil },
56-
{ func: 'get_bucket_website', key: 'website', field: nil }
56+
{ func: 'get_bucket_website', key: 'website', field: nil },
57+
{ func: 'get_bucket_ownership_controls', key: 'ownership_controls', field: 'ownership_controls' }
5758
]
5859

5960
operations.each do |operation|
@@ -96,6 +97,7 @@ def suppressed_errors
9697
ReplicationConfigurationNotFoundError
9798
NoSuchPublicAccessBlockConfiguration
9899
ObjectLockConfigurationNotFoundError
100+
OwnershipControlsNotFoundError
99101
]
100102
end
101103
end

lib/aws_recon/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module AwsRecon
2-
VERSION = "0.5.20"
2+
VERSION = "0.5.21"
33
end

readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ AWS Recon handles collection from large accounts by taking advantage of automati
3737
- [Pinterest](https://www.pinterest.com/)
3838
- [HackerOne](https://www.hackerone.com/)
3939
- [MuleSoft](https://www.mulesoft.com/)
40+
- [Slack](https://slack.com/)
4041
- [Drata](https://drata.com/)
4142

4243
> ** usage does not imply endorsement

0 commit comments

Comments
 (0)