certsweeper 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e908073df54a726545825439ba9c17ffa65fd345
4
+ data.tar.gz: fd46e0bd23595ac14b0bfd7de44cfcdb53d09605
5
+ SHA512:
6
+ metadata.gz: 12770445de536c02864d35cbc0bffd390e384742743a2cc99b667897df965f19e09f77b4a98b82483d85c08d910120719f6c04df33bc837792722fe5e43d0ea5
7
+ data.tar.gz: ede731c95fdc06f47b40d0d9bda4729db486bc1b045d504a8fd6adbc81a1833492ff4ee1eddeb4ffad34dcfb38f97844da650d138915e07a5c2e4c04d9d41d14
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in certsweeper.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 ISOBE Kazuhiko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,70 @@
1
+ # Certsweeper
2
+
3
+ Certsweeper is clean up expired server certificates uploaded to AWS.
4
+
5
+ ## Installation
6
+
7
+ $ gem install certsweeper
8
+
9
+ ## Usage
10
+
11
+ list expired server certificats
12
+
13
+ ```
14
+ $ certsweeper list --profile `your_aws_profile`
15
+ www.example.com-20150708 2015-08-10 06:31:12 UTC
16
+ www.example.com-20150808 2015-09-10 06:31:12 UTC
17
+ www.example.com-20150908 2015-10-10 06:31:12 UTC
18
+ www.example.com-20151008 2015-11-10 06:31:12 UTC
19
+ ```
20
+
21
+ remove expired server certificates
22
+
23
+ ```
24
+ $ certsweeper remove --profile `your_aws_profile` --all
25
+ remove: www.example.com-20150708
26
+ remove: www.example.com-20150808
27
+ remove: www.example.com-20150908
28
+ remove: www.example.com-20151008
29
+ ```
30
+
31
+ remove one's
32
+
33
+ ```
34
+ $ certsweeper remove --profile `your_aws_profile` --certificate-name www.example.com-20150708
35
+ remove: www.example.com-20150708
36
+ ```
37
+
38
+ get help
39
+
40
+ ```
41
+ $ certsweeper help
42
+ Commands:
43
+ certsweeper help [COMMAND] # Describe available commands or one specific command
44
+ certsweeper list # List expired and not assigned server certificates
45
+ certsweeper remove # Remove expired and not assignd server certificates
46
+
47
+ Options:
48
+ p, [--profile=PROFILE] # Load credentials by profile name from shared credentials file.
49
+ k, [--access-key-id=ACCESS_KEY_ID] # AWS access key id.
50
+ s, [--secret-access-key=SECRET_ACCESS_KEY] # AWS secret access key.
51
+ r, [--region=REGION] # AWS region.
52
+ [--shared-credentials-path=SHARED_CREDENTIALS_PATH] # AWS shared credentials path.
53
+ v, [--verbose], [--no-verbose]
54
+ ```
55
+
56
+ ## Development
57
+
58
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec certsweeper` to use the gem in this directory, ignoring other installed copies of this gem.
59
+
60
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
61
+
62
+ ## Contributing
63
+
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/certsweeper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
65
+
66
+
67
+ ## License
68
+
69
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
70
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "certsweeper"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'certsweeper/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "certsweeper"
8
+ spec.version = Certsweeper::VERSION
9
+ spec.authors = ["ISOBE Kazuhiko"]
10
+ spec.email = ["muramasa64@gmail.com"]
11
+
12
+ spec.summary = %q{Sweep expired and not assigned server certificate on AWS}
13
+ spec.description = %q{Sweep expired and not assigned server certificate on AWS}
14
+ spec.homepage = "https://github.com/muramasa64/certsweeper"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+
25
+ spec.add_dependency "thor-aws"
26
+ end
data/exe/certsweeper ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "certsweeper"
4
+
5
+ Certsweeper::CLI.start
@@ -0,0 +1,44 @@
1
+ require 'thor'
2
+ require 'thor/aws'
3
+
4
+ module Certsweeper
5
+ class CLI < Thor
6
+ include Thor::Aws
7
+
8
+ class_option :verbose, type: :boolean, default: false, aliases: [:v]
9
+
10
+ desc :list, "List expired and not assigned server certificates"
11
+ def list
12
+ client.list.each do |cert|
13
+ m = cert.server_certificate_metadata
14
+ puts [
15
+ m.server_certificate_name,
16
+ m.expiration
17
+ ].join("\t")
18
+ end
19
+ end
20
+
21
+ desc :remove, "Remove expired and not assignd server certificates"
22
+ method_option :certificate_name, type: :string
23
+ method_option :all, type: :boolean, default: false
24
+ method_option :dry_run, type: :boolean, default: false
25
+ def remove
26
+ if options[:all]
27
+ result = client.remove_all
28
+ else
29
+ result = client.remove(options[:certificate_name])
30
+ end
31
+
32
+ unless result.empty?
33
+ result.map {|r| puts "remove: #{r}"}
34
+ end
35
+ puts "No remove (dry-run)" if options[:dry_run]
36
+ end
37
+
38
+ private
39
+
40
+ def client
41
+ @client ||= Client.new options, aws_configuration
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,71 @@
1
+ require "aws-sdk"
2
+
3
+ module Certsweeper
4
+ class Client
5
+ attr_reader :logger
6
+
7
+ def initialize(cli_options = {}, aws_configuration = {})
8
+ @cli_options = cli_options
9
+ @logger ||= Logger.new STDOUT
10
+
11
+ aws_configuration[:logger] = Logger.new STDOUT if @cli_options.verbose
12
+
13
+ @iam = Aws::IAM::Resource.new aws_configuration
14
+ @elb = Aws::ElasticLoadBalancing::Client.new aws_configuration
15
+ end
16
+
17
+ def list
18
+ Enumerator.new do |y|
19
+ @iam.server_certificates.each do |cert|
20
+ if expired?(cert) && (not use_by_elb?(cert))
21
+ y << cert
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ def remove_all
28
+ removed_cert_name = []
29
+ list.each do |cert|
30
+ cert.delete unless @cli_options[:dry_run]
31
+ removed_cert_name << cert.server_certificate_metadata.server_certificate_name
32
+ end
33
+ removed_cert_name
34
+ end
35
+
36
+ def remove(cert_name)
37
+ list.each do |cert|
38
+ if cert.server_certificate_metadata.server_certificate_name == cert_name
39
+ cert.delete unless @cli_options[:dry_run]
40
+ return [cert.server_certificate_metadata.server_certificate_name]
41
+ end
42
+ end
43
+ []
44
+ end
45
+
46
+ private
47
+
48
+ def use_by_elb?(cert)
49
+ elbs.each do |elb|
50
+ elb.listener_descriptions.each do |l|
51
+ if l.listener.ssl_certificate_id == cert.server_certificate_metadata.arn
52
+ return true
53
+ end
54
+ end
55
+ end
56
+ false
57
+ end
58
+
59
+ def elbs
60
+ @elbs ||= @elb.describe_load_balancers.load_balancer_descriptions
61
+ end
62
+
63
+ def expired?(cert)
64
+ cert.server_certificate_metadata.expiration < now
65
+ end
66
+
67
+ def now
68
+ @now ||= Time.now
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,3 @@
1
+ module Certsweeper
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,3 @@
1
+ require "certsweeper/version"
2
+ require "certsweeper/cli"
3
+ require "certsweeper/client"
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: certsweeper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ISOBE Kazuhiko
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor-aws
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Sweep expired and not assigned server certificate on AWS
56
+ email:
57
+ - muramasa64@gmail.com
58
+ executables:
59
+ - certsweeper
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - certsweeper.gemspec
73
+ - exe/certsweeper
74
+ - lib/certsweeper.rb
75
+ - lib/certsweeper/cli.rb
76
+ - lib/certsweeper/client.rb
77
+ - lib/certsweeper/version.rb
78
+ homepage: https://github.com/muramasa64/certsweeper
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.4.5
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Sweep expired and not assigned server certificate on AWS
102
+ test_files: []