buby 1.1.6-java

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.
@@ -0,0 +1,40 @@
1
+
2
+ if test(?e, PROJ.test.file) or not PROJ.test.files.to_a.empty?
3
+ require 'rake/testtask'
4
+
5
+ namespace :test do
6
+
7
+ Rake::TestTask.new(:run) do |t|
8
+ t.libs = PROJ.libs
9
+ t.test_files = if test(?f, PROJ.test.file) then [PROJ.test.file]
10
+ else PROJ.test.files end
11
+ t.ruby_opts += PROJ.ruby_opts
12
+ t.ruby_opts += PROJ.test.opts
13
+ end
14
+
15
+ if HAVE_RCOV
16
+ desc 'Run rcov on the unit tests'
17
+ task :rcov => :clobber_rcov do
18
+ opts = PROJ.rcov.opts.dup << '-o' << PROJ.rcov.dir
19
+ opts = opts.join(' ')
20
+ files = if test(?f, PROJ.test.file) then [PROJ.test.file]
21
+ else PROJ.test.files end
22
+ files = files.join(' ')
23
+ sh "#{RCOV} #{files} #{opts}"
24
+ end
25
+
26
+ task :clobber_rcov do
27
+ rm_r 'coverage' rescue nil
28
+ end
29
+ end
30
+
31
+ end # namespace :test
32
+
33
+ desc 'Alias to test:run'
34
+ task :test => 'test:run'
35
+
36
+ task :clobber => 'test:clobber_rcov' if HAVE_RCOV
37
+
38
+ end
39
+
40
+ # EOF
@@ -0,0 +1,36 @@
1
+ if HAVE_ZENTEST
2
+
3
+ # --------------------------------------------------------------------------
4
+ if test(?e, PROJ.test.file) or not PROJ.test.files.to_a.empty?
5
+ require 'autotest'
6
+
7
+ namespace :test do
8
+ task :autotest do
9
+ Autotest.run
10
+ end
11
+ end
12
+
13
+ desc "Run the autotest loop"
14
+ task :autotest => 'test:autotest'
15
+
16
+ end # if test
17
+
18
+ # --------------------------------------------------------------------------
19
+ if HAVE_SPEC_RAKE_SPECTASK and not PROJ.spec.files.to_a.empty?
20
+ require 'autotest/rspec'
21
+
22
+ namespace :spec do
23
+ task :autotest do
24
+ load '.autotest' if test(?f, '.autotest')
25
+ Autotest::Rspec.run
26
+ end
27
+ end
28
+
29
+ desc "Run the autotest loop"
30
+ task :autotest => 'spec:autotest'
31
+
32
+ end # if rspec
33
+
34
+ end # if HAVE_ZENTEST
35
+
36
+ # EOF
File without changes
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: buby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.6
5
+ platform: java
6
+ authors:
7
+ - Eric Monti - Matasano Security
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-22 00:00:00 -06:00
13
+ default_executable: buby
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bones
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.5.1
24
+ version:
25
+ description: 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.
26
+ email: emonti@matasano.com
27
+ executables:
28
+ - buby
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - History.txt
33
+ - README.rdoc
34
+ - bin/buby
35
+ files:
36
+ - History.txt
37
+ - README.rdoc
38
+ - Rakefile
39
+ - bin/buby
40
+ - buby.gemspec
41
+ - java/buby.jar
42
+ - java/src/BurpExtender.java
43
+ - java/src/burp/IBurpExtender.java
44
+ - java/src/burp/IBurpExtenderCallbacks.java
45
+ - java/src/burp/IHttpRequestResponse.java
46
+ - java/src/burp/IScanIssue.java
47
+ - java/src/burp/IScanQueueItem.java
48
+ - lib/buby.rb
49
+ - lib/buby/extends.rb
50
+ - lib/buby/extends/buby_array_wrapper.rb
51
+ - lib/buby/extends/http_request_response.rb
52
+ - lib/buby/extends/scan_issue.rb
53
+ - samples/drb_buby.rb
54
+ - samples/drb_sample_cli.rb
55
+ - samples/mechanize_burp.rb
56
+ - samples/poc_generator.rb
57
+ - samples/verb_tamperer.rb
58
+ - samples/watch_scan.rb
59
+ - spec/buby_spec.rb
60
+ - spec/spec_helper.rb
61
+ - tasks/ann.rake
62
+ - tasks/bones.rake
63
+ - tasks/gem.rake
64
+ - tasks/git.rake
65
+ - tasks/notes.rake
66
+ - tasks/post_load.rake
67
+ - tasks/rdoc.rake
68
+ - tasks/rubyforge.rake
69
+ - tasks/setup.rb
70
+ - tasks/spec.rake
71
+ - tasks/svn.rake
72
+ - tasks/test.rake
73
+ - tasks/zentest.rake
74
+ - test/test_buby.rb
75
+ has_rdoc: true
76
+ homepage: http://emonti.github.com/buby
77
+ licenses: []
78
+
79
+ post_install_message:
80
+ rdoc_options:
81
+ - --main
82
+ - README.rdoc
83
+ require_paths:
84
+ - lib
85
+ - java
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: "0"
91
+ version:
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: "0"
97
+ version:
98
+ requirements: []
99
+
100
+ rubyforge_project: buby
101
+ rubygems_version: 1.3.5
102
+ signing_key:
103
+ specification_version: 3
104
+ summary: Buby is a mashup of JRuby with the popular commercial web security testing tool Burp Suite from PortSwigger
105
+ test_files:
106
+ - test/test_buby.rb