-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathppgen.rb
executable file
·115 lines (93 loc) · 3.37 KB
/
ppgen.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env ruby
#
#
ME=File.basename($0, ".rb")
MD=File.dirname(File.expand_path($0))
RP=File.realpath($0)
LD=File.dirname(RP)
require "#{LD}/lib/logger"
require "#{LD}/lib/pp_generator"
require "#{LD}/lib/o_parser"
TMP="/var/tmp/#{ME}/#{ENV['USER']}"
DST="#{TMP}/backup"
LOG="#{TMP}/#{ME}.log"
CFG=File.join(MD, ME+".json")
$log=Logger.set_logger(STDERR, Logger::INFO)
PPGEN_CASE=(ENV['PPGEN_CASE']||0).to_i
PPGEN_NUMBERS=(ENV['PPGEN_NUMBERS']||0).to_i
PPGEN_SPECIAL=(ENV['PPGEN_SPECIAL']||0).to_i
$opts = {
:word_files =>["#{MD}/data/words.txt"],
:logger=> $log,
:pp_length => 4,
:max_word_length => 6,
:num => 20,
:seed => nil,
:random_caps => false,
:random_case => PPGEN_CASE,
:special_char => PPGEN_SPECIAL,
:numbers => PPGEN_NUMBERS,
:space_special => 0,
:space_numbers => 0,
:pp_hint => []
}
$opts = OParser.parse($opts, "#{MD}/data/help.txt") { |opts|
opts.on('-p', '--pplen WORDS', Integer, "Number of words in passphrase, def=#{$opts[:pp_length]}") { |length|
$opts[:pp_length]=length
}
opts.on('-l', '--wordlen CHARS', Integer, "Maximum length of words for passphrase, def=#{$opts[:max_word_length]}") { |chars|
$opts[:max_word_length]=chars
}
opts.on('-n', '--num NUM', Integer, "Number of passphrases to generate, def=#{$opts[:num]}") { |num|
$opts[:num]=num
}
opts.on('-s', '--seed SEED', Integer, "Random number generator seed") { |seed|
$opts[:seed]=seed
}
opts.on('-w', '--words WORDS', Array, "List of word(s) to include in passphrase") { |pp_hint|
$opts[:pp_hint]=pp_hint
}
opts.on('-c', '--random-caps', "") {
$opts[:random_caps]=true
}
opts.on('-C', '--random-case PERCENT', Integer, "Percentage of case switches to include in passphrase, def=#{$opts[:random_case]}%") { |random_case|
raise "Enter percentage as positive integer between 0 and 100" if random_case < 0 || random_case > 100
$opts[:random_case] = random_case
}
opts.on('-S', '--special-char PERCENT', Integer, "Percentage of special characters to include in passphrase, def=#{$opts[:special_char]}%") { |special_char|
raise "Enter percentage as positive integer between 0 and 100" if special_char < 0 || special_char > 100
$opts[:special_char] = special_char
}
opts.on('-T', '--space-special NUM', Integer, "Replace spaces with special characters") { |num|
$opts[:space_special]=num
}
opts.on('-U', '--specials STRING', String, "List of special characters, def [#{Pp_generator.get_specials}]") { |specials|
Pp_generator.set_specials(specials)
}
opts.on('-N', '--numbers PERCENT', Integer, "Percentage of digits to include in passphrase, def=#{$opts[:numbers]}%") { |numbers|
raise "Enter percentage as positive integer between 0 and 100" if numbers < 0 || numbers > 100
$opts[:numbers] = numbers
}
opts.on('-O', '--space-numbers NUM', Integer, "Replace up to num spaces with numbers") { |num|
$opts[:space_numbers]=num
}
opts.on('-f', '--data FILES', Array, "Array of extra word files in addition to #{$opts[:word_files]}") { |word_files|
word_files.each { |word_file|
begin
word_file=File.expand_path(word_file)
word_file=File.realpath(word_file)
$opts[:word_files] << word_file
$opts[:word_files].uniq!
rescue => e
$log.die "Word file #{word_file}: "+e.message
end
}
}
}
begin
ppgen=Pp_generator.new($opts[:word_files], $opts)
ppgen.loop_ppgen($opts[:num])
rescue => e
$log.error e.to_s
e.backtrace.each { |m| puts m }
end