0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Don't blindly trust GitHub hosts
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 12.3.3

Runtime

~> 4.2
~> 1.10.8
~> 0.20
 Project Readme

Knowngithub

“Some people think this is paranoia, but it isn't. Paranoids only think everyone is out to get them. Wizards know it.”

— Terry Pratchett, Sourcery

Have you hit the problem where you're trying to bootstrap new containers or VMs and git will refuse to clone stuff because it doesn't automatically trust GitHub?

This gem answers the scenario where you believe that manually burning the known_hosts into whatever you're making doesn't scale, and blindly trusting any host to provide you with legitimiate code is insufficient.

While the solution is not elegant, and the implementation is fragile, I'm hoping it proves the following point : a diagonal chain of trust is better than blind trust.

The idea behind this gem is that by calling GitHub's web pages and API through https, the answers will be certified through it's CA and cannot be tampered with unbeknownst to us. Thus, one can call GitHub's SSH endpoint, and verify its key fingerprint is valid against a dynamic trustable source of truth to protect against man-in-the-middle attacks on git operations.

This gem will return one or a list of trusted hosts in a format appropriate for .ssh/known_hosts files.

Installation

Add this line to your application's Gemfile:

gem 'knowngithub'

And then execute:

$ bundle

Or install it yourself as:

$ gem install knowngithub

Usage

The main goal of this gem is for use in automation scripts, specifically Chef cookbooks.

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

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.

Honorable mentions

Huge thanks to Brent Smith for the scraping and Nokogiri code.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/avanier/knowngithub.

License

The gem is available as open source under the terms of the MIT License.