# 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-24 # # Updated version detection ## WhatWeb::Plugin.define "Seagull-PHP-Framework" do @author = "Brendan Coles " # 2010-09-12 @version = "0.2" @description = "Seagull is a mature OOP framework for building web, command line and GUI applications. Licensed under BSD, the project allows PHP developers to easily integrate and manage code resources, and build complex applications quickly." @website = "http://seagullproject.org/" # Google results as at 2010-09-12 # # 101 for "Powered By Seagull PHP Framework" # 34 for intitle:"Seagull Framework :: Installation" # Dorks # @dorks = [ '"Powered By Seagull PHP Framework"' ] # Matches # @matches = [ # Meta generator { text: ' ' }, # Powered by text { regexp: / Powered by Seagull PHP Framework<\/a>/ }, # Default javascript { regexp: / var SGL_JS_SESSID[\s]*=/ }, # Help link { regexp: // }, # Error page { text: ' Seagull Framework :: Installation ' }, # Default logo { url: "/themes/default/images/logo.png", md5: "4986dcbd7b531e29c58b5808b1f8cdd3" }, # Version Detection # Powered by text { version: / Powered by Seagull PHP Framework<\/a> v([\d\.]+)/ }, ] end