1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "X-Vortech-PHP" do
8author "Brendan Coles <bcoles@gmail.com>" # 2010-10-30
9version "0.1"
10description "X-Vortech-PHP HTTP header."
11
12# About 440 ShodanHQ results for "X-Vortech-PHP" @ 2010-10-30
13
14
15# HTTP Header
16def passive
17	m=[]
18
19	m << { :version=>@headers["x-vortech-php"].to_s } unless @headers["x-vortech-php"].nil?
20
21	m
22
23end
24
25end
26
27