# frozen_string_literal: true ## # This file is part of WhatWeb and may be subject to # redistribution and commercial restrictions. Please see the WhatWeb # web site for more information on licensing and terms of use. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "Dradis-Framework" do @author = "Brendan Coles " # 2011-05-17 @version = "0.1" @description = "Dradis is an open source framework to enable effective information sharing, specially during security assessments. Dradis is a self-contained web application that provides a centralised repository of information to keep track of what has been done so far, and what is still ahead." @website = "http://Dradisframework.org/" # ShodanHQ results as at 2011-05-17 # # 1 for _dradis_session # Google results as at 2011-05-17 # # 2 for intitle:"Welcome to dradis" # 5 for intitle:"First Time User's Wizard - dradis" inurl:wizard # Dorks # @dorks = [ 'intitle:"First Time User\'s Wizard - dradis" inurl:wizard' ] # Matches # @matches = [ # Footer link { text: 'effective information sharing - http://dradisframework.org' }, # homepage link { text: '
‹ back to the app.
' }, # wizard link { text: '

Not familiar with Dradis? Checkout the Wizard.

' }, # Wizard Page # server plugins link { text: '
  • Integration with existing systems and tools through server plugins.
  • ' }, # Version Detection # Wizard Page # Default Title { version: /First Time User's Wizard - dradis v([\d\.]+)<\/title>/ }, ] # Passive # def passive(target) m = [] # _dradis_session cookie m << { name: "_dradis_session cookie" } if target.headers["set-cookie"] =~ /^_dradis_session=/ # Return passive matches m end end