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.
@@ -0,0 +1,7 @@
1
+ password
2
+ dogs
3
+ cats
4
+ chickens
5
+ egg
6
+ text
7
+ tester
@@ -0,0 +1,2 @@
1
+ victim: HX9LLTdc/jiDE: 503:100:Iama Victim:/home/victim:/bin/sh
2
+ root: DFNFxgW7C05fo: 504:100: Markus Hess:/root:/bin/bash
@@ -0,0 +1 @@
1
+ 192.168.33.10
@@ -0,0 +1,5 @@
1
+ vagrant
2
+ ftp
3
+ root
4
+ toor
5
+ picat
@@ -0,0 +1,2 @@
1
+ 21
2
+ 2121
@@ -0,0 +1,6 @@
1
+ anonymous
2
+ ftp
3
+ vagrant
4
+ root
5
+ admin
6
+ picat
@@ -0,0 +1 @@
1
+ 192.168.33.10
@@ -0,0 +1,3 @@
1
+ vagrant
2
+ toor
3
+ picat
@@ -0,0 +1,2 @@
1
+ 22
2
+ 2222
@@ -0,0 +1,4 @@
1
+ vagrant
2
+ root
3
+ admin
4
+ picat
@@ -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: []