Sha256: c11e66ff85470c311e60f5d090b7079022219ad0717c4da1966b68182abb33d5
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 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 ## WhatWeb::Plugin.define "ChiliProject" do @author = "Brendan Coles <bcoles@gmail.com>" # 2012-07-24 @version = "0.1" @description = "ChiliProject is a web based project management system." @website = "https://www.chiliproject.org/" # ShodanHQ results as at 2012-07-24 # # 25 for _chiliproject_session # Google results as at 2012-07-24 # # 113 for "Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org # Dorks # @dorks = [ '"Powered by ChiliProject" intitle:"ChiliProject" -site:chiliproject.org' ] # Matches # @matches = [ # Powered by link { text: 'Powered by <a href="https://www.chiliproject.org/">ChiliProject</a>' }, # Meta Description { text: '<meta name="description" content="ChiliProject" />' }, # HTML Comment { text: '<!-- page specific tags -->' }, # Help Link # Version Detection { version: /<li><a href="https:\/\/www\.chiliproject\.org\/help\/v([^\s^"]+)" class="help">/ }, # Set-Cookie # _chiliproject_session { search: "headers[set-cookie]", regexp: /_chiliproject_session=/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems