# 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 ## # Version 0.2 # 2011-02-21 # # Updated version detection ## WhatWeb::Plugin.define "phpQuestionnaire" do @author = "Brendan Coles " # 2010-08-21 @version = "0.2" @description = "phpQuestionnaire" @website = "http://www.chumpsoft.com/products/phpq/" # Google results as at 2010-08-21 # # 56 for "powered by phpQuestionnaire" # Dorks # @dorks = [ '"powered by phpQuestionnaire"' ] # Matches # @matches = [ # Survey list page { text: '

Survey List

' }, { text: '
Currently no available surveys. ' }, # CSS { text: ' TEXTAREA { font-family: verdana,arial,helvetica; font-size: 12px; width: 400px; height: 60px; }' }, { text: ' TEXTAREA { font-family: verdana,arial,helvetica; font-size: 10px; width: 400px; height: 60px; }' }, # powered by text { text: ' powered by phpQuestionnaire' }, { text: ' powered by phpQuestionnaire' }, # default logo { md5: 'feae34c62729c85af0b4114bd02d634a', url: 'templates/default/images/logo.gif' }, # Version Detection # default link HTML { version: / phpQuestionnaire<\/A> ([\d\.]+) © [0-9]{4}-[0-9]{4}/ }, ] end