# 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 "SARG" do @author = "Brendan Coles " # 2011-06-22 @version = "0.1" @description = "Squid Analysis Report Generator (SARG) is a tool that allow you to view where your users are going to on the Internet." @website = "http://sarg.sourceforge.net/sarg.php" # 195 for inurl:sarg inurl:siteuser.html ext:html # 59 for inurl:sarg inurl:siteuser.html ext:html "Squid User Access Report" # Dorks # @dorks = [ 'inurl:sarg inurl:siteuser.html ext:html' ] # Matches # @matches = [ # Title { text: "Squid User's Access Report" }, # Logo + Link HTML { text: ' ' }, { text: ' ' }, { text: 'Sarg Squid Analysis Report Generator' }, # Table Title { regexp: /Squid User Access Reports?<\/th><\/tr>/ }, # Version Detection # Generated by footer { version: /<(div|td) class="info">(Generated by|Gerado por)? ()?sarg-([^\s]+)/, offset: 3 }, ] end