ronin-exploits 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.
- data/COPYING.txt +339 -0
- data/History.txt +18 -0
- data/Manifest.txt +42 -0
- data/README.txt +69 -0
- data/Rakefile +15 -0
- data/TODO.txt +25 -0
- data/lib/ronin/exploits.rb +39 -0
- data/lib/ronin/exploits/binary_exploit.rb +133 -0
- data/lib/ronin/exploits/buffer_overflow.rb +76 -0
- data/lib/ronin/exploits/buffer_overflow_target.rb +46 -0
- data/lib/ronin/exploits/exceptions.rb +25 -0
- data/lib/ronin/exploits/exceptions/exploit_not_built.rb +29 -0
- data/lib/ronin/exploits/exceptions/restricted_char.rb +29 -0
- data/lib/ronin/exploits/exploit.rb +263 -0
- data/lib/ronin/exploits/exploit_author.rb +34 -0
- data/lib/ronin/exploits/exploit_target.rb +48 -0
- data/lib/ronin/exploits/exploitable.rb +77 -0
- data/lib/ronin/exploits/format_string.rb +84 -0
- data/lib/ronin/exploits/format_string_target.rb +43 -0
- data/lib/ronin/exploits/impact.rb +46 -0
- data/lib/ronin/exploits/requirement.rb +46 -0
- data/lib/ronin/exploits/version.rb +29 -0
- data/lib/ronin/exploits/web_exploit.rb +77 -0
- data/lib/ronin/models.rb +38 -0
- data/lib/ronin/payloads.rb +33 -0
- data/lib/ronin/payloads/ability.rb +46 -0
- data/lib/ronin/payloads/binary_payload.rb +40 -0
- data/lib/ronin/payloads/payload.rb +203 -0
- data/lib/ronin/payloads/payload_author.rb +34 -0
- data/lib/ronin/payloads/shellcode.rb +34 -0
- data/lib/ronin/payloads/web_payload.rb +34 -0
- data/lib/ronin/translators/xor.rb +96 -0
- data/lib/ronin/vuln/behavior.rb +92 -0
- data/spec/exploits/exploit_spec.rb +80 -0
- data/spec/exploits/exploitable_spec.rb +21 -0
- data/spec/exploits/web_exploit_spec.rb +29 -0
- data/spec/exploits_spec.rb +9 -0
- data/spec/payloads/payload_spec.rb +60 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/translators/xor_spec.rb +26 -0
- data/spec/vuln/behavior_spec.rb +15 -0
- data/tasks/spec.rb +9 -0
- metadata +119 -0
data/tasks/spec.rb
ADDED
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ronin-exploits
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Postmodern
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-01-08 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ronin
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.1.3
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: hoe
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.8.2
|
34
|
+
version:
|
35
|
+
description: Ronin Exploits is a Ruby library for Ronin that provides exploitation and payload crafting functionality. Ronin is a Ruby platform designed for information security and data exploration tasks. Ronin allows for the rapid development and distribution of code over many of the common Source-Code-Management (SCM) systems.
|
36
|
+
email:
|
37
|
+
- postmodern.mod3@gmail.com
|
38
|
+
executables: []
|
39
|
+
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files:
|
43
|
+
- History.txt
|
44
|
+
- COPYING.txt
|
45
|
+
- Manifest.txt
|
46
|
+
- README.txt
|
47
|
+
- TODO.txt
|
48
|
+
files:
|
49
|
+
- History.txt
|
50
|
+
- COPYING.txt
|
51
|
+
- Manifest.txt
|
52
|
+
- README.txt
|
53
|
+
- Rakefile
|
54
|
+
- TODO.txt
|
55
|
+
- lib/ronin/vuln/behavior.rb
|
56
|
+
- lib/ronin/exploits.rb
|
57
|
+
- lib/ronin/exploits/exceptions.rb
|
58
|
+
- lib/ronin/exploits/exceptions/exploit_not_built.rb
|
59
|
+
- lib/ronin/exploits/exceptions/restricted_char.rb
|
60
|
+
- lib/ronin/exploits/exploitable.rb
|
61
|
+
- lib/ronin/exploits/requirement.rb
|
62
|
+
- lib/ronin/exploits/impact.rb
|
63
|
+
- lib/ronin/exploits/exploit.rb
|
64
|
+
- lib/ronin/exploits/exploit_author.rb
|
65
|
+
- lib/ronin/exploits/exploit_target.rb
|
66
|
+
- lib/ronin/exploits/binary_exploit.rb
|
67
|
+
- lib/ronin/exploits/buffer_overflow.rb
|
68
|
+
- lib/ronin/exploits/buffer_overflow_target.rb
|
69
|
+
- lib/ronin/exploits/format_string.rb
|
70
|
+
- lib/ronin/exploits/format_string_target.rb
|
71
|
+
- lib/ronin/exploits/web_exploit.rb
|
72
|
+
- lib/ronin/exploits/version.rb
|
73
|
+
- lib/ronin/models.rb
|
74
|
+
- lib/ronin/payloads.rb
|
75
|
+
- lib/ronin/payloads/ability.rb
|
76
|
+
- lib/ronin/payloads/payload_author.rb
|
77
|
+
- lib/ronin/payloads/payload.rb
|
78
|
+
- lib/ronin/payloads/binary_payload.rb
|
79
|
+
- lib/ronin/payloads/shellcode.rb
|
80
|
+
- lib/ronin/payloads/web_payload.rb
|
81
|
+
- lib/ronin/translators/xor.rb
|
82
|
+
- tasks/spec.rb
|
83
|
+
- spec/spec_helper.rb
|
84
|
+
- spec/exploits_spec.rb
|
85
|
+
- spec/vuln/behavior_spec.rb
|
86
|
+
- spec/exploits/exploitable_spec.rb
|
87
|
+
- spec/exploits/exploit_spec.rb
|
88
|
+
- spec/exploits/web_exploit_spec.rb
|
89
|
+
- spec/payloads/payload_spec.rb
|
90
|
+
- spec/translators/xor_spec.rb
|
91
|
+
has_rdoc: true
|
92
|
+
homepage: http://ronin.rubyforge.org/exploits/
|
93
|
+
post_install_message:
|
94
|
+
rdoc_options:
|
95
|
+
- --main
|
96
|
+
- README.txt
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: "0"
|
104
|
+
version:
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: "0"
|
110
|
+
version:
|
111
|
+
requirements: []
|
112
|
+
|
113
|
+
rubyforge_project: ronin
|
114
|
+
rubygems_version: 1.3.1
|
115
|
+
signing_key:
|
116
|
+
specification_version: 2
|
117
|
+
summary: Ronin Exploits is a Ruby library for Ronin that provides exploitation and payload crafting functionality
|
118
|
+
test_files: []
|
119
|
+
|