brute_force 0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ba9aeaf6b85fcf3ff4d380f806be110c6b9c7137
4
+ data.tar.gz: b069b4e5766acbcbbb4453ca5fe9ec7e76c45a10
5
+ SHA512:
6
+ metadata.gz: e4ddc4dfd4b1040b722613840cfc935391bedd2051929652be6e688366601830a4d5d69c227970d9ed01e7e66ed00c03c446cfb83a25a91dc2e4b5afeb567b57
7
+ data.tar.gz: eb0c35d91b1e8ddcd2feaf656d2a8553143f5268f8dbdf2af9bf98c2210d5690dcac97ca50e73c57050988de7dcb1cbadef5c0d7467e3d7552ae4f28829c67a7
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.4
4
+ before_install: gem install bundler -v 1.11.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in brute_force.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Alexandre Pagliaro
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Pagliaro Alexandre
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,111 @@
1
+ # BruteForce
2
+
3
+ Simple, fast and highly configurable brute force generator for ruby
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'brute_force'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install brute_force
20
+
21
+ ## Usage
22
+
23
+ 1. Require the gem
24
+
25
+ ```ruby
26
+ require 'brute_force'
27
+ ```
28
+
29
+ 2. Create an instance of the generator
30
+
31
+ ```ruby
32
+ #default signature
33
+ BruteForce::Generator.new(letters: BruteForce::ALPHA_NUMERIC, filter: nil, starts_from: '')
34
+
35
+ BruteForce::Generator.new
36
+ BruteForce::Generator.new(letters: BruteForce::LOWERCASE | ['-'])
37
+ BruteForce::Generator.new(filter: /\A.*?B\Z/)
38
+ BruteForce::Generator.new(filter: ->(word){ word.start_with?('B') })
39
+ BruteForce::Generator.new(starts_from: 'aaaaaaaa')
40
+ ```
41
+
42
+ 3. Iterate
43
+
44
+ ```ruby
45
+ word = generator.next
46
+ ```
47
+
48
+ ####Example
49
+
50
+ #####Code
51
+
52
+ ```ruby
53
+ require 'brute_force'
54
+ require 'digest/md5'
55
+ require 'benchmark'
56
+
57
+ BruteForce::Generator.new(letters: BruteForce::LOWER_ALPHA_NUMERIC | BruteForce::SYMBOL, starts_from: 'lolaaaa').tap do |g|
58
+ target_hash = 'c68ab9687ec94f924c6548671d646e1b'
59
+ count = 0
60
+ hr = '-' * 85
61
+ puts Benchmark.measure {
62
+ puts "Status\t | Word\t| Hash\t\t\t\t\t| Number of attempts"
63
+ puts hr
64
+ begin
65
+ count+=1
66
+ attempt = g.next
67
+ attempt_hash = Digest::MD5.hexdigest(attempt)
68
+ puts "Searching | #{attempt}\t| #{attempt_hash}\t| #{count}" if count % 1000000 == 0
69
+ end while attempt_hash != target_hash
70
+ puts hr
71
+ puts "Found\t | #{attempt}\t| #{attempt_hash}\t| #{count}"
72
+ puts hr
73
+ }
74
+ end
75
+ ```
76
+
77
+ #####Output
78
+ ```
79
+ Status | Word | Hash | Number of attempts
80
+ -------------------------------------------------------------------------------------
81
+ Searching | lold4f[ | 043f3b74588a7cd039a73b6590acd0dd | 1000000
82
+ Searching | lolf~l# | 8d7d3e5f5091b433421ae171e89763c0 | 2000000
83
+ Searching | loli^rj | 84c5997b9d3ebc71c7a9010ed161a37c | 3000000
84
+ Searching | loll>x | 40777367a79b9644702a03addf130542 | 4000000
85
+ Searching | lolo."- | e8e72e1eea1f1315bf5f622da7241354 | 5000000
86
+ Searching | lolr((t | 5dddefb07d81393a535da22d6a809ff0 | 6000000
87
+ Searching | lolu".9 | 827e73d722c4631623a1ff8e973d1072 | 7000000
88
+ Searching | lolxw=[ | 1269a5f1e373f6882f4aa9df61ff5153 | 8000000
89
+ Searching | lol q]# | 979dfab06b4c4b0c804bd81736052c4e | 9000000
90
+ Searching | lol#k}j | e30345d498bef4aeaf6a5733d42e199d | 10000000
91
+ -------------------------------------------------------------------------------------
92
+ Found | lol$123 | c68ab9687ec94f924c6548671d646e1b | 10245334
93
+ -------------------------------------------------------------------------------------
94
+ 71.234000 0.000000 71.234000 ( 71.357751)
95
+ ```
96
+
97
+ ## Development
98
+
99
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
100
+
101
+ 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).
102
+
103
+ ## Contributing
104
+
105
+ Bug reports and pull requests are welcome on GitHub at https://github.com/xire28/brute_force.
106
+
107
+
108
+ ## License
109
+
110
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
111
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "brute_force"
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,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # 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 'brute_force/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "brute_force"
8
+ spec.version = BruteForce::VERSION
9
+ spec.authors = ["Pagliaro Alexandre"]
10
+ spec.email = ["pagliaro.alexandre@hotmail.com"]
11
+
12
+ spec.summary = 'Simple brute force generator'
13
+ spec.description = 'Simple, fast and highly configurable brute force generator for ruby'
14
+ spec.homepage = "https://github.com/xire28/brute_force"
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.11"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "minitest", "~> 5.0"
25
+ spec.add_runtime_dependency "radix", "~> 2.2"
26
+ end
@@ -0,0 +1,43 @@
1
+ require 'brute_force/version'
2
+ require 'radix'
3
+
4
+ module BruteForce
5
+ EMPTY = ["\0"]
6
+ LOWERCASE = EMPTY | [*'a'..'z']
7
+ UPPERCASE = EMPTY | [*'A'..'Z']
8
+ NUMERIC = EMPTY | [*'0'..'9']
9
+ SYMBOL = EMPTY | [*' '..'/', *':'..'@', *'['..'`', *'{'..'~']
10
+ UNICODE = EMPTY | [*"\u007B".."\u00BF", *"\u02B0".."\u037F", *"\u2000".."\u2BFF"]
11
+
12
+ LOWER_ALPHA_NUMERIC = NUMERIC | LOWERCASE
13
+ UPPER_ALPHA_NUMERIC = NUMERIC | UPPERCASE
14
+ ALPHA_NUMERIC = NUMERIC | LOWERCASE | UPPERCASE
15
+ ALL = ALPHA_NUMERIC | SYMBOL | UNICODE
16
+
17
+ class Generator
18
+ def initialize(letters: ALPHA_NUMERIC, filter: nil, starts_from: '')
19
+ self.letters = letters
20
+ self.filter = filter
21
+ self.counter = word_to_number(starts_from)
22
+ end
23
+
24
+ def next
25
+ begin
26
+ word = number_to_word(self.counter)
27
+ self.counter+=1
28
+ end while !filter.nil? && (filter.is_a?(Regexp)? !filter.match(word) : !filter.call(word))
29
+ word
30
+ end
31
+
32
+ protected
33
+ attr_accessor :letters, :filter, :counter
34
+
35
+ def word_to_number(word)
36
+ word.split('').map{|code| letters.find_index(code)}.b(letters.length).to_i
37
+ end
38
+
39
+ def number_to_word(number)
40
+ number.b(letters.length).to_a(letters).join
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,3 @@
1
+ module BruteForce
2
+ VERSION = '0.1.0'
3
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: brute_force
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Pagliaro Alexandre
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-02-22 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.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
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: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: radix
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.2'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.2'
69
+ description: Simple, fast and highly configurable brute force generator for ruby
70
+ email:
71
+ - pagliaro.alexandre@hotmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".travis.yml"
78
+ - Gemfile
79
+ - LICENSE
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/console
84
+ - bin/setup
85
+ - brute_force.gemspec
86
+ - lib/brute_force.rb
87
+ - lib/brute_force/version.rb
88
+ homepage: https://github.com/xire28/brute_force
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.4.5.1
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: Simple brute force generator
112
+ test_files: []