1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
##
# 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
##
Plugin.define "X-Fire-Profile" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-02-10
version "0.1"
description "This plugin extracts a person's username, nickname, real name and system details from their X-Fire profile - homepage: http://xfire.com/"
# Google results as at 2011-02-09 #
# 238,000 for inurl:profile site:xfire.com
# Examples #
examples %w|
www.xfire.com/profile/troublegirl/
www.xfire.com/profile/toonoki/
www.xfire.com/profile/kayish/
www.xfire.com/profile/twipps/
www.xfire.com/profile/sexiangel0510/
www.xfire.com/profile/fantilswift/
www.xfire.com/profile/xxkittyreowxx/
www.xfire.com/profile/fluxie32/
www.xfire.com/profile/mizkitten/
www.xfire.com/profile/imzady79/
www.xfire.com/profile/le0nka/
|
# Matches #
matches [
# Meta Description
{ :text=>"<meta name='description' content='Gaming history, personal info, screenshots and more about " },
# Meta Keywords
{ :text=>"<meta name='keywords' content='gaming history, personal info, game hours, screenshots, " },
# System details
{ :string=>/<td><div class="gaming_rig_content">(.*)<\/div><\/td>/ },
# Username
{ :version=>/ <span class="profile_label">\n Username:\n <\/span>\n <span class="profile_data">\n <a href="\/profile\/[^\/]*\/">([^<]+)<\/a>\n <\/span>/ },
# Nickname
{ :version=>/ <span class="profile_label">\n Nickname:\n <\/span>\n <span class="profile_data">\n <a href="\/profile\/[^\/]*\/">([^<]+)<\/a>\n <\/span>/ },
# Real Name
{ :version=>/ <span class="profile_label">\n Real Name:\n <\/span>\n <span class="profile_data">\n ([^\r^\n]+)\n <\/span>/ },
]
end
|