ruby_hashcat 0.1.2 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_hashcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Rfizzle
7
+ - Coleton Pierson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-28 00:00:00.000000000 Z
11
+ date: 2014-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,62 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rest-client
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.7'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sinatra
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thin
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.6'
83
+ - !ruby/object:Gem::Dependency
84
+ name: sucker_punch
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.1'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.1'
41
97
  - !ruby/object:Gem::Dependency
42
98
  name: rprogram
43
99
  requirement: !ruby/object:Gem::Requirement
@@ -52,9 +108,11 @@ dependencies:
52
108
  - - "~>"
53
109
  - !ruby/object:Gem::Version
54
110
  version: '0.3'
55
- description: Command line wrapper created to launch hash cracking jobs with oclHashcat.
111
+ description: |-
112
+ Hashcat library and API written in ruby to interface with oclHashcat.
113
+ Ability to start and check status of cracking hash files.
56
114
  email:
57
- - rfizzle@protonmail.ch
115
+ - coleton.pierson@gmail.com
58
116
  executables: []
59
117
  extensions: []
60
118
  extra_rdoc_files: []
@@ -65,11 +123,39 @@ files:
65
123
  - README.md
66
124
  - Rakefile
67
125
  - lib/ruby_hashcat.rb
126
+ - lib/ruby_hashcat/api.rb
127
+ - lib/ruby_hashcat/objects/hash.rb
128
+ - lib/ruby_hashcat/objects/init.rb
129
+ - lib/ruby_hashcat/parse.rb
68
130
  - lib/ruby_hashcat/program.rb
131
+ - lib/ruby_hashcat/routes/clean.rb
132
+ - lib/ruby_hashcat/routes/crack.rb
133
+ - lib/ruby_hashcat/routes/init.rb
134
+ - lib/ruby_hashcat/routes/results.rb
135
+ - lib/ruby_hashcat/routes/settings.rb
136
+ - lib/ruby_hashcat/routes/status.rb
69
137
  - lib/ruby_hashcat/task.rb
138
+ - lib/ruby_hashcat/tee.rb
139
+ - lib/ruby_hashcat/tmp/.touch
140
+ - lib/ruby_hashcat/tools.rb
141
+ - lib/ruby_hashcat/validation.rb
70
142
  - lib/ruby_hashcat/version.rb
71
143
  - ruby_hashcat.gemspec
72
- homepage: http://rfizzle.ch
144
+ - test/hashes/md5.txt
145
+ - test/hashes/md5crypt.txt
146
+ - test/hashes/phpass.txt
147
+ - test/rules/InsidePro-PasswordsPro.rule
148
+ - test/rules/best64.rule
149
+ - test/test_api.rb
150
+ - test/test_library.rb
151
+ - test/test_results.rb
152
+ - test/test_status.rb
153
+ - test/test_wrapper.rb
154
+ - test/tmp/automat.txt
155
+ - test/tmp/cracked.pot
156
+ - test/tmp/stdout.txt
157
+ - test/wordlists/wordlist.dict
158
+ homepage: https://github.com/coleton/ruby_hashcat
73
159
  licenses:
74
160
  - MIT
75
161
  metadata: {}
@@ -92,5 +178,19 @@ rubyforge_project:
92
178
  rubygems_version: 2.2.2
93
179
  signing_key:
94
180
  specification_version: 4
95
- summary: Simple command line wrapper for oclHashcat.
96
- test_files: []
181
+ summary: Hashcat Library. Includes a rest API, library, and wrapper for oclHashcat.
182
+ test_files:
183
+ - test/hashes/md5.txt
184
+ - test/hashes/md5crypt.txt
185
+ - test/hashes/phpass.txt
186
+ - test/rules/InsidePro-PasswordsPro.rule
187
+ - test/rules/best64.rule
188
+ - test/test_api.rb
189
+ - test/test_library.rb
190
+ - test/test_results.rb
191
+ - test/test_status.rb
192
+ - test/test_wrapper.rb
193
+ - test/tmp/automat.txt
194
+ - test/tmp/cracked.pot
195
+ - test/tmp/stdout.txt
196
+ - test/wordlists/wordlist.dict