mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.0 KiB
Ruby
39 lines
1.0 KiB
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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "aspWebLinks"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-28
|
|
# Version 0.2 # Updated version detection #
|
|
]
|
|
version "0.2"
|
|
description "Web app for categorizing links"
|
|
website "http://www.fullrevolution.com/"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by aspWebLinks"'
|
|
]
|
|
|
|
# 41 results for "powered by aspWebLinks" @ 2010-08-28
|
|
# 7 results for "powered by aspWebLinks" intitle:"aspWebLinks" @ 2010-08-28
|
|
|
|
|
|
matches [
|
|
|
|
# Version detection # Powered by text
|
|
{ :version=>/Powered By aspWebLinks ([\d\.]+) from <A[^>]*HREF=["']http:\/\/www.fullrevolution.com[^>]*>Full Revolution, Inc.<\/A>/ },
|
|
{ :version=>/<A[^>]*HREF=["']http:\/\/www.fullrevolution.com[^>]*>Powered By aspWebLinks ([\d\.]+)<\/A>/ },
|
|
|
|
# Version detection # Default title
|
|
{ :version=>/<title>aspWebLinks ([\d\.]+)<\/title>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|