Skip to content

Sample scripts to interact with Dradis Pro's project database - See http://drad.is

Notifications You must be signed in to change notification settings

h4ng3r-BF/dradispro-scripting

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dradis Professional scripting examples

This repo contains scripts you can run in the context of your Dradis Pro appliance. They show how to query the internal database to perform complex operations, gather statistics and more.

How to use the scripts

  1. Clone the repo into your laptop
git clone https://github.com/securityroots/dradispro-scripting.git
  1. Choose one of the scripts or create a new one by modifying it for your needs.
  2. SCP it across to your Dradis Pro appliance:
$ scp find_xss.rb dradispro@[dradis-ip]:/opt/dradispro/dradispro/current/
  1. Run the script in the context of the application
$ ssh dradispro@[dradis-ip]
$ cd /opt/dradispro/dradispro/current/
$ RAILS_ENV=production bundle exec rails runner find_xss.rb

List of scripts

  • bi_fields.rb - Return the Custom Project Properties from the BI Dashboard for a specific project
  • /bash_files/bulk_upload.sh - Upload multiple tool output files to a project at once, one plugin at a time
  • create_project.rb - Create a project with a name passed as argument and return the assigned ID
  • daily_summary.rb - Finds and outputs all of the Issues added to Dradis in the past 24 hours
  • delete_nodes_without_evidence.rb - Deletes Host Nodes that don't have any Evidence associated with them in a specific project
  • export_issuelib.rb - Exports all your IssueLibrary entries to a single file
  • export_rt.rb - Exports all your Remediation Tracker tickets to a single file
  • find_xss.rb - Find recent projects with XSS Issues in them
  • issue_id.html.erb - Adds the unique issue identifier from your Dradis instance to each issue in a project in a new ID field
  • load_project_from_api - Query a remote JSON API response to get project data and create matching Projects in the Dradis appliance
  • project_association_check.rb - Checks to make sure all projects are associated with a report template
  • project_stats.rb - Find which issues have been found across multiple projects and other project stats
  • recover_trash.rb - Restores all the items from the Trash feature in a single project
  • update_content_blocks.rb - Return and edit Content Blocks associated with a specific project
  • update_issuelib_entries.rb - Find/replace and add fields to your IssueLibrary entries

What does each script do?

Great question:

  • Check the script source, there should be a comment near the top with a brief intro.
  • Check the Command Line Interface guide in the support site.

About

Sample scripts to interact with Dradis Pro's project database - See http://drad.is

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 63.1%
  • HTML 32.5%
  • Shell 4.4%