Sha256: 5b917e8b66b3122ba6738f67d31d4a1bb3a40985bb1a2703af761d9d561fa7e4
Contents?: true
Size: 1.9 KB
Versions: 6
Compression:
Stored size: 1.9 KB
Contents
# 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 <bcoles@gmail.com>" # 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: ' <meta name="generator" content="Seagull Framework" />' }, # Powered by text { regexp: / Powered by <a href="http:\/\/seagullproject.org[\/]*" title="Seagull framework homepage">Seagull PHP Framework<\/a>/ }, # Default javascript { regexp: / var SGL_JS_SESSID[\s]*=/ }, # Help link { regexp: /<link rel="help" href="http:\/\/trac.seagullproject.org[\/]*" title="Seagull Documentation." \/>/ }, # Error page { text: ' <title>Seagull Framework :: Installation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />' }, # Default logo { url: "/themes/default/images/logo.png", md5: "4986dcbd7b531e29c58b5808b1f8cdd3" }, # Version Detection # Powered by text { version: / Powered by <a href="http:\/\/seagullproject.org[\/]?" title="Seagull PHP Framework">Seagull PHP Framework<\/a> v([\d\.]+)/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems