-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename to Appspider #15
Open
dormi
wants to merge
11
commits into
main
Choose a base branch
from
pivotpoint-rename
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
878f8b2
Edited and renamed plugin files to reflect the tool's current name mo…
mgargiullo 78f947c
Updated gemspec file.
mgargiullo 514379b
Updated gemspec file.
mgargiullo 29f20ef
Updated to match dormi's PR. This PR would supersede Dormi's PR by in…
mgargiullo d042eec
Updated gem_version.
mgargiullo e7ddc2b
Fixed incorrect camelcase.
mgargiullo de9c6a2
Fixed missed object name.
mgargiullo cd17b2a
Fixed camelcase across the board.
mgargiullo cd4d4f3
Merge pull request #14 from PivotPointSecurity/master
dormi 10d878b
keep etd as author
dormi b14e007
move "add additional fields" to its own PR
dormi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
$:.push File.expand_path('../lib', __FILE__) | ||
require 'dradis/plugins/ntospider/version' | ||
version = Dradis::Plugins::NTOSpider::VERSION::STRING | ||
require 'dradis/plugins/appspider/version' | ||
version = Dradis::Plugins::Appspider::VERSION::STRING | ||
|
||
|
||
# Describe your gem and declare its dependencies: | ||
Gem::Specification.new do |spec| | ||
spec.platform = Gem::Platform::RUBY | ||
spec.name = 'dradis-ntospider' | ||
spec.name = 'dradis-appspider' | ||
spec.version = version | ||
spec.summary = 'NTOSpider add-on for the Dradis Framework.' | ||
spec.description = 'This add-on allows you to upload and parse output produced from NTOSpider Web Vulnerability Scanner into Dradis.' | ||
spec.summary = 'AppSpider add-on for the Dradis Framework.' | ||
spec.description = 'This add-on allows you to upload and parse output produced from Rapid7s AppSpider Web Vulnerability Scanner into Dradis.' | ||
|
||
spec.license = 'GPL-2' | ||
|
||
spec.authors = ['Daniel Martin'] | ||
spec.email = ['[email protected]'] | ||
spec.authors = ['Daniel Martin', 'Michael Gargiullo'] | ||
spec.email = ['[email protected].com', '[email protected]'] | ||
spec.homepage = 'http://dradisframework.org' | ||
|
||
spec.files = `git ls-files`.split($\) | ||
|
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec| | |
# s.add_dependency 'rails', '~> 4.1.1' | ||
spec.add_dependency 'dradis-plugins', '~> 3.6' | ||
|
||
spec.add_development_dependency 'bundler', '~> 1.6' | ||
spec.add_development_dependency 'bundler' | ||
spec.add_development_dependency 'rake', '~> 10.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# hook to the framework base clases | ||
require 'dradis-plugins' | ||
|
||
# load this add-on's engine | ||
require 'dradis/plugins/appspider' | ||
|
||
# load supporting AppSpider classes | ||
require 'appspider/vuln' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module Dradis | ||
module Plugins | ||
module Appspider | ||
end | ||
end | ||
end | ||
|
||
require 'dradis/plugins/appspider/engine' | ||
require 'dradis/plugins/appspider/field_processor' | ||
require 'dradis/plugins/appspider/importer' | ||
require 'dradis/plugins/appspider/version' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module Dradis::Plugins::Appspider | ||
class Engine < ::Rails::Engine | ||
isolate_namespace Dradis::Plugins::Appspider | ||
|
||
include ::Dradis::Plugins::Base | ||
description 'Processes AppSpider reports' | ||
provides :upload | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
lib/dradis/plugins/ntospider/gem_version.rb → lib/dradis/plugins/appspider/gem_version.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/dradis/plugins/ntospider/version.rb → lib/dradis/plugins/appspider/version.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spacing.