violent_ruby 1.0.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 +7 -0
 - data/.gitignore +12 -0
 - data/.rspec +2 -0
 - data/.travis.yml +5 -0
 - data/CODE_OF_CONDUCT.md +74 -0
 - data/Gemfile +4 -0
 - data/LICENSE.txt +21 -0
 - data/README.md +131 -0
 - data/Rakefile +6 -0
 - data/bin/python_sucks +18 -0
 - data/lib/violent_ruby.rb +11 -0
 - data/lib/violent_ruby/ftp_brute_forcer/README.md +421 -0
 - data/lib/violent_ruby/ftp_brute_forcer/Vagrantfile +30 -0
 - data/lib/violent_ruby/ftp_brute_forcer/ftp_brute_forcer.rb +143 -0
 - data/lib/violent_ruby/ssh_brute_forcer/README.md +131 -0
 - data/lib/violent_ruby/ssh_brute_forcer/Vagrantfile +20 -0
 - data/lib/violent_ruby/ssh_brute_forcer/ssh_brute_forcer.rb +206 -0
 - data/lib/violent_ruby/unix_password_cracker/README.md +38 -0
 - data/lib/violent_ruby/unix_password_cracker/unix_password_cracker.rb +117 -0
 - data/lib/violent_ruby/version.rb +3 -0
 - data/lib/violent_ruby/vulnerability_scanner/README.md +88 -0
 - data/lib/violent_ruby/vulnerability_scanner/vulnerability_scanner.rb +275 -0
 - data/resources/dictionary.txt +7 -0
 - data/resources/etc_passwd_file +2 -0
 - data/resources/ftp_ips.txt +1 -0
 - data/resources/ftp_passwords.txt +5 -0
 - data/resources/ftp_ports.txt +2 -0
 - data/resources/ftp_users.txt +6 -0
 - data/resources/ssh_ips.txt +1 -0
 - data/resources/ssh_passwords.txt +3 -0
 - data/resources/ssh_ports.txt +2 -0
 - data/resources/ssh_users.txt +4 -0
 - data/violent_ruby.gemspec +28 -0
 - metadata +148 -0
 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            192.168.33.10
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            192.168.33.10
         
     | 
| 
         @@ -0,0 +1,28 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # coding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            lib = File.expand_path('../lib', __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'violent_ruby/version'
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |spec|
         
     | 
| 
      
 7 
     | 
    
         
            +
              spec.name          = "violent_ruby"
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.version       = ViolentRuby::VERSION
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.authors       = ["Kent Gruber"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.email         = ["kgruber1@emich.edu"]
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              spec.summary       = %q{Collection of information security tools written in Ruby.}
         
     | 
| 
      
 13 
     | 
    
         
            +
              spec.description   = %q{Violent Ruby is a collection of tools for Hackers, Forensic Analysts, Penetration Testers and Security Engineers.}
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.homepage      = "https://github.com/picatz/Violent-Ruby"
         
     | 
| 
      
 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        = "bin"
         
     | 
| 
      
 19 
     | 
    
         
            +
              spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
         
     | 
| 
      
 20 
     | 
    
         
            +
              spec.require_paths = ["lib"]
         
     | 
| 
      
 21 
     | 
    
         
            +
              
         
     | 
| 
      
 22 
     | 
    
         
            +
              spec.add_dependency 'net-ssh', '~>4.1.0'
         
     | 
| 
      
 23 
     | 
    
         
            +
              spec.add_dependency 'socketry', '~>0.5.1'
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              spec.add_development_dependency "bundler", "~> 1.14"
         
     | 
| 
      
 26 
     | 
    
         
            +
              spec.add_development_dependency "rake", "~> 10.0"
         
     | 
| 
      
 27 
     | 
    
         
            +
              spec.add_development_dependency "rspec", "~> 3.0"
         
     | 
| 
      
 28 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,148 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: violent_ruby
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Kent Gruber
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2017-04-08 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: net-ssh
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 4.1.0
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: 4.1.0
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: socketry
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 0.5.1
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: 0.5.1
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '1.14'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '1.14'
         
     | 
| 
      
 55 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 56 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 57 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 62 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 63 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 64 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 72 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 73 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 74 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 75 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 76 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 77 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 78 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 79 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 80 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 83 
     | 
    
         
            +
            description: Violent Ruby is a collection of tools for Hackers, Forensic Analysts,
         
     | 
| 
      
 84 
     | 
    
         
            +
              Penetration Testers and Security Engineers.
         
     | 
| 
      
 85 
     | 
    
         
            +
            email:
         
     | 
| 
      
 86 
     | 
    
         
            +
            - kgruber1@emich.edu
         
     | 
| 
      
 87 
     | 
    
         
            +
            executables:
         
     | 
| 
      
 88 
     | 
    
         
            +
            - python_sucks
         
     | 
| 
      
 89 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 90 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 91 
     | 
    
         
            +
            files:
         
     | 
| 
      
 92 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 93 
     | 
    
         
            +
            - ".rspec"
         
     | 
| 
      
 94 
     | 
    
         
            +
            - ".travis.yml"
         
     | 
| 
      
 95 
     | 
    
         
            +
            - CODE_OF_CONDUCT.md
         
     | 
| 
      
 96 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 97 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 98 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 99 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 100 
     | 
    
         
            +
            - bin/python_sucks
         
     | 
| 
      
 101 
     | 
    
         
            +
            - lib/violent_ruby.rb
         
     | 
| 
      
 102 
     | 
    
         
            +
            - lib/violent_ruby/ftp_brute_forcer/README.md
         
     | 
| 
      
 103 
     | 
    
         
            +
            - lib/violent_ruby/ftp_brute_forcer/Vagrantfile
         
     | 
| 
      
 104 
     | 
    
         
            +
            - lib/violent_ruby/ftp_brute_forcer/ftp_brute_forcer.rb
         
     | 
| 
      
 105 
     | 
    
         
            +
            - lib/violent_ruby/ssh_brute_forcer/README.md
         
     | 
| 
      
 106 
     | 
    
         
            +
            - lib/violent_ruby/ssh_brute_forcer/Vagrantfile
         
     | 
| 
      
 107 
     | 
    
         
            +
            - lib/violent_ruby/ssh_brute_forcer/ssh_brute_forcer.rb
         
     | 
| 
      
 108 
     | 
    
         
            +
            - lib/violent_ruby/unix_password_cracker/README.md
         
     | 
| 
      
 109 
     | 
    
         
            +
            - lib/violent_ruby/unix_password_cracker/unix_password_cracker.rb
         
     | 
| 
      
 110 
     | 
    
         
            +
            - lib/violent_ruby/version.rb
         
     | 
| 
      
 111 
     | 
    
         
            +
            - lib/violent_ruby/vulnerability_scanner/README.md
         
     | 
| 
      
 112 
     | 
    
         
            +
            - lib/violent_ruby/vulnerability_scanner/vulnerability_scanner.rb
         
     | 
| 
      
 113 
     | 
    
         
            +
            - resources/dictionary.txt
         
     | 
| 
      
 114 
     | 
    
         
            +
            - resources/etc_passwd_file
         
     | 
| 
      
 115 
     | 
    
         
            +
            - resources/ftp_ips.txt
         
     | 
| 
      
 116 
     | 
    
         
            +
            - resources/ftp_passwords.txt
         
     | 
| 
      
 117 
     | 
    
         
            +
            - resources/ftp_ports.txt
         
     | 
| 
      
 118 
     | 
    
         
            +
            - resources/ftp_users.txt
         
     | 
| 
      
 119 
     | 
    
         
            +
            - resources/ssh_ips.txt
         
     | 
| 
      
 120 
     | 
    
         
            +
            - resources/ssh_passwords.txt
         
     | 
| 
      
 121 
     | 
    
         
            +
            - resources/ssh_ports.txt
         
     | 
| 
      
 122 
     | 
    
         
            +
            - resources/ssh_users.txt
         
     | 
| 
      
 123 
     | 
    
         
            +
            - violent_ruby.gemspec
         
     | 
| 
      
 124 
     | 
    
         
            +
            homepage: https://github.com/picatz/Violent-Ruby
         
     | 
| 
      
 125 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 126 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 127 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 128 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 129 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 130 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 131 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 132 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 133 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 134 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 135 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 136 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 137 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 138 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 139 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 140 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 141 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 142 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 143 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 144 
     | 
    
         
            +
            rubygems_version: 2.6.8
         
     | 
| 
      
 145 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 146 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 147 
     | 
    
         
            +
            summary: Collection of information security tools written in Ruby.
         
     | 
| 
      
 148 
     | 
    
         
            +
            test_files: []
         
     |