mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
47 lines
1.3 KiB
Ruby
47 lines
1.3 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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Mobile-Website"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-27
|
|
# v0.2 # 2011-03-30 # Updated regex.
|
|
]
|
|
version "0.2"
|
|
description "This plugin detects websites designed for mobile devices."
|
|
|
|
# About 210,000,000 results for inurl:.mobi @ 2010-08-27
|
|
# About 3,840,000 results for inurl:.mobi +filetype:wml @ 2010-08-27
|
|
# 245 results for "for your mobile" inurl:m. @ 2010-08-27
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Doctype
|
|
{ :regexp=>/<!DOCTYPE (wml|html) PUBLIC "-\/\/WAPFORUM\/\/DTD (XHTML Mobile|WML) 1\.[0-9]\/\/[A-Z]+"/i },
|
|
|
|
# Meta tags
|
|
{ :regexp=>/<meta[^>]+name[\s]*=[\s]*("|')?(HandheldFriendly|MobileOptimized)("|')?[^>]*>/i },
|
|
|
|
# Apple handheld
|
|
{ :text=>'<meta name="apple-mobile-web-app-capable" content="yes" />', :string=>"Apple Handheld" },
|
|
|
|
# Apple iPhone
|
|
{ :text=>'<link rel="apple-touch-icon"', :string=>"Apple Handheld" },
|
|
|
|
# Mobile Safari
|
|
{ :regexp=>/<meta[^>]+name[\s]*=[\s]*("|')?viewport('|")?[^>]*>/i },
|
|
|
|
# CSS
|
|
{ :regexp=>/<style[\s]+(rel|type)[\s]*=[\s]*("|')?(stylesheet|text\/css)("|')?[\s]+media[\s]*=[^>]+>/i },
|
|
|
|
]
|
|
|
|
end
|
|
|