emonti-buby 1.1.0.0 → 1.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 CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.1.1 / 2009-06-24
2
+ * Fix
3
+ * fixed getSiteMap callback front-end so that it takes the urlprefix argument
4
+
1
5
  == 1.1.0 / 2009-06-18
2
6
  * 1 major enhancement
3
7
  * Support added for the new Burp API features added in Burp 1.2.09.
data/README.rdoc CHANGED
@@ -1,6 +1,6 @@
1
1
  buby
2
2
  by Eric Monti
3
- http://github.com/emonti/buby
3
+ http://emonti.github.com/buby
4
4
 
5
5
  == DESCRIPTION:
6
6
 
@@ -34,8 +34,8 @@ The java BurpExtender included with Buby is an implementation of IBurpExtender w
34
34
  The C version of ruby will not work.
35
35
 
36
36
  * Burp (pro or free version): Buby is useless without a copy of Burp.
37
- Buby has been tested successfully with both Burp Suite free and pro versions
38
- 1.2, 1.2.01, and 1.2.05. See http://portswigger.net/
37
+ Buby has been tested successfully with both Burp Suite free and pro versions.
38
+ As of version 1.1.0, Buby supports both pre and post 1.2.09 Burp extensions.
39
39
 
40
40
 
41
41
  == BUILD/INSTALL:
data/Rakefile CHANGED
@@ -22,7 +22,7 @@ task :default => 'spec:run'
22
22
  PROJ.name = 'buby'
23
23
  PROJ.authors = 'Eric Monti - Matasano Security'
24
24
  PROJ.email = 'emonti@matasano.com'
25
- PROJ.url = 'http://github.com/emonti/buby'
25
+ PROJ.url = 'http://emonti.github.com/buby'
26
26
  PROJ.version = Buby::VERSION
27
27
  PROJ.rubyforge.name = 'buby'
28
28
  PROJ.readme_file = 'README.rdoc'
data/bin/buby CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby
1
+ #!/usr/bin/env jruby
2
2
 
3
3
  require File.expand_path(File.join(File.dirname(__FILE__), %w[.. lib buby]))
4
4
  require 'irb'
data/buby.gemspec CHANGED
@@ -2,18 +2,18 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{buby}
5
- s.version = "1.1.0.0"
5
+ s.version = "1.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Eric Monti - Matasano Security"]
9
- s.date = %q{2009-06-21}
9
+ s.date = %q{2009-06-24}
10
10
  s.default_executable = %q{buby}
11
11
  s.description = %q{Buby is a mashup of JRuby with the popular commercial web security testing tool Burp Suite from PortSwigger. Burp is driven from and tied to JRuby with a Java extension using the BurpExtender API. This extension aims to add Ruby scriptability to Burp Suite with an interface comparable to the Burp's pure Java extension interface.}
12
12
  s.email = %q{emonti@matasano.com}
13
13
  s.executables = ["buby"]
14
14
  s.extra_rdoc_files = ["History.txt", "README.rdoc", "bin/buby"]
15
15
  s.files = ["History.txt", "README.rdoc", "Rakefile", "bin/buby", "buby.gemspec", "java/buby.jar", "java/src/BurpExtender.java", "java/src/burp/IBurpExtender.java", "java/src/burp/IBurpExtenderCallbacks.java", "java/src/burp/IHttpRequestResponse.java", "java/src/burp/IScanIssue.java", "java/src/burp/IScanQueueItem.java", "lib/buby.rb", "samples/mechanize_burp.rb", "samples/verb_tamperer.rb", "spec/buby_spec.rb", "spec/spec_helper.rb", "tasks/ann.rake", "tasks/bones.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/notes.rake", "tasks/post_load.rake", "tasks/rdoc.rake", "tasks/rubyforge.rake", "tasks/setup.rb", "tasks/spec.rake", "tasks/svn.rake", "tasks/test.rake", "tasks/zentest.rake", "test/test_buby.rb"]
16
- s.homepage = %q{http://github.com/emonti/buby}
16
+ s.homepage = %q{http://emonti.github.com/buby}
17
17
  s.rdoc_options = ["--main", "README.rdoc"]
18
18
  s.require_paths = ["lib", "java"]
19
19
  s.rubyforge_project = %q{buby}
@@ -34,4 +34,3 @@ Gem::Specification.new do |s|
34
34
  s.add_dependency(%q<bones>, [">= 2.5.1"])
35
35
  end
36
36
  end
37
-
data/lib/buby.rb CHANGED
@@ -72,7 +72,7 @@ include_class 'BurpExtender'
72
72
  class Buby
73
73
 
74
74
  # :stopdoc:
75
- VERSION = '1.1.0'
75
+ VERSION = '1.1.1'
76
76
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
77
77
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
78
78
  # :startdoc:
@@ -239,8 +239,8 @@ class Buby
239
239
 
240
240
  # Returns a Java array of IHttpRequestResponse objects pulled directly from
241
241
  # the Burp site map.
242
- def getSiteMap
243
- _check_and_callback(:getSiteMap)
242
+ def getSiteMap(urlprefix)
243
+ _check_and_callback(:getSiteMap, urlprefix)
244
244
  end
245
245
  alias site_map getSiteMap
246
246
  alias get_site_map getSiteMap
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emonti-buby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Monti - Matasano Security
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-21 00:00:00 -07:00
12
+ date: 2009-06-24 00:00:00 -07:00
13
13
  default_executable: buby
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -65,7 +65,7 @@ files:
65
65
  - tasks/zentest.rake
66
66
  - test/test_buby.rb
67
67
  has_rdoc: false
68
- homepage: http://github.com/emonti/buby
68
+ homepage: http://emonti.github.com/buby
69
69
  post_install_message:
70
70
  rdoc_options:
71
71
  - --main