ronin 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +39 -0
- data/Manifest.txt +46 -34
- data/README.txt +81 -20
- data/Rakefile +6 -4
- data/TODO.txt +1 -5
- data/bin/ronin +2 -2
- data/lib/ronin.rb +3 -3
- data/lib/ronin/arch.rb +5 -3
- data/lib/ronin/author.rb +2 -1
- data/lib/ronin/cache/cache.rb +78 -0
- data/lib/ronin/cache/extension.rb +6 -6
- data/lib/ronin/cache/extension_cache.rb +3 -21
- data/lib/ronin/{parameters/instance_param.rb → cache/maintainer.rb} +22 -17
- data/lib/ronin/cache/overlay.rb +74 -23
- data/lib/ronin/cache/overlay_cache.rb +3 -21
- data/lib/ronin/chars/char_set.rb +114 -31
- data/lib/ronin/chars/chars.rb +20 -10
- data/lib/ronin/{parameters/param.rb → code/emittable.rb} +29 -11
- data/lib/ronin/code/symbol_table.rb +13 -0
- data/lib/ronin/{parameters/class_param.rb → code/token.rb} +37 -10
- data/lib/ronin/config.rb +33 -0
- data/lib/ronin/context.rb +32 -29
- data/lib/ronin/database.rb +1 -2
- data/lib/ronin/extensions.rb +0 -1
- data/lib/ronin/extensions/string.rb +41 -0
- data/lib/ronin/extensions/uri/query_params.rb +8 -0
- data/lib/ronin/formatting/extensions/binary/string.rb +10 -0
- data/lib/ronin/{program.rb → hexdump.rb} +2 -2
- data/lib/ronin/{parameters/exceptions/missing_param.rb → hexdump/extensions.rb} +2 -6
- data/lib/ronin/{extensions/kernel.rb → hexdump/extensions/file.rb} +8 -6
- data/lib/ronin/{persistence.rb → hexdump/extensions/kernel.rb} +7 -6
- data/lib/ronin/hexdump/hexdump.rb +76 -0
- data/lib/ronin/license.rb +5 -3
- data/lib/ronin/model.rb +4 -2
- data/lib/ronin/models.rb +8 -2
- data/lib/ronin/object_context.rb +89 -62
- data/lib/ronin/rpc/console.rb +6 -4
- data/lib/ronin/rpc/shell.rb +4 -4
- data/lib/ronin/sessions/http.rb +144 -0
- data/lib/ronin/sessions/session.rb +2 -1
- data/lib/ronin/sessions/telnet.rb +3 -1
- data/lib/ronin/sessions/udp.rb +1 -1
- data/lib/ronin/sessions/web.rb +7 -2
- data/lib/ronin/translators/translator.rb +75 -0
- data/lib/ronin/ui/command_line.rb +25 -0
- data/lib/ronin/ui/command_line/command.rb +165 -0
- data/lib/ronin/ui/command_line/command_line.rb +117 -0
- data/lib/ronin/{program → ui/command_line}/commands.rb +12 -9
- data/lib/ronin/ui/command_line/commands/add.rb +75 -0
- data/lib/ronin/{program/commands/help.rb → ui/command_line/commands/default.rb} +26 -17
- data/lib/ronin/ui/command_line/commands/extension.rb +85 -0
- data/lib/ronin/ui/command_line/commands/help.rb +70 -0
- data/lib/ronin/{program → ui/command_line}/commands/install.rb +26 -23
- data/lib/ronin/ui/command_line/commands/list.rb +93 -0
- data/lib/ronin/ui/command_line/commands/overlay.rb +187 -0
- data/lib/ronin/{program/commands/uninstall.rb → ui/command_line/commands/remove.rb} +25 -17
- data/lib/ronin/{program/commands/update.rb → ui/command_line/commands/uninstall.rb} +27 -17
- data/lib/ronin/{program/commands/remove.rb → ui/command_line/commands/update.rb} +24 -18
- data/lib/ronin/{program → ui/command_line}/exceptions.rb +1 -1
- data/lib/ronin/{program → ui/command_line}/exceptions/unknown_command.rb +4 -2
- data/lib/ronin/ui/command_line/options.rb +148 -0
- data/lib/ronin/{console.rb → ui/console.rb} +0 -0
- data/lib/ronin/ui/shell.rb +117 -0
- data/lib/ronin/version.rb +1 -1
- data/lib/ronin/web.rb +1 -0
- data/lib/ronin/web/extensions.rb +1 -0
- data/lib/ronin/web/extensions/hpricot.rb +5 -0
- data/lib/ronin/web/extensions/hpricot/comment.rb +19 -0
- data/lib/ronin/web/extensions/hpricot/container.rb +46 -0
- data/lib/ronin/web/extensions/hpricot/doc.rb +21 -0
- data/lib/ronin/web/extensions/hpricot/elem.rb +25 -0
- data/lib/ronin/web/extensions/hpricot/tag.rb +19 -0
- data/lib/ronin/web/extensions/hpricot/text.rb +19 -0
- data/lib/ronin/web/web.rb +70 -4
- data/spec/arch_spec.rb +1 -1
- data/spec/author_spec.rb +1 -1
- data/spec/chars/char_set_spec.rb +177 -0
- data/spec/code/symbol_table_spec.rb +6 -0
- data/spec/extensions/string_spec.rb +12 -0
- data/spec/formatting/binary_spec.rb +9 -0
- data/spec/license_spec.rb +1 -1
- data/spec/object_context/object_context_spec.rb +29 -0
- data/spec/platform_spec.rb +1 -1
- data/spec/product_spec.rb +1 -1
- data/spec/ronin_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -2
- data/spec/target_spec.rb +1 -1
- data/spec/translators/translator_spec.rb +63 -0
- data/spec/web/extensions/hpricot_spec.rb +62 -0
- data/static/extension.rb.erb +16 -0
- data/static/overlay.xsl +103 -0
- data/tasks/spec.rb +2 -0
- metadata +72 -42
- data/FAQ.txt +0 -103
- data/lib/ronin/environment.rb +0 -39
- data/lib/ronin/objects.rb +0 -27
- data/lib/ronin/parameters.rb +0 -27
- data/lib/ronin/parameters/exceptions.rb +0 -25
- data/lib/ronin/parameters/exceptions/param_not_found.rb +0 -29
- data/lib/ronin/parameters/parameters.rb +0 -286
- data/lib/ronin/program/command.rb +0 -203
- data/lib/ronin/program/commands/add.rb +0 -71
- data/lib/ronin/program/commands/list.rb +0 -79
- data/lib/ronin/program/options.rb +0 -201
- data/lib/ronin/program/program.rb +0 -168
- data/lib/ronin/rpc/interactive.rb +0 -55
- data/lib/ronin/rpc/interactive_console.rb +0 -58
- data/lib/ronin/rpc/interactive_shell.rb +0 -59
- data/lib/ronin/shell.rb +0 -81
- data/spec/parameters/parameters_spec.rb +0 -109
data/History.txt
CHANGED
@@ -1,3 +1,42 @@
|
|
1
|
+
=== 0.1.2 / 2008-12-10
|
2
|
+
|
3
|
+
* Require do_sqlite3 >= 0.9.9, since version 0.9.8 was totally broken.
|
4
|
+
* Require reverse-require >= 0.2.0, for improved performance.
|
5
|
+
* Require Spidr >= 0.1.3.
|
6
|
+
* Moved Ronin::Parameters into the parameters 0.1.0 RubyGem.
|
7
|
+
* Added a Hexdump module:
|
8
|
+
* Provides Hexdump.dump and Kernel#hexdump, which can hexdump any object
|
9
|
+
that supports the #each_byte method.
|
10
|
+
* Refactored Chars::CharSet:
|
11
|
+
* Now inherites the SortedSet class.
|
12
|
+
* Stores chars as bytes.
|
13
|
+
* Added a Chars::CharSet#=~ operator, for determining if a String exists
|
14
|
+
in the language over the alphabet represented by the character set.
|
15
|
+
* Added a Chars::CharSet#inspect method which prints C-like characters.
|
16
|
+
* Added a String#inspect method which prints C-like strings.
|
17
|
+
* Added a String#xor method (it might come in handy).
|
18
|
+
* Renamed Encoders::Encoder to Translators::Translator.
|
19
|
+
* Added URI::QueryParams#each_query_param.
|
20
|
+
* Added extensions to Hpricot, for comparing two Hpricot Element trees.
|
21
|
+
* Added the Web.spider_agent, Web.spider_host and Web.spider_site methods.
|
22
|
+
* Added Code::SymbolTable#symbols.
|
23
|
+
* Added a basic Code::Emittable module and a Code::Token class.
|
24
|
+
* Renamed ObjectContext.object_contextify to ObjectContext.objectify.
|
25
|
+
* Merged the Environment module into the Config module.
|
26
|
+
* Refactored the Shell class.
|
27
|
+
* Refactored the Runner::Program module.
|
28
|
+
* Created the UI namespace, to contain all things User Interfacing:
|
29
|
+
* Moved Console and Shell into the UI namespace.
|
30
|
+
* Renamed Runner::Program to UI::CommandLine.
|
31
|
+
* Added a Cache::Overlay::Maintainer class to define maintainers of an
|
32
|
+
Overlay and their contact information.
|
33
|
+
* Refactored the parsing of Overlay XML files.
|
34
|
+
* Added the sub-commands 'overlay' and 'extension' for generating skeleton
|
35
|
+
Overlays and Extensions.
|
36
|
+
* Added a XSL file for generating pretty HTML from Overlay XML files.
|
37
|
+
* Added even more specs.
|
38
|
+
* More typo and documentation fixes.
|
39
|
+
|
1
40
|
=== 0.1.1 / 2008-10-26
|
2
41
|
|
3
42
|
* Depend on the newly renamed reverse-require (>= 0.1.2) gem.
|
data/Manifest.txt
CHANGED
@@ -2,13 +2,11 @@ History.txt
|
|
2
2
|
COPYING.txt
|
3
3
|
Manifest.txt
|
4
4
|
README.txt
|
5
|
-
FAQ.txt
|
6
5
|
TODO.txt
|
7
6
|
Rakefile
|
8
7
|
bin/ronin
|
9
8
|
lib/ronin.rb
|
10
9
|
lib/ronin/config.rb
|
11
|
-
lib/ronin/environment.rb
|
12
10
|
lib/ronin/exceptions/invalid_database_config.rb
|
13
11
|
lib/ronin/exceptions/unknown_context.rb
|
14
12
|
lib/ronin/exceptions/context_not_found.rb
|
@@ -22,15 +20,6 @@ lib/ronin/extensions/uri.rb
|
|
22
20
|
lib/ronin/extensions/uri/query_params.rb
|
23
21
|
lib/ronin/extensions/uri/http.rb
|
24
22
|
lib/ronin/extensions/string.rb
|
25
|
-
lib/ronin/extensions/kernel.rb
|
26
|
-
lib/ronin/parameters.rb
|
27
|
-
lib/ronin/parameters/exceptions.rb
|
28
|
-
lib/ronin/parameters/exceptions/missing_param.rb
|
29
|
-
lib/ronin/parameters/exceptions/param_not_found.rb
|
30
|
-
lib/ronin/parameters/class_param.rb
|
31
|
-
lib/ronin/parameters/instance_param.rb
|
32
|
-
lib/ronin/parameters/param.rb
|
33
|
-
lib/ronin/parameters/parameters.rb
|
34
23
|
lib/ronin/formatting.rb
|
35
24
|
lib/ronin/formatting/digest.rb
|
36
25
|
lib/ronin/formatting/binary.rb
|
@@ -49,9 +38,15 @@ lib/ronin/formatting/extensions/html.rb
|
|
49
38
|
lib/ronin/formatting/extensions/html/string.rb
|
50
39
|
lib/ronin/formatting/extensions/http.rb
|
51
40
|
lib/ronin/formatting/extensions/http/string.rb
|
41
|
+
lib/ronin/hexdump.rb
|
42
|
+
lib/ronin/hexdump/hexdump.rb
|
43
|
+
lib/ronin/hexdump/extensions.rb
|
44
|
+
lib/ronin/hexdump/extensions/file.rb
|
45
|
+
lib/ronin/hexdump/extensions/kernel.rb
|
52
46
|
lib/ronin/chars.rb
|
53
47
|
lib/ronin/chars/char_set.rb
|
54
48
|
lib/ronin/chars/chars.rb
|
49
|
+
lib/ronin/translators/translator.rb
|
55
50
|
lib/ronin/path.rb
|
56
51
|
lib/ronin/network.rb
|
57
52
|
lib/ronin/network/extensions.rb
|
@@ -83,6 +78,9 @@ lib/ronin/network/telnet.rb
|
|
83
78
|
lib/ronin/network/http.rb
|
84
79
|
lib/ronin/network/http/exceptions.rb
|
85
80
|
lib/ronin/network/http/exceptions/unknown_request.rb
|
81
|
+
lib/ronin/code/emittable.rb
|
82
|
+
lib/ronin/code/token.rb
|
83
|
+
lib/ronin/code/reference.rb
|
86
84
|
lib/ronin/code/reference.rb
|
87
85
|
lib/ronin/code/symbol_table.rb
|
88
86
|
lib/ronin/rpc.rb
|
@@ -95,10 +93,15 @@ lib/ronin/rpc/client.rb
|
|
95
93
|
lib/ronin/rpc/service.rb
|
96
94
|
lib/ronin/rpc/console.rb
|
97
95
|
lib/ronin/rpc/shell.rb
|
98
|
-
lib/ronin/rpc/interactive.rb
|
99
|
-
lib/ronin/rpc/interactive_console.rb
|
100
|
-
lib/ronin/rpc/interactive_shell.rb
|
101
96
|
lib/ronin/web.rb
|
97
|
+
lib/ronin/web/extensions.rb
|
98
|
+
lib/ronin/web/extensions/hpricot.rb
|
99
|
+
lib/ronin/web/extensions/hpricot/tag.rb
|
100
|
+
lib/ronin/web/extensions/hpricot/text.rb
|
101
|
+
lib/ronin/web/extensions/hpricot/comment.rb
|
102
|
+
lib/ronin/web/extensions/hpricot/elem.rb
|
103
|
+
lib/ronin/web/extensions/hpricot/container.rb
|
104
|
+
lib/ronin/web/extensions/hpricot/doc.rb
|
102
105
|
lib/ronin/web/web.rb
|
103
106
|
lib/ronin/sessions.rb
|
104
107
|
lib/ronin/sessions/session.rb
|
@@ -109,10 +112,10 @@ lib/ronin/sessions/esmtp.rb
|
|
109
112
|
lib/ronin/sessions/pop3.rb
|
110
113
|
lib/ronin/sessions/imap.rb
|
111
114
|
lib/ronin/sessions/telnet.rb
|
115
|
+
lib/ronin/sessions/http.rb
|
112
116
|
lib/ronin/sessions/web.rb
|
113
117
|
lib/ronin/database.rb
|
114
118
|
lib/ronin/model.rb
|
115
|
-
lib/ronin/models.rb
|
116
119
|
lib/ronin/author.rb
|
117
120
|
lib/ronin/license.rb
|
118
121
|
lib/ronin/arch.rb
|
@@ -122,35 +125,39 @@ lib/ronin/product.rb
|
|
122
125
|
lib/ronin/pending_context.rb
|
123
126
|
lib/ronin/context.rb
|
124
127
|
lib/ronin/object_context.rb
|
125
|
-
lib/ronin/
|
126
|
-
lib/ronin/persistence.rb
|
128
|
+
lib/ronin/models.rb
|
127
129
|
lib/ronin/cache.rb
|
128
130
|
lib/ronin/cache/exceptions.rb
|
129
131
|
lib/ronin/cache/exceptions/extension_not_found.rb
|
130
132
|
lib/ronin/cache/exceptions/overlay_cached.rb
|
131
133
|
lib/ronin/cache/exceptions/overlay_not_found.rb
|
132
134
|
lib/ronin/cache/overlay_cache.rb
|
135
|
+
lib/ronin/cache/maintainer.rb
|
133
136
|
lib/ronin/cache/overlay.rb
|
134
137
|
lib/ronin/cache/config.rb
|
135
138
|
lib/ronin/cache/extension_cache.rb
|
136
139
|
lib/ronin/cache/extension.rb
|
140
|
+
lib/ronin/cache/cache.rb
|
137
141
|
lib/ronin/cache/ronin.rb
|
138
|
-
lib/ronin/console.rb
|
139
|
-
lib/ronin/shell.rb
|
140
|
-
lib/ronin/
|
141
|
-
lib/ronin/
|
142
|
-
lib/ronin/
|
143
|
-
lib/ronin/
|
144
|
-
lib/ronin/
|
145
|
-
lib/ronin/
|
146
|
-
lib/ronin/
|
147
|
-
lib/ronin/
|
148
|
-
lib/ronin/
|
149
|
-
lib/ronin/
|
150
|
-
lib/ronin/
|
151
|
-
lib/ronin/
|
152
|
-
lib/ronin/
|
153
|
-
lib/ronin/
|
142
|
+
lib/ronin/ui/console.rb
|
143
|
+
lib/ronin/ui/shell.rb
|
144
|
+
lib/ronin/ui/command_line.rb
|
145
|
+
lib/ronin/ui/command_line/exceptions.rb
|
146
|
+
lib/ronin/ui/command_line/exceptions/unknown_command.rb
|
147
|
+
lib/ronin/ui/command_line/command.rb
|
148
|
+
lib/ronin/ui/command_line/options.rb
|
149
|
+
lib/ronin/ui/command_line/commands.rb
|
150
|
+
lib/ronin/ui/command_line/commands/default.rb
|
151
|
+
lib/ronin/ui/command_line/commands/overlay.rb
|
152
|
+
lib/ronin/ui/command_line/commands/extension.rb
|
153
|
+
lib/ronin/ui/command_line/commands/add.rb
|
154
|
+
lib/ronin/ui/command_line/commands/install.rb
|
155
|
+
lib/ronin/ui/command_line/commands/list.rb
|
156
|
+
lib/ronin/ui/command_line/commands/update.rb
|
157
|
+
lib/ronin/ui/command_line/commands/remove.rb
|
158
|
+
lib/ronin/ui/command_line/commands/uninstall.rb
|
159
|
+
lib/ronin/ui/command_line/commands/help.rb
|
160
|
+
lib/ronin/ui/command_line/command_line.rb
|
154
161
|
lib/ronin/ronin.rb
|
155
162
|
lib/ronin/version.rb
|
156
163
|
tasks/spec.rb
|
@@ -158,12 +165,15 @@ spec/helpers.rb
|
|
158
165
|
spec/spec_helper.rb
|
159
166
|
spec/arch_spec.rb
|
160
167
|
spec/author_spec.rb
|
168
|
+
spec/chars/char_set_spec.rb
|
161
169
|
spec/chars/chars_spec.rb
|
170
|
+
spec/translators/translator_spec.rb
|
162
171
|
spec/context/context_spec.rb
|
163
172
|
spec/context/helpers/book_context.rb
|
164
173
|
spec/context/helpers/book_review_context.rb
|
165
174
|
spec/context/helpers/contexts/snow_crash.rb
|
166
175
|
spec/context/helpers/contexts/neuromancer_review.rb
|
176
|
+
spec/object_context/object_context_spec.rb
|
167
177
|
spec/extensions/hash_spec.rb
|
168
178
|
spec/extensions/string_spec.rb
|
169
179
|
spec/extensions/uri/http_spec.rb
|
@@ -175,11 +185,13 @@ spec/formatting/http_spec.rb
|
|
175
185
|
spec/formatting/text_spec.rb
|
176
186
|
spec/code/reference_spec.rb
|
177
187
|
spec/code/symbol_table_spec.rb
|
188
|
+
spec/web/extensions/hpricot_spec.rb
|
178
189
|
spec/license_spec.rb
|
179
190
|
spec/path_spec.rb
|
180
191
|
spec/platform_spec.rb
|
181
192
|
spec/product_spec.rb
|
182
193
|
spec/target_spec.rb
|
183
|
-
spec/parameters/parameters_spec.rb
|
184
194
|
spec/sessions/session_spec.rb
|
185
195
|
spec/ronin_spec.rb
|
196
|
+
static/overlay.xsl
|
197
|
+
static/extension.rb.erb
|
data/README.txt
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
= Ronin
|
2
2
|
|
3
3
|
* http://ronin.rubyforge.org/
|
4
|
-
*
|
4
|
+
* http://github.com/postmodern/ronin
|
5
|
+
* irc.freenode.net ##ronin
|
6
|
+
* Postmodern (postmodern.mod3 at gmail.com)
|
5
7
|
|
6
8
|
== DESCRIPTION:
|
7
9
|
|
@@ -19,9 +21,9 @@ commercial software.
|
|
19
21
|
|
20
22
|
=== Modular
|
21
23
|
|
22
|
-
Ronin was not designed as one monolithic
|
23
|
-
of libraries which can be individually installed. This allows
|
24
|
-
and choose what functionality they want in Ronin.
|
24
|
+
Ronin was not designed as one monolithic framework but instead as a
|
25
|
+
collection of libraries which can be individually installed. This allows
|
26
|
+
users to pick and choose what functionality they want in Ronin.
|
25
27
|
|
26
28
|
=== Decentralized
|
27
29
|
|
@@ -65,16 +67,42 @@ of Ronin.
|
|
65
67
|
* Auto-indentation enabled.
|
66
68
|
* Pretty-Print loaded.
|
67
69
|
|
70
|
+
== REQUIREMENTS:
|
71
|
+
|
72
|
+
* Hpricot
|
73
|
+
* WWW::Mechanize
|
74
|
+
* DataMapper:
|
75
|
+
* dm-core >= 0.9.3
|
76
|
+
* data_objects >= 0.9.3
|
77
|
+
* do_sqlite3 >= 0.9.3
|
78
|
+
* dm-types >= 0.9.3
|
79
|
+
* dm-serializer >= 0.9.3
|
80
|
+
* dm-aggregates >= 0.9.3
|
81
|
+
* reverse-require >= 0.1.2
|
82
|
+
* R'epertoire >= 0.1.2
|
83
|
+
|
84
|
+
== INSTALL:
|
85
|
+
|
86
|
+
$ sudo gem install ronin
|
87
|
+
|
68
88
|
== SYNOPSIS:
|
69
89
|
|
70
|
-
*
|
90
|
+
* Generate an Overlay:
|
71
91
|
|
72
|
-
$ ronin
|
92
|
+
$ ronin overlay path/to/overlay/name/
|
93
|
+
|
94
|
+
* Generate an Extension within an Overlay:
|
95
|
+
|
96
|
+
$ ronin ext path/to/overlay/extension/
|
73
97
|
|
74
98
|
* Install an Overlay:
|
75
99
|
|
76
100
|
$ ronin install svn://example.com/var/svn/overlay
|
77
101
|
|
102
|
+
* List installed Overlays:
|
103
|
+
|
104
|
+
$ ronin ls
|
105
|
+
|
78
106
|
* Update all installed Overlays:
|
79
107
|
|
80
108
|
$ ronin up
|
@@ -91,23 +119,56 @@ of Ronin.
|
|
91
119
|
|
92
120
|
$ ronin
|
93
121
|
|
94
|
-
==
|
122
|
+
== RONIN LIBRARIES:
|
95
123
|
|
96
|
-
|
97
|
-
* WWW::Mechanize
|
98
|
-
* DataMapper:
|
99
|
-
* dm-core >= 0.9.3
|
100
|
-
* data_objects >= 0.9.3
|
101
|
-
* do_sqlite3 >= 0.9.3
|
102
|
-
* dm-types >= 0.9.3
|
103
|
-
* dm-serializer >= 0.9.3
|
104
|
-
* dm-aggregates >= 0.9.3
|
105
|
-
* reverse-require >= 0.1.0
|
106
|
-
* R'epertoire >= 0.1.2
|
124
|
+
=== RONIN ASM
|
107
125
|
|
108
|
-
|
126
|
+
* http://ronin.rubyforge.org/libraries/asm.html
|
127
|
+
* http://github.com/postmodern/ronin-asm
|
109
128
|
|
110
|
-
|
129
|
+
Ronin ASM is a Ruby library for Ronin that provides dynamic Assembly (ASM)
|
130
|
+
generation of programs or shellcode.
|
131
|
+
|
132
|
+
=== RONIN DORKS
|
133
|
+
|
134
|
+
* http://ronin.rubyforge.org/libraries/dorks.html
|
135
|
+
* http://github.com/postmodern/ronin-dorks
|
136
|
+
|
137
|
+
Ronin Dorks is a Ruby library for Ronin that provides support for various
|
138
|
+
Google (tm) Dorks functionality.
|
139
|
+
|
140
|
+
=== RONIN EXPLOITS
|
141
|
+
|
142
|
+
* http://ronin.rubyforge.org/libraries/exploits.html
|
143
|
+
* http://github.com/postmodern/ronin-exploits
|
144
|
+
|
145
|
+
Ronin Exploits is a Ruby library for Ronin that provides exploitation and
|
146
|
+
payload crafting functionality.
|
147
|
+
|
148
|
+
=== RONIN HTML
|
149
|
+
|
150
|
+
* http://ronin.rubyforge.org/libraries/html.html
|
151
|
+
* http://github.com/postmodern/ronin-html
|
152
|
+
|
153
|
+
Ronin HTML is a Ruby library for Ronin that provides support for generating
|
154
|
+
complex HTML/JavaScript or crafting XSS/CSRF attacks.
|
155
|
+
|
156
|
+
=== RONIN SQL
|
157
|
+
|
158
|
+
* http://ronin.rubyforge.org/libraries/sql.html
|
159
|
+
* http://github.com/postmodern/ronin-sql
|
160
|
+
|
161
|
+
Ronin SQL is a Ruby library for Ronin that provids support for SQL related
|
162
|
+
security tasks, such as scanning for and exploiting SQL injections.
|
163
|
+
|
164
|
+
=== RONIN PHP
|
165
|
+
|
166
|
+
* http://ronin.rubyforge.org/libraries/php.html
|
167
|
+
* http://github.com/postmodern/ronin-php
|
168
|
+
|
169
|
+
Ronin PHP is a Ruby library for Ronin that provides support for PHP related
|
170
|
+
security tasks, such as finding and exploiting Local File Inclusion (LFI)
|
171
|
+
and Remote File Inclusion (RFI).
|
111
172
|
|
112
173
|
== LICENSE:
|
113
174
|
|
data/Rakefile
CHANGED
@@ -7,18 +7,20 @@ require './lib/ronin/version.rb'
|
|
7
7
|
|
8
8
|
Hoe.new('ronin', Ronin::VERSION) do |p|
|
9
9
|
p.rubyforge_name = 'ronin'
|
10
|
-
p.developer('Postmodern
|
10
|
+
p.developer('Postmodern','postmodern.mod3@gmail.com')
|
11
11
|
p.remote_rdoc_dir = 'docs/ronin'
|
12
12
|
p.extra_deps = ['hpricot',
|
13
13
|
'mechanize',
|
14
|
+
['spidr', '>=0.1.3'],
|
14
15
|
['dm-core', '>=0.9.3'],
|
15
|
-
['data_objects', '>=0.9.
|
16
|
-
['do_sqlite3', '>=0.9.
|
16
|
+
['data_objects', '>=0.9.9'],
|
17
|
+
['do_sqlite3', '>=0.9.9'],
|
17
18
|
['dm-types', '>=0.9.3'],
|
18
19
|
['dm-serializer', '>=0.9.3'],
|
19
20
|
['dm-aggregates', '>=0.9.3'],
|
20
21
|
['dm-validations', '>=0.9.3'],
|
21
|
-
['
|
22
|
+
['parameters', '>=0.1.0'],
|
23
|
+
['reverse-require', '>=0.2.0'],
|
22
24
|
['repertoire', '>=0.1.2']]
|
23
25
|
end
|
24
26
|
|
data/TODO.txt
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
== TODO
|
2
2
|
|
3
|
-
=== Ronin 0.1.
|
4
|
-
|
5
|
-
* Ensure that an ObjectContext can be loaded from a file and have all of
|
6
|
-
it's properties and associations loaded from the Database.
|
7
|
-
* Create an Overlay Genetor for creating basic Overlays.
|
3
|
+
=== Ronin 0.1.2:
|
8
4
|
|
9
5
|
=== Ronin 0.2.0:
|
10
6
|
|
data/bin/ronin
CHANGED
data/lib/ronin.rb
CHANGED
@@ -22,14 +22,14 @@
|
|
22
22
|
#
|
23
23
|
|
24
24
|
require 'ronin/extensions'
|
25
|
-
require 'ronin/
|
25
|
+
require 'ronin/config'
|
26
26
|
require 'ronin/formatting'
|
27
27
|
require 'ronin/chars'
|
28
28
|
require 'ronin/path'
|
29
29
|
require 'ronin/network'
|
30
30
|
require 'ronin/web'
|
31
|
-
require 'ronin/
|
31
|
+
require 'ronin/models'
|
32
32
|
require 'ronin/ronin'
|
33
33
|
require 'ronin/version'
|
34
34
|
|
35
|
-
Ronin::
|
35
|
+
Ronin::Config.load
|
data/lib/ronin/arch.rb
CHANGED
@@ -66,9 +66,11 @@ module Ronin
|
|
66
66
|
address_length = options[:address_length].to_i
|
67
67
|
|
68
68
|
meta_def(name.to_method_name) do
|
69
|
-
Arch.first_or_create(
|
70
|
-
|
71
|
-
|
69
|
+
Arch.first_or_create(
|
70
|
+
:name => name,
|
71
|
+
:endian => endian,
|
72
|
+
:address_length => address_length
|
73
|
+
)
|
72
74
|
end
|
73
75
|
|
74
76
|
return nil
|