mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
959 B
Ruby
39 lines
959 B
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Kontaktformular"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-09-13
|
|
]
|
|
version "0.1"
|
|
description "PHP contact form"
|
|
website "http://www.radbekleidung.eu/gratis-kontaktformular.html"
|
|
|
|
# 49 results for "Script Powered by Kontaktformular" @ 2010-09-13
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Script Powered by Kontaktformular"'
|
|
]
|
|
|
|
|
|
|
|
matches [
|
|
|
|
# HTML comment
|
|
{ :text=>'<!--Copyright darf NICHT entfernt werden!!-->' },
|
|
{ :text=>'<!-- Hinweis darf nicht entfernt werden! -->' },
|
|
|
|
# Powered by text
|
|
{ :text=>'Script Powered by <a target="_blank" href="http://www.radbekleidung.eu/gratis-kontaktformular.html">Kontaktformular</a>' },
|
|
{ :text=>'© Script Powered by kontaktformular.org </span>' },
|
|
|
|
]
|
|
|
|
end
|
|
|