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
@@ -26,6 +26,12 @@ describe Code::SymbolTable do
|
|
26
26
|
@table.symbol(:two).value.should == {:one => 1, :two => 2}
|
27
27
|
end
|
28
28
|
|
29
|
+
it "should be able to retrieve symbols and actual values" do
|
30
|
+
@table.symbols.each do |name,value|
|
31
|
+
@table.symbol(name).value.should == value
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
29
35
|
it "should be able to set symbols en-mass" do
|
30
36
|
@table.symbols = {:three => 3, :four => 4}
|
31
37
|
|
@@ -94,4 +94,16 @@ describe String do
|
|
94
94
|
one.uncommon_substring(two).should == uncommon
|
95
95
|
end
|
96
96
|
end
|
97
|
+
|
98
|
+
it "should inspect printable strings" do
|
99
|
+
"hello".inspect.should == '"hello"'
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should inspect strings containing control characters" do
|
103
|
+
"hello\n\b\a".inspect.should == '"hello\n\b\a"'
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should inspect strings containing non-printable characters" do
|
107
|
+
"hello\x90\x05\xef".inspect.should == '"hello\x90\x05\xef"'
|
108
|
+
end
|
97
109
|
end
|
@@ -62,4 +62,13 @@ describe "String" do
|
|
62
62
|
it "should provide String#depack" do
|
63
63
|
@packed_integer.respond_to?('depack').should == true
|
64
64
|
end
|
65
|
+
|
66
|
+
it "should provide String#xor" do
|
67
|
+
string = "hello"
|
68
|
+
key = 0x50
|
69
|
+
xor_string = string.xor(key)
|
70
|
+
|
71
|
+
xor_string.should_not == string
|
72
|
+
xor_string.xor(key).should == string
|
73
|
+
end
|
65
74
|
end
|
data/spec/license_spec.rb
CHANGED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'ronin/object_context'
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe ObjectContext do
|
6
|
+
before(:all) do
|
7
|
+
class TestObject
|
8
|
+
|
9
|
+
include ObjectContext
|
10
|
+
|
11
|
+
objectify :test
|
12
|
+
|
13
|
+
property :mesg, String
|
14
|
+
|
15
|
+
parameter :x
|
16
|
+
|
17
|
+
parameter :y
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should create an object with a Hash of attributes and params" do
|
23
|
+
test = TestObject.new(:mesg => 'hello', :x => 3, :y => 9)
|
24
|
+
|
25
|
+
test.mesg.should == 'hello'
|
26
|
+
test.x.should == 3
|
27
|
+
test.y.should == 9
|
28
|
+
end
|
29
|
+
end
|
data/spec/platform_spec.rb
CHANGED
data/spec/product_spec.rb
CHANGED
data/spec/ronin_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/spec/target_spec.rb
CHANGED
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'ronin/translators/translator'
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe Ronin do
|
6
|
+
describe Translators::Translator do
|
7
|
+
it "should create a new Translator object with options" do
|
8
|
+
Translators::Translator.new(:test => 1).should_not be_nil
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should create a new Translator object with options and a block" do
|
12
|
+
Translators::Translator.new(:test => 2) do |translator|
|
13
|
+
translator.should_not be_nil
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should encode data with given options" do
|
18
|
+
data = 'test'
|
19
|
+
|
20
|
+
Translators::Translator.encode(data,:test => 3).should == data
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should encode data with given options and a block" do
|
24
|
+
data = 'test'
|
25
|
+
|
26
|
+
Translators::Translator.encode(data,:test => 4) do |encoded|
|
27
|
+
encoded.should == data
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should provide a default encode method" do
|
32
|
+
data = 'test'
|
33
|
+
translator = Translators::Translator.new
|
34
|
+
|
35
|
+
translator.encode(data).should == data
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should provide a default encode method which receives a block" do
|
39
|
+
data = 'test'
|
40
|
+
translator = Translators::Translator.new
|
41
|
+
|
42
|
+
translator.encode(data) do |encoded|
|
43
|
+
encoded.should == data
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should provide a default decode method" do
|
48
|
+
data = 'test'
|
49
|
+
translator = Translators::Translator.new
|
50
|
+
|
51
|
+
translator.decode(data).should == data
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should provide a default decode method which receives a block" do
|
55
|
+
data = 'test'
|
56
|
+
translator = Translators::Translator.new
|
57
|
+
|
58
|
+
translator.decode(data) do |decoded|
|
59
|
+
decoded.should == data
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require 'ronin/web/extensions/hpricot'
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe Hpricot do
|
6
|
+
before(:all) do
|
7
|
+
@doc = Hpricot(%{<html><head><title>test</title></head><body><p><b>This is a test</b> html <i>page</i>.</p></div></body></html>})
|
8
|
+
|
9
|
+
@edited_doc = Hpricot(%{<html><head><title>test</title></head><body><p><b>This is a test</b> html page.</p></div></body></html>})
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should be able to test if two elements are equal" do
|
13
|
+
elem1 = @doc.at('b')
|
14
|
+
elem2 = @edited_doc.at('b')
|
15
|
+
|
16
|
+
(elem1 == elem2).should == true
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should be able to test if two elements are not equal" do
|
20
|
+
elem1 = @doc.at('p').children.last
|
21
|
+
elem2 = @edited_doc.at('b')
|
22
|
+
|
23
|
+
(elem1 == elem2).should == false
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should be able to compare two elements" do
|
27
|
+
elem1 = @doc.at('p')
|
28
|
+
elem2 = @edited_doc.at('p')
|
29
|
+
|
30
|
+
(elem1 > elem2).should == true
|
31
|
+
(elem2 < elem1).should == true
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should be able to iterate over every child" do
|
35
|
+
children = []
|
36
|
+
|
37
|
+
@doc.every_child { |child| children << child }
|
38
|
+
|
39
|
+
children.length.should == 13
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should be able to iterate over every text node" do
|
43
|
+
text = []
|
44
|
+
|
45
|
+
@doc.all_text { |node| text << node.content }
|
46
|
+
|
47
|
+
text.should == ['test', 'This is a test', ' html ', 'page', '.']
|
48
|
+
end
|
49
|
+
|
50
|
+
it "should provide a count of all sub-children" do
|
51
|
+
@doc.count_children.should == 13
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should be able to test if two Hpricot documents are equal" do
|
55
|
+
(@doc == @doc).should == true
|
56
|
+
end
|
57
|
+
|
58
|
+
it "should be able to compare two Hpricot documents" do
|
59
|
+
(@doc > @edited_doc).should == true
|
60
|
+
(@edited_doc < @doc).should == true
|
61
|
+
end
|
62
|
+
end
|
data/static/overlay.xsl
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
3
|
+
<xsl:output method="xml" version="1.0" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.1//EN" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" indent="yes" />
|
4
|
+
|
5
|
+
<xsl:template match="/ronin-overlay">
|
6
|
+
<html>
|
7
|
+
<head>
|
8
|
+
<title>Ronin Overlay :: <xsl:value-of select="/ronin-overlay/name/." /></title>
|
9
|
+
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
10
|
+
<style type="text/css">
|
11
|
+
body {
|
12
|
+
}
|
13
|
+
|
14
|
+
#overlay {
|
15
|
+
margin: 0.5em;
|
16
|
+
padding: 0.2em;
|
17
|
+
border: 20px solid black;
|
18
|
+
}
|
19
|
+
|
20
|
+
#overlay-name {
|
21
|
+
}
|
22
|
+
|
23
|
+
#overlay-license {
|
24
|
+
}
|
25
|
+
|
26
|
+
#overlay-url {
|
27
|
+
}
|
28
|
+
|
29
|
+
#overlay-description {
|
30
|
+
}
|
31
|
+
|
32
|
+
#overlay-description blockquote {
|
33
|
+
}
|
34
|
+
</style>
|
35
|
+
<script type="text/javascript" src="http://ronin.rubyforge.org/scripts/jquery.min.js"></script>
|
36
|
+
<script type="text/javascript" src="http://ronin.rubyforge.org/scripts/jquery.expander.js"></script>
|
37
|
+
<script type="text/javascript">
|
38
|
+
$(document).ready(function() {
|
39
|
+
$("#overlay-description/blockquote").expander({
|
40
|
+
expandText: '[ more ]',
|
41
|
+
userCollapseText: '[ less ]'
|
42
|
+
});
|
43
|
+
});
|
44
|
+
</script>
|
45
|
+
</head>
|
46
|
+
|
47
|
+
<body>
|
48
|
+
<div id="overlay">
|
49
|
+
<xsl:apply-templates />
|
50
|
+
</div>
|
51
|
+
</body>
|
52
|
+
</html>
|
53
|
+
</xsl:template>
|
54
|
+
|
55
|
+
<xsl:template match="/ronin-overlay/name">
|
56
|
+
<p id="overlay-name">
|
57
|
+
<strong>Name:</strong> <xsl:value-of select="." />
|
58
|
+
</p>
|
59
|
+
</xsl:template>
|
60
|
+
|
61
|
+
<xsl:template match="/ronin-overlay/license">
|
62
|
+
<p id="overlay-license">
|
63
|
+
<strong>License:</strong> <xsl:value-of select="." />
|
64
|
+
</p>
|
65
|
+
</xsl:template>
|
66
|
+
|
67
|
+
<xsl:template match="/ronin-overlay/source">
|
68
|
+
<p id="overlay-source">
|
69
|
+
<strong>Source:</strong>
|
70
|
+
<a>
|
71
|
+
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
72
|
+
<xsl:value-of select=".">
|
73
|
+
</a>
|
74
|
+
</p>
|
75
|
+
</xsl:template>
|
76
|
+
|
77
|
+
<xsl:template match="/ronin-overlay/source-browse">
|
78
|
+
<p id="overlay-source-browse">
|
79
|
+
<strong>Source Browser:</strong>
|
80
|
+
<a>
|
81
|
+
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
82
|
+
<xsl:value-of select=".">
|
83
|
+
</a>
|
84
|
+
</p>
|
85
|
+
</xsl:template>
|
86
|
+
|
87
|
+
<xsl:template match="/ronin-overlay/website">
|
88
|
+
<p id="overlay-website">
|
89
|
+
<strong>Website:</strong>
|
90
|
+
<a>
|
91
|
+
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
92
|
+
<xsl:value-of select=".">
|
93
|
+
</a>
|
94
|
+
</p>
|
95
|
+
</xsl:template>
|
96
|
+
|
97
|
+
<xsl:template match="/ronin-overlay/description">
|
98
|
+
<div id="overlay-description">
|
99
|
+
<p><strong>Description:</strong></p>
|
100
|
+
<blockquote><xsl:value-of select="." /></blockquote>
|
101
|
+
</div>
|
102
|
+
</xsl:template>
|
103
|
+
</xsl:stylesheet>
|
data/tasks/spec.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Postmodern
|
7
|
+
- Postmodern
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-10
|
12
|
+
date: 2008-12-10 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -32,6 +32,16 @@ dependencies:
|
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: "0"
|
34
34
|
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: spidr
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 0.1.3
|
44
|
+
version:
|
35
45
|
- !ruby/object:Gem::Dependency
|
36
46
|
name: dm-core
|
37
47
|
type: :runtime
|
@@ -50,7 +60,7 @@ dependencies:
|
|
50
60
|
requirements:
|
51
61
|
- - ">="
|
52
62
|
- !ruby/object:Gem::Version
|
53
|
-
version: 0.9.
|
63
|
+
version: 0.9.9
|
54
64
|
version:
|
55
65
|
- !ruby/object:Gem::Dependency
|
56
66
|
name: do_sqlite3
|
@@ -60,7 +70,7 @@ dependencies:
|
|
60
70
|
requirements:
|
61
71
|
- - ">="
|
62
72
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.9.
|
73
|
+
version: 0.9.9
|
64
74
|
version:
|
65
75
|
- !ruby/object:Gem::Dependency
|
66
76
|
name: dm-types
|
@@ -102,6 +112,16 @@ dependencies:
|
|
102
112
|
- !ruby/object:Gem::Version
|
103
113
|
version: 0.9.3
|
104
114
|
version:
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: parameters
|
117
|
+
type: :runtime
|
118
|
+
version_requirement:
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 0.1.0
|
124
|
+
version:
|
105
125
|
- !ruby/object:Gem::Dependency
|
106
126
|
name: reverse-require
|
107
127
|
type: :runtime
|
@@ -110,7 +130,7 @@ dependencies:
|
|
110
130
|
requirements:
|
111
131
|
- - ">="
|
112
132
|
- !ruby/object:Gem::Version
|
113
|
-
version: 0.
|
133
|
+
version: 0.2.0
|
114
134
|
version:
|
115
135
|
- !ruby/object:Gem::Dependency
|
116
136
|
name: repertoire
|
@@ -144,20 +164,17 @@ extra_rdoc_files:
|
|
144
164
|
- COPYING.txt
|
145
165
|
- Manifest.txt
|
146
166
|
- README.txt
|
147
|
-
- FAQ.txt
|
148
167
|
- TODO.txt
|
149
168
|
files:
|
150
169
|
- History.txt
|
151
170
|
- COPYING.txt
|
152
171
|
- Manifest.txt
|
153
172
|
- README.txt
|
154
|
-
- FAQ.txt
|
155
173
|
- TODO.txt
|
156
174
|
- Rakefile
|
157
175
|
- bin/ronin
|
158
176
|
- lib/ronin.rb
|
159
177
|
- lib/ronin/config.rb
|
160
|
-
- lib/ronin/environment.rb
|
161
178
|
- lib/ronin/exceptions/invalid_database_config.rb
|
162
179
|
- lib/ronin/exceptions/unknown_context.rb
|
163
180
|
- lib/ronin/exceptions/context_not_found.rb
|
@@ -171,15 +188,6 @@ files:
|
|
171
188
|
- lib/ronin/extensions/uri/query_params.rb
|
172
189
|
- lib/ronin/extensions/uri/http.rb
|
173
190
|
- lib/ronin/extensions/string.rb
|
174
|
-
- lib/ronin/extensions/kernel.rb
|
175
|
-
- lib/ronin/parameters.rb
|
176
|
-
- lib/ronin/parameters/exceptions.rb
|
177
|
-
- lib/ronin/parameters/exceptions/missing_param.rb
|
178
|
-
- lib/ronin/parameters/exceptions/param_not_found.rb
|
179
|
-
- lib/ronin/parameters/class_param.rb
|
180
|
-
- lib/ronin/parameters/instance_param.rb
|
181
|
-
- lib/ronin/parameters/param.rb
|
182
|
-
- lib/ronin/parameters/parameters.rb
|
183
191
|
- lib/ronin/formatting.rb
|
184
192
|
- lib/ronin/formatting/digest.rb
|
185
193
|
- lib/ronin/formatting/binary.rb
|
@@ -198,9 +206,15 @@ files:
|
|
198
206
|
- lib/ronin/formatting/extensions/html/string.rb
|
199
207
|
- lib/ronin/formatting/extensions/http.rb
|
200
208
|
- lib/ronin/formatting/extensions/http/string.rb
|
209
|
+
- lib/ronin/hexdump.rb
|
210
|
+
- lib/ronin/hexdump/hexdump.rb
|
211
|
+
- lib/ronin/hexdump/extensions.rb
|
212
|
+
- lib/ronin/hexdump/extensions/file.rb
|
213
|
+
- lib/ronin/hexdump/extensions/kernel.rb
|
201
214
|
- lib/ronin/chars.rb
|
202
215
|
- lib/ronin/chars/char_set.rb
|
203
216
|
- lib/ronin/chars/chars.rb
|
217
|
+
- lib/ronin/translators/translator.rb
|
204
218
|
- lib/ronin/path.rb
|
205
219
|
- lib/ronin/network.rb
|
206
220
|
- lib/ronin/network/extensions.rb
|
@@ -232,6 +246,8 @@ files:
|
|
232
246
|
- lib/ronin/network/http.rb
|
233
247
|
- lib/ronin/network/http/exceptions.rb
|
234
248
|
- lib/ronin/network/http/exceptions/unknown_request.rb
|
249
|
+
- lib/ronin/code/emittable.rb
|
250
|
+
- lib/ronin/code/token.rb
|
235
251
|
- lib/ronin/code/reference.rb
|
236
252
|
- lib/ronin/code/symbol_table.rb
|
237
253
|
- lib/ronin/rpc.rb
|
@@ -244,10 +260,15 @@ files:
|
|
244
260
|
- lib/ronin/rpc/service.rb
|
245
261
|
- lib/ronin/rpc/console.rb
|
246
262
|
- lib/ronin/rpc/shell.rb
|
247
|
-
- lib/ronin/rpc/interactive.rb
|
248
|
-
- lib/ronin/rpc/interactive_console.rb
|
249
|
-
- lib/ronin/rpc/interactive_shell.rb
|
250
263
|
- lib/ronin/web.rb
|
264
|
+
- lib/ronin/web/extensions.rb
|
265
|
+
- lib/ronin/web/extensions/hpricot.rb
|
266
|
+
- lib/ronin/web/extensions/hpricot/tag.rb
|
267
|
+
- lib/ronin/web/extensions/hpricot/text.rb
|
268
|
+
- lib/ronin/web/extensions/hpricot/comment.rb
|
269
|
+
- lib/ronin/web/extensions/hpricot/elem.rb
|
270
|
+
- lib/ronin/web/extensions/hpricot/container.rb
|
271
|
+
- lib/ronin/web/extensions/hpricot/doc.rb
|
251
272
|
- lib/ronin/web/web.rb
|
252
273
|
- lib/ronin/sessions.rb
|
253
274
|
- lib/ronin/sessions/session.rb
|
@@ -258,10 +279,10 @@ files:
|
|
258
279
|
- lib/ronin/sessions/pop3.rb
|
259
280
|
- lib/ronin/sessions/imap.rb
|
260
281
|
- lib/ronin/sessions/telnet.rb
|
282
|
+
- lib/ronin/sessions/http.rb
|
261
283
|
- lib/ronin/sessions/web.rb
|
262
284
|
- lib/ronin/database.rb
|
263
285
|
- lib/ronin/model.rb
|
264
|
-
- lib/ronin/models.rb
|
265
286
|
- lib/ronin/author.rb
|
266
287
|
- lib/ronin/license.rb
|
267
288
|
- lib/ronin/arch.rb
|
@@ -271,35 +292,39 @@ files:
|
|
271
292
|
- lib/ronin/pending_context.rb
|
272
293
|
- lib/ronin/context.rb
|
273
294
|
- lib/ronin/object_context.rb
|
274
|
-
- lib/ronin/
|
275
|
-
- lib/ronin/persistence.rb
|
295
|
+
- lib/ronin/models.rb
|
276
296
|
- lib/ronin/cache.rb
|
277
297
|
- lib/ronin/cache/exceptions.rb
|
278
298
|
- lib/ronin/cache/exceptions/extension_not_found.rb
|
279
299
|
- lib/ronin/cache/exceptions/overlay_cached.rb
|
280
300
|
- lib/ronin/cache/exceptions/overlay_not_found.rb
|
281
301
|
- lib/ronin/cache/overlay_cache.rb
|
302
|
+
- lib/ronin/cache/maintainer.rb
|
282
303
|
- lib/ronin/cache/overlay.rb
|
283
304
|
- lib/ronin/cache/config.rb
|
284
305
|
- lib/ronin/cache/extension_cache.rb
|
285
306
|
- lib/ronin/cache/extension.rb
|
307
|
+
- lib/ronin/cache/cache.rb
|
286
308
|
- lib/ronin/cache/ronin.rb
|
287
|
-
- lib/ronin/console.rb
|
288
|
-
- lib/ronin/shell.rb
|
289
|
-
- lib/ronin/
|
290
|
-
- lib/ronin/
|
291
|
-
- lib/ronin/
|
292
|
-
- lib/ronin/
|
293
|
-
- lib/ronin/
|
294
|
-
- lib/ronin/
|
295
|
-
- lib/ronin/
|
296
|
-
- lib/ronin/
|
297
|
-
- lib/ronin/
|
298
|
-
- lib/ronin/
|
299
|
-
- lib/ronin/
|
300
|
-
- lib/ronin/
|
301
|
-
- lib/ronin/
|
302
|
-
- lib/ronin/
|
309
|
+
- lib/ronin/ui/console.rb
|
310
|
+
- lib/ronin/ui/shell.rb
|
311
|
+
- lib/ronin/ui/command_line.rb
|
312
|
+
- lib/ronin/ui/command_line/exceptions.rb
|
313
|
+
- lib/ronin/ui/command_line/exceptions/unknown_command.rb
|
314
|
+
- lib/ronin/ui/command_line/command.rb
|
315
|
+
- lib/ronin/ui/command_line/options.rb
|
316
|
+
- lib/ronin/ui/command_line/commands.rb
|
317
|
+
- lib/ronin/ui/command_line/commands/default.rb
|
318
|
+
- lib/ronin/ui/command_line/commands/overlay.rb
|
319
|
+
- lib/ronin/ui/command_line/commands/extension.rb
|
320
|
+
- lib/ronin/ui/command_line/commands/add.rb
|
321
|
+
- lib/ronin/ui/command_line/commands/install.rb
|
322
|
+
- lib/ronin/ui/command_line/commands/list.rb
|
323
|
+
- lib/ronin/ui/command_line/commands/update.rb
|
324
|
+
- lib/ronin/ui/command_line/commands/remove.rb
|
325
|
+
- lib/ronin/ui/command_line/commands/uninstall.rb
|
326
|
+
- lib/ronin/ui/command_line/commands/help.rb
|
327
|
+
- lib/ronin/ui/command_line/command_line.rb
|
303
328
|
- lib/ronin/ronin.rb
|
304
329
|
- lib/ronin/version.rb
|
305
330
|
- tasks/spec.rb
|
@@ -307,12 +332,15 @@ files:
|
|
307
332
|
- spec/spec_helper.rb
|
308
333
|
- spec/arch_spec.rb
|
309
334
|
- spec/author_spec.rb
|
335
|
+
- spec/chars/char_set_spec.rb
|
310
336
|
- spec/chars/chars_spec.rb
|
337
|
+
- spec/translators/translator_spec.rb
|
311
338
|
- spec/context/context_spec.rb
|
312
339
|
- spec/context/helpers/book_context.rb
|
313
340
|
- spec/context/helpers/book_review_context.rb
|
314
341
|
- spec/context/helpers/contexts/snow_crash.rb
|
315
342
|
- spec/context/helpers/contexts/neuromancer_review.rb
|
343
|
+
- spec/object_context/object_context_spec.rb
|
316
344
|
- spec/extensions/hash_spec.rb
|
317
345
|
- spec/extensions/string_spec.rb
|
318
346
|
- spec/extensions/uri/http_spec.rb
|
@@ -324,14 +352,16 @@ files:
|
|
324
352
|
- spec/formatting/text_spec.rb
|
325
353
|
- spec/code/reference_spec.rb
|
326
354
|
- spec/code/symbol_table_spec.rb
|
355
|
+
- spec/web/extensions/hpricot_spec.rb
|
327
356
|
- spec/license_spec.rb
|
328
357
|
- spec/path_spec.rb
|
329
358
|
- spec/platform_spec.rb
|
330
359
|
- spec/product_spec.rb
|
331
360
|
- spec/target_spec.rb
|
332
|
-
- spec/parameters/parameters_spec.rb
|
333
361
|
- spec/sessions/session_spec.rb
|
334
362
|
- spec/ronin_spec.rb
|
363
|
+
- static/overlay.xsl
|
364
|
+
- static/extension.rb.erb
|
335
365
|
has_rdoc: true
|
336
366
|
homepage: http://ronin.rubyforge.org/
|
337
367
|
post_install_message:
|
@@ -355,7 +385,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
355
385
|
requirements: []
|
356
386
|
|
357
387
|
rubyforge_project: ronin
|
358
|
-
rubygems_version: 1.3.
|
388
|
+
rubygems_version: 1.3.1
|
359
389
|
signing_key:
|
360
390
|
specification_version: 2
|
361
391
|
summary: Ronin is a Ruby platform designed for information security and data exploration tasks
|