# frozen_string_literal: true ## # 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 ## WhatWeb::Plugin.define "WHMCS" do @author = "Brendan Coles " # 2011-08-25 @version = "0.1" @description = "WHMCS is an all-in-one client management, billing & support solution for online businesses." @website = "http://www.whmcs.com/" # Google results as at 2011-08-25 # # 595 for "Powered by WHMCompleteSolution" inurl:cart.php +Language # 163 for intitle:"WHMCS Complete Billing & Support System - Login" "Remember me until I logout" # 47 for intitle:"WHMCS Mobile Edition" +Home +Clients +Tickets +Orders +Activity +Logout +Version # Dorks # @dorks = [ '"Powered by WHMCompleteSolution" inurl:cart.php "Language"', 'intitle:"WHMCS Complete Billing & Support System - Login" "Remember me until I logout"' ] # Matches # @matches = [ # Powered by link { text: '

Powered by WHMCompleteSolution

' }, # Login Page # Powered by link { text: 'Powered by WHMCS' }, # Login + Register links HTML { text: '
Please Login or Register
' }, # Version Detection # Mobile Login Page # Footer { version: /Home<\/a> \| Clients<\/a> \| Tickets<\/a> \| Orders<\/a> \| Activity<\/a> \| Logout<\/a><\/td><\/tr>[\s]+[^,^\s]+, [^<]+
Version: ([^<^\s]+)<\/td><\/tr>/ }, # License Error Page # Change license key link { text: '

Got a new license key? Click here to enter it

' }, ] # An aggressive plugin could retrieve the version from ./mobile/login.php # end