mkpasswd 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/Rakefile +6 -0
- data/bin/console +10 -0
- data/bin/setup +7 -0
- data/exe/mkpasswd +5 -0
- data/lib/mkpasswd.rb +105 -0
- data/lib/mkpasswd/version.rb +3 -0
- data/mkpasswd.gemspec +27 -0
- metadata +130 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1b4e8d9246b2e83e002b00af0f5f90c24aef14b0
|
4
|
+
data.tar.gz: bd7a9e124b5c8f0879ce544231abc8c5cd596bf6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2449fddc42ef5c1249bfa44f9517b542edb3e3a8f7aca2bcdda8b9b0d2d97a182ca48b36405538735e6349bd4269211aad3f1a7f6175c1349a5dfa8afc7fb512
|
7
|
+
data.tar.gz: c5fc630fa562a2a129f92935719e99e5c5e985269a0765ab21b90850536ff26afd521b7423a93a221e50ceb2df7dd82f422722f011cca9b64e937e5eec9f09d7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -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
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright © 2015 Andrey Novikov
|
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,46 @@
|
|
1
|
+
# Mkpasswd
|
2
|
+
|
3
|
+
A gem replacement for `mkpasswd` command on systems where there is no such command.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'mkpasswd'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install mkpasswd
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Use it as usual mkpasswd command.
|
24
|
+
|
25
|
+
Example:
|
26
|
+
|
27
|
+
mkpasswd -m sha-512 -S saltandspecies password
|
28
|
+
|
29
|
+
## Known issues
|
30
|
+
|
31
|
+
Reading password from files currently not implemented. Contributions are welcome!
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec mkpasswd` to use the gem in this directory, ignoring other installed copies of this gem.
|
36
|
+
|
37
|
+
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).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Envek/mkpasswd. 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.
|
42
|
+
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
data/exe/mkpasswd
ADDED
data/lib/mkpasswd.rb
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
require 'mkpasswd/version'
|
2
|
+
require 'unix_crypt'
|
3
|
+
require 'optparse'
|
4
|
+
require 'ostruct'
|
5
|
+
begin
|
6
|
+
require 'io/console'
|
7
|
+
rescue LoadError
|
8
|
+
$no_io_console = true
|
9
|
+
end
|
10
|
+
|
11
|
+
class Mkpasswd
|
12
|
+
attr_accessor :options
|
13
|
+
|
14
|
+
HASHERS = {
|
15
|
+
'sha-512' => UnixCrypt::SHA512,
|
16
|
+
'sha-256' => UnixCrypt::SHA256,
|
17
|
+
'md5' => UnixCrypt::MD5,
|
18
|
+
'des' => UnixCrypt::DES
|
19
|
+
}
|
20
|
+
|
21
|
+
def initialize(args)
|
22
|
+
self.options = OpenStruct.new
|
23
|
+
options.hashmethod = 'des'
|
24
|
+
options.hasher = HASHERS[options.hashmethod]
|
25
|
+
|
26
|
+
OptionParser.new do |opts|
|
27
|
+
opts.banner = "Usage: #{File.basename $0} [options] [PASSWORD [SALT]]"
|
28
|
+
opts.separator 'Encrypts password using the unix-crypt gem with CLI compatible with mkpasswd utility from whois package.'
|
29
|
+
opts.separator ''
|
30
|
+
opts.separator 'Options:'
|
31
|
+
|
32
|
+
opts.on('-m', '--method=METHOD', String, 'Set hash algorithm [sha-512 (default), sha-256, md5, des]') do |hasher|
|
33
|
+
if hasher.to_s == 'help'
|
34
|
+
puts 'Available methods:'
|
35
|
+
puts HASHERS.keys
|
36
|
+
exit
|
37
|
+
end
|
38
|
+
options.hashmethod = hasher.to_s
|
39
|
+
options.hasher = HASHERS[options.hashmethod]
|
40
|
+
raise 'Invalid hash algorithm for -m/--method' if options.hasher.nil?
|
41
|
+
end
|
42
|
+
|
43
|
+
opts.on('-S', '--salt [SALT]', String, 'Provide hash salt') do |salt|
|
44
|
+
raise 'Invalid salt for -S/--salt' if salt.nil?
|
45
|
+
options.salt = salt
|
46
|
+
end
|
47
|
+
|
48
|
+
opts.on('-R', '--rounds [ROUNDS]', Integer, 'Set number of hashing rounds (SHA256/SHA512 only)') do |rounds|
|
49
|
+
raise 'Invalid hashing rounds for -R/--rounds' if rounds.nil? || rounds.to_i <= 0
|
50
|
+
options.rounds = rounds
|
51
|
+
end
|
52
|
+
|
53
|
+
opts.on_tail('-h', '--help', 'Show this message') do
|
54
|
+
puts opts
|
55
|
+
exit
|
56
|
+
end
|
57
|
+
|
58
|
+
opts.on_tail('-V', '--version', 'Show version') do
|
59
|
+
puts Mkpasswd::VERSION
|
60
|
+
exit
|
61
|
+
end
|
62
|
+
end.parse!(ARGV)
|
63
|
+
|
64
|
+
options.password = ARGV.shift
|
65
|
+
if options.password
|
66
|
+
$0 = $0 # this invocation will get rid of the command line arguments from the process list
|
67
|
+
else
|
68
|
+
options.password = ask_password
|
69
|
+
end
|
70
|
+
options.salt = ARGV.shift unless options.salt
|
71
|
+
|
72
|
+
saltsize = options.salt.to_s.bytesize
|
73
|
+
if saltsize > 0 && ( saltsize < 8 || saltsize > 16 )
|
74
|
+
raise "Wrong salt length: #{saltsize} bytes when 8 <= n <= 16 expected."
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def execute!
|
79
|
+
puts options.hasher.build(options.password, options.salt, options.rounds)
|
80
|
+
end
|
81
|
+
|
82
|
+
def ask_noecho(message)
|
83
|
+
$stderr.print message
|
84
|
+
if $no_io_console
|
85
|
+
begin
|
86
|
+
`stty -echo`
|
87
|
+
result = gets
|
88
|
+
ensure
|
89
|
+
`stty echo`
|
90
|
+
end
|
91
|
+
else
|
92
|
+
result = $stdin.noecho(&:gets)
|
93
|
+
end
|
94
|
+
$stderr.puts
|
95
|
+
result
|
96
|
+
end
|
97
|
+
|
98
|
+
def ask_password
|
99
|
+
password = ask_noecho("Enter password: ")
|
100
|
+
twice = ask_noecho("Verify password: ")
|
101
|
+
raise "Passwords don't match" if password != twice
|
102
|
+
password.chomp!
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|
data/mkpasswd.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mkpasswd/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'mkpasswd'
|
8
|
+
spec.version = Mkpasswd::VERSION
|
9
|
+
spec.authors = ['Andrey Novikov']
|
10
|
+
spec.email = ['envek@envek.name']
|
11
|
+
|
12
|
+
spec.summary = %q{Command to generate password hashes, compatible by options with command from GNU/Linux whois package.}
|
13
|
+
spec.homepage = 'https://github.com/Envek/mkpasswd'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = 'exe'
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_dependency 'unix-crypt', '~> 1.3'
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
25
|
+
spec.add_development_dependency 'rspec'
|
26
|
+
spec.add_development_dependency 'pry'
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mkpasswd
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andrey Novikov
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-06-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: unix-crypt
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- envek@envek.name
|
86
|
+
executables:
|
87
|
+
- mkpasswd
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rspec"
|
93
|
+
- ".travis.yml"
|
94
|
+
- CODE_OF_CONDUCT.md
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.md
|
98
|
+
- Rakefile
|
99
|
+
- bin/console
|
100
|
+
- bin/setup
|
101
|
+
- exe/mkpasswd
|
102
|
+
- lib/mkpasswd.rb
|
103
|
+
- lib/mkpasswd/version.rb
|
104
|
+
- mkpasswd.gemspec
|
105
|
+
homepage: https://github.com/Envek/mkpasswd
|
106
|
+
licenses:
|
107
|
+
- MIT
|
108
|
+
metadata: {}
|
109
|
+
post_install_message:
|
110
|
+
rdoc_options: []
|
111
|
+
require_paths:
|
112
|
+
- lib
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
requirements: []
|
124
|
+
rubyforge_project:
|
125
|
+
rubygems_version: 2.4.6
|
126
|
+
signing_key:
|
127
|
+
specification_version: 4
|
128
|
+
summary: Command to generate password hashes, compatible by options with command from
|
129
|
+
GNU/Linux whois package.
|
130
|
+
test_files: []
|