# 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 "DVWA" do @author = "Brendan Coles " # 2011-03-05 @version = "0.1" @description = "Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is damn vulnerable." @website = "http://www.dvwa.co.uk/" # Google results as at 2011-03-05 # # 1 for intutle:"Damn Vulnerable Web App (DVWA) - Login" @dorks = [ 'intitle:"Damn Vulnerable Web App (DVWA) - Login"' ] # Matches # @matches = [ # Default title { text: ' Damn Vulnerable Web App (DVWA) - Login' }, # Default stylesheet HTML { regexp: / / }, # Password input { text: '


' }, ] end