ronin-sql 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,7 +1,11 @@
1
- == 0.1.0 / 2007-12-23
1
+ === 0.1.1 / 2008-09-28
2
2
 
3
- * Initial release.
4
- * Supports SQL code generation.
5
- * Supports obfustication of SQL code.
6
- * Supports SQL Injection code generation.
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
 
@@ -37,7 +37,7 @@ module Ronin
37
37
  end
38
38
 
39
39
  def *
40
- field_cache['*'.to_sym]
40
+ field_cache[:"*"]
41
41
  end
42
42
 
43
43
  def id
@@ -82,7 +82,7 @@ module Ronin
82
82
  end
83
83
 
84
84
  def all
85
- field_cache['*'.to_sym]
85
+ field_cache[:'*']
86
86
  end
87
87
 
88
88
  def id
@@ -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)
@@ -24,6 +24,6 @@
24
24
  module Ronin
25
25
  module SQL
26
26
  # Ronin SQL version
27
- VERSION = '0.1.0'
27
+ VERSION = '0.1.1'
28
28
  end
29
29
  end
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.0
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-08-20 00:00:00 -07:00
12
+ date: 2008-09-28 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency