ronin-sql 0.1.0 → 0.1.1
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/History.txt +9 -5
- data/Rakefile +1 -0
- data/lib/ronin/code/sql/field.rb +1 -1
- data/lib/ronin/code/sql/statement.rb +1 -1
- data/lib/ronin/sql/extensions/uri/http.rb +1 -1
- data/lib/ronin/sql/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
=== 0.1.1 / 2008-09-28
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
* Trivial bug fix to URI::HTTP#sql_errors.
|
|
4
|
+
|
|
5
|
+
=== 0.1.0 / 2007-12-23
|
|
6
|
+
|
|
7
|
+
* Initial release.
|
|
8
|
+
* Supports SQL code generation.
|
|
9
|
+
* Supports obfustication of SQL code.
|
|
10
|
+
* Supports SQL Injection code generation.
|
|
7
11
|
|
data/Rakefile
CHANGED
|
@@ -8,6 +8,7 @@ require './lib/ronin/sql/version.rb'
|
|
|
8
8
|
Hoe.new('ronin-sql', Ronin::SQL::VERSION) do |p|
|
|
9
9
|
p.rubyforge_name = 'ronin'
|
|
10
10
|
p.developer('Postmodern Modulus III','postmodern.mod3@gmail.com')
|
|
11
|
+
p.remote_rdoc_dir = 'docs/ronin-sql'
|
|
11
12
|
p.extra_deps = [['ronin', '>=0.0.9']]
|
|
12
13
|
end
|
|
13
14
|
|
data/lib/ronin/code/sql/field.rb
CHANGED
|
@@ -43,7 +43,7 @@ module URI
|
|
|
43
43
|
def sql_errors(options={})
|
|
44
44
|
injection = (options[:injection] || "'")
|
|
45
45
|
|
|
46
|
-
return test_query_params(injection,options) do |injection_url|
|
|
46
|
+
return test_query_params(injection,options) do |param,injection_url|
|
|
47
47
|
body = Net.http_get_body(options.merge(:url => injection_url))
|
|
48
48
|
|
|
49
49
|
Ronin::SQL.error(body,options)
|
data/lib/ronin/sql/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ronin-sql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Postmodern Modulus III
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-09-28 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|