Sha256: 5a51dc71ccba91e3f4e44c70ebf2cd7020eb1331243f31e7a4d0fe20e6e8a316
Contents?: true
Size: 1.43 KB
Versions: 6
Compression:
Stored size: 1.43 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-25 # # Updated version detection ## WhatWeb::Plugin.define "Open-Auto-Classifieds" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-08-27 @version = "0.2" @description = "OAC is a free, open source vehicle classifieds manager. Intended to be easy to install and easy to administer, Open Auto Classifieds is based on open technologies such as the PHP scripting language, the MySQL database engine, XHTML eXtensible Hypertext Markup Language, and CSS Cascading Style Sheet styling." @website = "http://www.openautoclassifieds.com/index.php" # Google results as at 2010-08-27 # # 221 for "powered by Open Auto Classifieds" # Dorks # @dorks = [ '"powered by Open Auto Classifieds"' ] # Matches # @matches = [ # Powered by text { text: '<p>Powered by <a href="http://www.openautoclassifieds.com/index.php">Open Auto Classifieds</a>' }, # Version Detection # Powered by text { version: / <p>Powered by <a href="http:\/\/www.openautoclassifieds.com[^"]*">Open Auto Classifieds v([\d\.a-z]+)/ }, # Version Detection # Powered by text { version: / <p>Powered by Open Auto Classifieds v([\d\.a-z]+)/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems