Sha256: 34b9d1a23e79337741dca868996803a53e3dc19d436117282cb20715be48ac1a

Contents?: true

Size: 1.45 KB

Versions: 6

Compression:

Stored size: 1.45 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
##

# v1.0
# not so foolproof if the site uses its own custom 404 and custom cookie name
# v2.0 by Andrew Horton
# new random string

WhatWeb::Plugin.define "CodeIgniter-PHP-Framework" do
  @author = "Aung Khant <YGN Ethical Hacker Group, Myanmar, http://yehg.net>"
  @version = "0.2"
  @description = "CodeIgniter PHP Framework - http://codeigniter.com/ "

  # more http://codeigniter.com/projects/

  # Matches #
  @matches = [
    { string: '404 Signature', url: randstr, md5: 'e087ab5729efdfa939ba620e4593bd99' },
    { string: '404 Signature', url: 'index.php/' + randstr, md5: 'e087ab5729efdfa939ba620e4593bd99' },
    { string: 'Database Error Signature', url: 'index.php/' + randstr, md5: '951c845488483135e52252609a1d99b2' },
    { string: 'Database Error Signature', md5: '951c845488483135e52252609a1d99b2' },
    { string: 'Invalid Character Filter', url: randstr + '!!!', md5: 'c9b724012ab64481a034f9a453143ece' },
    { string: 'Invalid Character Filter', url: randstr + '!!!', text: 'The URI you submitted has disallowed characters.' }
  ]

  # Passive #
  def passive(target)
    m = []
    m << { string: "ci_session Cookie" } if target.headers["set-cookie"] =~ /ci_session=/
    m
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/codeigniter.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/codeigniter.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/codeigniter.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/codeigniter.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/codeigniter.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/codeigniter.rb