Overview

URLhttp://mietfrage.de/
IP213.164.69.234
ASNAS13054 FreiNet GmbH
Location Germany
Report completed2012-11-13 19:39:53 CET
StatusLoading report..
urlQuery Alerts No alerts detected


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
Timestamp Source IP Destination IP Severity Alert
2012-11-13 19:39:16 195.159.219.10 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
2012-11-13 19:39:20 195.159.219.10 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
2012-11-13 19:39:20 195.159.219.10 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-13 19:39:13 urlQuery Client 212.1.54.212ssp_ssl: Invalid Client HELLO after Server HELLO Detected
2012-11-13 19:39:13 urlQuery Client 212.1.54.212ssp_ssl: Invalid Client HELLO after Server HELLO Detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 213.164.69.234

Date Alerts / IDS URL IP
2013-04-07 20:15:080 / 1http://stbplus-premium.de/213.164.69.234
2013-04-06 19:17:530 / 2http://officeline.info/213.164.69.234
2013-04-04 18:07:490 / 2http://mandantenpflege.de/213.164.69.234
2013-04-04 11:17:470 / 1http://buchhaltungs-praxis.de/213.164.69.234
2013-04-03 12:54:080 / 4http://direktmarketing.eu/213.164.69.234
2013-04-01 22:18:320 / 1http://wertermittlung-reform.de/213.164.69.234

Last 6 reports on ASN: AS13054 FreiNet GmbH

Date Alerts / IDS URL IP
2013-04-10 15:58:040 / 1http://haufe-sgb.eu/213.164.69.237
2013-04-07 20:15:080 / 1http://stbplus-premium.de/213.164.69.234
2013-04-06 19:17:530 / 2http://officeline.info/213.164.69.234
2013-04-06 13:09:000 / 1http://controllingoffice.de/213.164.69.237
2013-04-05 12:39:530 / 2http://bfhnv-online.de/213.164.69.237
2013-04-04 18:07:490 / 2http://mandantenpflege.de/213.164.69.234

Last 3 reports on domain: mietfrage.de

Date Alerts / IDS URL IP
2012-11-22 20:30:560 / 1http://mietfrage.de/213.164.69.234
2012-11-12 17:37:520 / 5http://mietfrage.de/213.164.69.234
2012-11-04 17:24:400 / 5http://mietfrage.de/213.164.69.234



JavaScript

Executed Scripts (64)


Executed Evals (1)

#1 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 (49)

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

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

 padding-bottom:25px;

#3 JavaScript::Write (size: 21, repeated: 1)

.contentAdContainer {

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

</div>

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

</div>

#6 JavaScript::Write (size: 12, repeated: 2)

</noscript>

#7 JavaScript::Write (size: 8, repeated: 1)

</style>

#8 JavaScript::Write (size: 258, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755693|0|170|AdId=7749322;BnId=3;itime=831957484;nodecode=yes;link=" target="_blank"><img src="https://aka-cdn.adtech.de/apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif" border="0" alt="" title=""></a>

#9 JavaScript::Write (size: 258, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755697|0|170|AdId=7749322;BnId=3;itime=831958301;nodecode=yes;link=" target="_blank"><img src="https://aka-cdn.adtech.de/apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif" border="0" alt="" title=""></a>

#10 JavaScript::Write (size: 258, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755739|0|170|AdId=7749322;BnId=3;itime=831957252;nodecode=yes;link=" target="_blank"><img src="https://aka-cdn.adtech.de/apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif" border="0" alt="" title=""></a>

#11 JavaScript::Write (size: 258, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755745|0|170|AdId=7749322;BnId=3;itime=831958018;nodecode=yes;link=" target="_blank"><img src="https://aka-cdn.adtech.de/apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif" border="0" alt="" title=""></a>

#12 JavaScript::Write (size: 317, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755751|0|170|AdId=8150653;BnId=1;itime=831956117;nodecode=yes;link=http://www.ista.de" target="_blank"><img src="https://aka-cdn.adtech.de/apps/125/Ad8150653St3Sz170Sq103134753V3Id1/ista_CAD_i-him_01112012.gif" HEIGHT="250" WIDTH="300"  border="0" alt=" " title=" "></a>

#13 JavaScript::Write (size: 208, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755755|0|225|AdId=8261672;BnId=2;itime=831954085;nodecode=yes;link=https://servedby.flashtalking.com/click/2/23301;442331;0;209;0/?url=2644106" target="_blank">

#14 JavaScript::Write (size: 258, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755759|0|170|AdId=7749322;BnId=3;itime=831957799;nodecode=yes;link=" target="_blank"><img src="https://aka-cdn.adtech.de/apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif" border="0" alt="" title=""></a>

#15 JavaScript::Write (size: 208, repeated: 1)

<a href="https://secserv.adtech.de/adlink|913|3755763|0|168|AdId=8261672;BnId=3;itime=831958842;nodecode=yes;link=https://servedby.flashtalking.com/click/2/23301;442332;0;209;0/?url=2644108" target="_blank">

#16 JavaScript::Write (size: 65, repeated: 1)

<div class="contentAdContainer" style="heigth:250px;width:300px">

#17 JavaScript::Write (size: 199, repeated: 1)

<div class="contentAdText" align="right" style="width:300px"><img src="https://aka-cdn.adtech.de/apps/125/Ad8150653St3Sz170Sq103134753V3Id1/anzeigeweiss.jpg" HEIGHT="9" WIDTH="48"  border="0"/></div>

#18 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755693" style="width:0px !important; height:0px !important;"><!-- --></div>

#19 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755697" style="width:0px !important; height:0px !important;"><!-- --></div>

#20 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755739" style="width:0px !important; height:0px !important;"><!-- --></div>

#21 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755745" style="width:0px !important; height:0px !important;"><!-- --></div>

#22 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755746" style="width:0px !important; height:0px !important;"><!-- --></div>

#23 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755751" style="width:0px !important; height:0px !important;"><!-- --></div>

#24 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755755" style="width:0px !important; height:0px !important;"><!-- --></div>

#25 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755759" style="width:0px !important; height:0px !important;"><!-- --></div>

#26 JavaScript::Write (size: 104, repeated: 1)

<div id="AdtechAdVisElement3755763" style="width:0px !important; height:0px !important;"><!-- --></div>

#27 JavaScript::Write (size: 1762, repeated: 1)

<div id="ftdiv442331" style="position:absolute; width:728px; height:90px;left:312px; top:1px; "><OBJECT type="application/x-shockwave-flash" data="http://cdn.flashtalking.com/xre/44/442331/393768/swf/4_C2_DAT_2_064_Image_728x90_Mittelstand.swf" ID="ftswf442331" width="728" height="90"><PARAM NAME=movie VALUE="http://cdn.flashtalking.com/xre/44/442331/393768/swf/4_C2_DAT_2_064_Image_728x90_Mittelstand.swf"/><PARAM NAME=FlashVars VALUE="clickTag=https%3A//secserv.adtech.de/adlink%7C913%7C3755755%7C0%7C225%7CAdId%3D8261672%3BBnId%3D2%3Bitime%3D831954085%3Bnodecode%3Dyes%3Blink%3Dhttp%3A//servedby.flashtalking.com/click/2/23301%3B442331%3B393768%3B211%3B0/%3Fg%3D1778C6204254EF%26random%3D795264818%26ft_width%3D728%26ft_height%3D90%26url%3Dhttp%3A//ad3.adfarm1.adition.com/redi%3Fsid%3D358181%26kid%3D368286%26bid%3D1347759&clickTag1=https%3A//secserv.adtech.de/adlink%7C913%7C3755755%7C0%7C225%7CAdId%3D8261672%3BBnId%3D2%3Bitime%3D831954085%3Bnodecode%3Dyes%3Blink%3Dhttp%3A//servedby.flashtalking.com/click/2/23301%3B442331%3B393768%3B211%3B0/%3Fg%3D1778C6204254EF%26random%3D795264818%26ft_width%3D728%26ft_height%3D90%26url%3Dhttp%3A//ad3.adfarm1.adition.com/redi%3Fsid%3D358181%26kid%3D368286%26bid%3D1347759&ftStreamMode=0&ftPL=undefined&ftLinkID=442331&ftLinkMode=0&ftServeDom=http%3A//cdn.flashtalking.com&ftMVT=false&ftStatBaseURL=http%3A//stat.flashtalking.com/reportV3/ft.stat%3F5974064-&ftSetFileSize=37.861328125&aID=1&ftPlacementID=442331&cID=18411&creativeID=393768&ftfuncid=442331&divID=ftdiv442331&ftSegment=&ftKeyword=&ftConfID=0&ftGUID=1778C6204254EF"/><PARAM NAME=quality VALUE="autohigh"/><PARAM NAME=wmode VALUE="transparent"/><PARAM NAME="allowScriptAccess" value="always"/><PARAM NAME="allowFullScreen" value="true"/></OBJECT></div>

#28 JavaScript::Write (size: 2110, repeated: 1)

<div id="ftdiv442332" style="position:absolute; width:160px; height:600px;left:0px; top:1px; "><OBJECT type="application/x-shockwave-flash" data="http://cdn.flashtalking.com/xre/44/442332/393767/swf/4_C2_DAT_2_064_Image_160x600_Mittelstand.swf" ID="ftswf442332" width="160" height="600"><PARAM NAME=movie VALUE="http://cdn.flashtalking.com/xre/44/442332/393767/swf/4_C2_DAT_2_064_Image_160x600_Mittelstand.swf"/><PARAM NAME=FlashVars VALUE="clickTag=https%3A//secserv.adtech.de/adlink%7C913%7C3755763%7C0%7C168%7CAdId%3D8261672%3BBnId%3D3%3Bitime%3D831958842%3Bnodecode%3Dyes%3Blink%3Dhttp%3A//servedby.flashtalking.com/click/2/23301%3B442332%3B393767%3B211%3B0/%3Fg%3D1778C6204254EF%26random%3D781943453%26ft_width%3D160%26ft_height%3D600%26url%3Dhttp%3A//ad3.adfarm1.adition.com/redi%3Fsid%3D358181%26kid%3D368286%26bid%3D1347759&clickTag2=https%3A//secserv.adtech.de/adlink%7C913%7C3755763%7C0%7C168%7CAdId%3D8261672%3BBnId%3D3%3Bitime%3D831958842%3Bnodecode%3Dyes%3Blink%3Dhttp%3A//servedby.flashtalking.com/click/2/23301%3B442332%3B393767%3B212%3B0/%3Fg%3D1778C6204254EF%26random%3D833138714%26ft_width%3D160%26ft_height%3D600%26url%3Dhttps%3A//www.facebook.com/dateveg&clickTag1=https%3A//secserv.adtech.de/adlink%7C913%7C3755763%7C0%7C168%7CAdId%3D8261672%3BBnId%3D3%3Bitime%3D831958842%3Bnodecode%3Dyes%3Blink%3Dhttp%3A//servedby.flashtalking.com/click/2/23301%3B442332%3B393767%3B211%3B0/%3Fg%3D1778C6204254EF%26random%3D781943453%26ft_width%3D160%26ft_height%3D600%26url%3Dhttp%3A//ad3.adfarm1.adition.com/redi%3Fsid%3D358181%26kid%3D368286%26bid%3D1347759&ftStreamMode=0&ftPL=undefined&ftLinkID=442331&ftLinkMode=0&ftServeDom=http%3A//cdn.flashtalking.com&ftMVT=false&ftStatBaseURL=http%3A//stat.flashtalking.com/reportV3/ft.stat%3F5974066-&ftSetFileSize=22.4052734375&aID=1&ftPlacementID=442332&cID=18411&creativeID=393767&ftfuncid=442332&divID=ftdiv442332&ftSegment=&ftKeyword=&ftConfID=0&ftGUID=1778C6204254EF"/><PARAM NAME=quality VALUE="autohigh"/><PARAM NAME=wmode VALUE="transparent"/><PARAM NAME="allowScriptAccess" value="always"/><PARAM NAME="allowFullScreen" value="true"/></OBJECT></div>

#29 JavaScript::Write (size: 222, repeated: 1)

<div style="display:none"><img src="https://servedby.flashtalking.com/imp/2/23301;442333;201;pixel;HaufeFachmediaNetwork;TrackingfuerHintergrundEF030MotivMittelstandpro/?cachebuster=831954085" width="1" height="1"/></div>

#30 JavaScript::Write (size: 38, repeated: 1)

<div style="height:91px;width:728px">

#31 JavaScript::Write (size: 166, repeated: 1)

<img border="0" src="https://servedby.flashtalking.com/imp/2/23301;442331;205;gif;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?"></a>

#32 JavaScript::Write (size: 166, repeated: 1)

<img border="0" src="https://servedby.flashtalking.com/imp/2/23301;442332;205;gif;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?"></a>

#33 JavaScript::Write (size: 11, repeated: 2)

<noscript>

#34 JavaScript::Write (size: 265, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=120x600;ADTECH;loc=100;alias=haufe.de/immobilien_sky;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958939"></script>

#35 JavaScript::Write (size: 263, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=1x1;ADTECH;loc=100;alias=haufe.de/immobilien_layer;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958846"></script>

#36 JavaScript::Write (size: 266, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad1;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958016"></script>

#37 JavaScript::Write (size: 266, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad2;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958414"></script>

#38 JavaScript::Write (size: 266, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad3;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958667"></script>

#39 JavaScript::Write (size: 266, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad4;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958766"></script>

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

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_wide-cad1;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831956715"></script>

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

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_wide-cad2;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958490"></script>

#42 JavaScript::Write (size: 268, repeated: 1)

<script language="javascript1.1" src="https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=728x90;ADTECH;loc=100;alias=haufe.de/immobilien_bigsize;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831954857"></script>

#43 JavaScript::Write (size: 434, repeated: 1)

<script language="javascript1.1" type="text/javascript" src="https://servedby.flashtalking.com/imp/2/23301;442331;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755755|0|225|AdId=8261672;BnId=2;itime=831954085;nodecode=yes;link=&ftx=312&fty=1&ftadz=&ftscw=&ft_custom=&cachebuster=202389.0347730316" id="ftscript_728x90" name="ftscript_728x90""></script>

#44 JavaScript::Write (size: 433, repeated: 1)

<script language="javascript1.1" type="text/javascript" src="https://servedby.flashtalking.com/imp/2/23301;442332;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755763|0|168|AdId=8261672;BnId=3;itime=831958842;nodecode=yes;link=&ftx=&fty=1&ftadz=&ftscw=&ft_custom=&cachebuster=460929.4065066521" id="ftscript_160x600" name="ftscript_160x600""></script>

#45 JavaScript::Write (size: 242, repeated: 1)

<script language='Javascript' src='https://adserverams.adtech.de/adperf|2.0|913|3755755|0|225|AdId=8261672;BnId=2;ct=3156526566;st=1072;ku=0;ccid=20;scid=9558;iid=84;zcid=0;subnid=1;camnid=913;camsubnid=1;bnnr=103259617;ctlen=5656;'></script>

#46 JavaScript::Write (size: 144, repeated: 1)

<script src="https://secure.flashtalking.com/xre/44/442331/393768/js/j-442331-393768.js" id="ftscript_m442331" name="ftscript_m442331"></script>

#47 JavaScript::Write (size: 144, repeated: 1)

<script src="https://secure.flashtalking.com/xre/44/442332/393767/js/j-442332-393767.js" id="ftscript_m442332" name="ftscript_m442332"></script>

#48 JavaScript::Write (size: 7, repeated: 1)

<style>

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

}


HTTP Transactions (137)


Request Response
GET / HTTP/1.1

Host: mietfrage.de

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 302 Found

Content-Type: text/html; charset=iso-8859-1
Date: Tue, 13 Nov 2012 18:39:12 GMT
Server: Apache
Location: http://www.haufe.de/immobilien/
Content-Length: 215
Connection: close
GET /immobilien/ HTTP/1.1

Host: www.haufe.de

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 302 Moved Temporarily

Content-Type: text/plain
Date: Tue, 13 Nov 2012 18:39:12 GMT
Server: Apache-Coyote/1.1
Location: https://login.haufe-lexware.com:443/auth/SSORedirect/metaAlias/idp?SAMLRequest=nVRLj9owEL7vr4h8h7xoAQuQKKgq0rabEtpDb4MzWSw5dupxgP77OoFSqi4cuI7H33yPsScElar5vHE7vcafDZILgmOlNPHuZMoaq7kBksQ1VEjcCZ7PPz%2FzpB%2Fx2hpnhFHsabWcMkqSMhkXW1EO3ifRKIFoMByPhum7pBBlst0CDjEtIdqOWfAdLUmjp8zDsGBF1OBKkwPtfCmKk14c9%2BJ0E494OuZx8oMFS09NanDdrZ1zNfEwVOZV6v4OmhJ7Co8HsNgXpuKDQRqC1xTm%2BcsaC2lRuLBCB3MlgUJZ1Cz4aKzATviUlaAIWx4ZEMk9TpmzjS9kZ4EfpC6kfr3vxvbURPzTZpP1spd8w4I5EdqW88Joaiq0Odq9FPht%2FfxXxeFwOGnoFxgKwBBu3GKzp0kbC%2B8Ms1dB3Wd2wWOzWzMn4RXweUzNv3io1TIzSopfj%2BxFa3IF7n53W5FFr%2BxaubOgSaJ2LMizdv7XBpQsJdrbhnmflTKHhUVwf7KbnRT9q%2BEi7LzrWHQL4G12eHSPCFyYqgYrqd1KPIJwfnDn5DXwQvkE1lg%2BEtjdNsFFC%2B3LmcW9NA3lSO3DOsf5FomLMW964B0K%2F%2F8TZr8B&amp;RelayState=s22f29dbcf462082a047987352dcf2bbae7e3fa0b9
Cache-Control: private
Age: 0
Via: 1.1 varnish
Set-Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker; Path=/; HttpOnly
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 20
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
POST / HTTP/1.1

Host: ocsp.thawte.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Mon, 12 Nov 2012 19:12:51 GMT
Expires: Mon, 19 Nov 2012 19:12:51 GMT
Content-Transfer-Encoding: binary
Content-Length: 1165
Cache-Control: max-age=520418, public, no-transform, must-revalidate
Date: Tue, 13 Nov 2012 18:39:13 GMT
nncoection: close
Connection: Keep-Alive
GET /auth/SSORedirect/metaAlias/idp?SAMLRequest=nVRLj9owEL7vr4h8h7xoAQuQKKgq0rabEtpDb4MzWSw5dupxgP77OoFSqi4cuI7H33yPsScElar5vHE7vcafDZILgmOlNPHuZMoaq7kBksQ1VEjcCZ7PPz%2FzpB%2Fx2hpnhFHsabWcMkqSMhkXW1EO3ifRKIFoMByPhum7pBBlst0CDjEtIdqOWfAdLUmjp8zDsGBF1OBKkwPtfCmKk14c9%2BJ0E494OuZx8oMFS09NanDdrZ1zNfEwVOZV6v4OmhJ7Co8HsNgXpuKDQRqC1xTm%2BcsaC2lRuLBCB3MlgUJZ1Cz4aKzATviUlaAIWx4ZEMk9TpmzjS9kZ4EfpC6kfr3vxvbURPzTZpP1spd8w4I5EdqW88Joaiq0Odq9FPht%2FfxXxeFwOGnoFxgKwBBu3GKzp0kbC%2B8Ms1dB3Wd2wWOzWzMn4RXweUzNv3io1TIzSopfj%2BxFa3IF7n53W5FFr%2BxaubOgSaJ2LMizdv7XBpQsJdrbhnmflTKHhUVwf7KbnRT9q%2BEi7LzrWHQL4G12eHSPCFyYqgYrqd1KPIJwfnDn5DXwQvkE1lg%2BEtjdNsFFC%2B3LmcW9NA3lSO3DOsf5FomLMW964B0K%2F%2F8TZr8B&RelayState=s22f29dbcf462082a047987352dcf2bbae7e3fa0b9 HTTP/1.1

Host: login.haufe-lexware.com
GET /auth/SSORedirect/metaAlias/idp?SAMLRequest=nVRLj9owEL7vr4h8h7xoAQuQKKgq0rabEtpDb4MzWSw5dupxgP77OoFSqi4cuI7H33yPsScElar5vHE7vcafDZILgmOlNPHuZMoaq7kBksQ1VEjcCZ7PPz%2FzpB%2Fx2hpnhFHsabWcMkqSMhkXW1EO3ifRKIFoMByPhum7pBBlst0CDjEtIdqOWfAdLUmjp8zDsGBF1OBKkwPtfCmKk14c9%2BJ0E494OuZx8oMFS09NanDdrZ1zNfEwVOZV6v4OmhJ7Co8HsNgXpuKDQRqC1xTm%2BcsaC2lRuLBCB3MlgUJZ1Cz4aKzATviUlaAIWx4ZEMk9TpmzjS9kZ4EfpC6kfr3vxvbURPzTZpP1spd8w4I5EdqW88Joaiq0Odq9FPht%2FfxXxeFwOGnoFxgKwBBu3GKzp0kbC%2B8Ms1dB3Wd2wWOzWzMn4RXweUzNv3io1TIzSopfj%2BxFa3IF7n53W5FFr%2BxaubOgSaJ2LMizdv7XBpQsJdrbhnmflTKHhUVwf7KbnRT9q%2BEi7LzrWHQL4G12eHSPCFyYqgYrqd1KPIJwfnDn5DXwQvkE1lg%2BEtjdNsFFC%2B3LmcW9NA3lSO3DOsf5FomLMW964B0K%2F%2F8TZr8B&amp;RelayState=s22f29dbcf462082a047987352dcf2bbae7e3fa0b9 HTTP/1.1

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
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=B74CDB45ADD64C1542018C5CEE6A2FEA; Path=/auth amlbcookie=02; Path=/ BIGipServerPOOL-atlantik-SSO-ServerGroup-1=2803804352.20480.0000; path=/
Pragma: no-cache
Cache-Control: no-cache,no-store
Content-Length: 1443
Date: Tue, 13 Nov 2012 18:39:13 GMT
GET /favicon.ico HTTP/1.1

Host: login.haufe-lexware.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
Cookie: amlbcookie=02; BIGipServerPOOL-atlantik-SSO-ServerGroup-1=2803804352.20480.0000
HTTP/1.1 200 OK

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
Etag: W/&quot;1150-1342535300000&quot;
Last-Modified: Tue, 17 Jul 2012 14:28:20 GMT
Content-Length: 1150
Date: Tue, 13 Nov 2012 18:39:13 GMT
POST / HTTP/1.1

Host: ocsp.thawte.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Sun, 11 Nov 2012 01:27:24 GMT
Expires: Sun, 18 Nov 2012 01:27:24 GMT
Content-Transfer-Encoding: binary
Content-Length: 1165
Cache-Control: max-age=370091, public, no-transform, must-revalidate
Date: Tue, 13 Nov 2012 18:39:13 GMT
nncoection: close
Connection: Keep-Alive
GET /immobilien/?checkPermLogin=true HTTP/1.1

Host: www.haufe.de

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: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Location: https://login.haufe-lexware.com:443/auth/UI/Login?service=hmgPermanentLogin&amp;goto=https://www.haufe.de:443/immobilien/?ssoCheck%3Dtrue&amp;gotoOnFail=http://www.haufe.de:80/immobilien/
Age: 0
Via: 1.1 varnish
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 20
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /auth/UI/Login?service=hmgPermanentLogin&goto=https://www.haufe.de:443/immobilien/?ssoCheck%3Dtrue&gotoOnFail=http://www.haufe.de:80/immobilien/ HTTP/1.1

Host: login.haufe-lexware.com
GET /auth/UI/Login?service=hmgPermanentLogin&amp;goto=https://www.haufe.de:443/immobilien/?ssoCheck%3Dtrue&amp;gotoOnFail=http://www.haufe.de:80/immobilien/ HTTP/1.1

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: JSESSIONID=B74CDB45ADD64C1542018C5CEE6A2FEA; amlbcookie=02; BIGipServerPOOL-atlantik-SSO-ServerGroup-1=2803804352.20480.0000
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
Cache-Control: private
Pragma: no-cache
Expires: 0
X-DSAMEVersion: 9.5.4 Build 1516 (2011-December-07 09:55)
AM_CLIENT_TYPE: genericHTML
Set-Cookie: AMAuthCookie=AQIC5wM2LY4SfcyHjacQaj7Tls-XTTJLuiH3N00rL9Ozn9Y.*AAJTSQACMDMAAlNLAAk2NzE1NzgxMjEAAlMxAAIwMg..*; Path=/ amlbcookie=02; Path=/ AMAuthCookie=LOGOUT; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
X-AuthErrorCode: -1
Location: http://www.haufe.de:80/immobilien/
Content-Length: 0
Date: Tue, 13 Nov 2012 18:39:14 GMT
GET /immobilien/ HTTP/1.1

Host: www.haufe.de

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: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: text/html;charset=UTF-8
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 16891
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /style/20_1.css HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: text/css;charset=ISO-8859-1
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 156
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /statics/1.00.00.0080/images/favicon.ico HTTP/1.1

Host: www.haufe.de

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: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/x-icon
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;1367-1351864246000&quot;
Last-Modified: Fri, 02 Nov 2012 13:50:46 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 522
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/initial.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;2966-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1284
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
POST / HTTP/1.1

Host: ocsp.digicert.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Tue, 13 Nov 2012 18:39:14 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Tue, 13 Nov 2012 16:28:08 GMT
Expires: Mon, 19 Nov 2012 16:28:08 GMT
Cache-Control: max-age=511211
Accept-Ranges: bytes
GET /statics/1.00.00.0080/css/core/styles.css HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;112769-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Content-Length: 112769
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
POST / HTTP/1.1

Host: ocsp.digicert.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Tue, 13 Nov 2012 18:39:14 GMT
Connection: close
Content-Length: 471
Last-Modified: Tue, 13 Nov 2012 16:36:12 GMT
Expires: Mon, 19 Nov 2012 16:36:12 GMT
Cache-Control: max-age=511697
Accept-Ranges: bytes
GET /statics/1.00.00.0080/images/logo-print.gif HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;398-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 398
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /rkn4bnh.js HTTP/1.1

Host: use.typekit.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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=600
Date: Tue, 13 Nov 2012 18:39:14 GMT
Last-Modified: Tue, 13 Nov 2012 18:29:31 GMT
Server: ECS (arn/46F0)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 8879
GET /image/setzling-in-hand-121420-medium-1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 15 Jun 2012 14:37:41 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 1906
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /image/wohnblock-mit-solaranlage-auf-dem-dach-96126-medium-1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Mon, 30 Apr 2012 13:36:28 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 2523
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /image/eingang-der-stiftung-warentest-am-luetzowplatz-in-berlin-mit-markenlogos-test-finanztest-und-testde-139432-large-1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Tue, 25 Sep 2012 16:14:47 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 13961
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /image/boerse-frankfurt-141088-medium-1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Mon, 08 Oct 2012 12:17:56 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 3285
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/LAB.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;5700-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 2341
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/jHG-diagnostics.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;14694-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 4115
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /image/logo/94824_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:01:55 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 1999
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /image/hitze-im-buero-95936-medium-2.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Wed, 09 May 2012 12:43:57 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 2064
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /p.gif?s=1&k=rkn4bnh&ht=tk&h=www.haufe.de&f=5383.5384&a=166173&_=1352831954853 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=rkn4bnh&amp;ht=tk&amp;h=www.haufe.de&amp;f=5383.5384&amp;a=166173&amp;_=1352831954853 HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Tue, 13 Nov 2012 18:39:14 GMT
Expires: Tue, 20 Nov 2012 18:39:14 GMT
Last-Modified: Tue, 31 Jul 2012 23:02:41 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /image/logo/94882_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:12:29 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 1915
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /image/logo/94830_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:04:10 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 2228
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /image/logo/94836_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:06:32 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 2026
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /image/logo/94858_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:08:08 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 2685
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /k/rkn4bnh-d.css?3bb2a6e53c9684ffdc9a98f61d5b2a62bd59f5a383719fc7e105e64c41e9de0fde0cb38f97a05f3cfc7effa490e43123a0bf7105ffd4e0d4f4cc29ca98bc49bffc861f2387e1a4c52250b4f300e9f7db9516279a35f45ccec062e0a712d2f60dc0f35fab3da793abce282f0bed377306b51fc6e193b0b6aa691e09596cf80100d4b105cfd0f73711f8ac9b461880cbf8db7df4895848fa8c7a588fc82b1e9a8ac2331445f390629b299e6d5b5b6e7f0a1309354d4c5bd38d7fffdf8dcd8d22529197f8323e7df6429217c688684cbc HTTP/1.1

Host: use.typekit.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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: text/css;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=604800
Date: Tue, 13 Nov 2012 18:39:14 GMT
Last-Modified: Fri, 09 Nov 2012 07:47:44 GMT
Server: ECS (arn/46E4)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 37328
GET /image/logo/94868_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Fri, 27 Apr 2012 12:09:50 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 19079
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /image/logo/112996_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Last-Modified: Thu, 03 May 2012 13:01:29 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 11992
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /statics/1.00.00.0080/images/newsletter_50.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:14 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;2461-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 2461
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /image/lupe-83586-small-2.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Apache-Coyote/1.1
Last-Modified: Tue, 17 Apr 2012 14:27:08 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 1088
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /image/logo/112966_1.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Apache-Coyote/1.1
Last-Modified: Thu, 03 May 2012 12:56:12 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 1750
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /image/online-training-plus-symbol-119562-small-2.jpg HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Apache-Coyote/1.1
Last-Modified: Wed, 20 Jun 2012 09:18:44 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 14554
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
POST / HTTP/1.1

Host: ocsp.thawte.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Tue, 13 Nov 2012 09:28:08 GMT
Expires: Tue, 20 Nov 2012 09:28:08 GMT
Content-Transfer-Encoding: binary
Content-Length: 1165
Cache-Control: max-age=571733, public, no-transform, must-revalidate
Date: Tue, 13 Nov 2012 18:39:15 GMT
nncoection: close
Connection: Keep-Alive
GET /addyn|3.0|913.1|1915950|0|-1|size=728x90;ADTECH;loc=100;alias=haufe.de/immobilien_bigsize;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831954857 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
HTTP/1.0 302 Moved Temporarily

HTTP/1.0 302 Moved Temporarily
Connection: keep-alive
P3P: CP=&quot;NOI DSP DEVa OUR BUS UNI COM NAV INT&quot;
Cache-Control: no-cache
Location: https://secserv.adtech.de/addyn|3.0|913.1|1915950|0|-1|size=728x90;cfp=1;rndc=1352831954;ADTECH;loc=100;alias=haufe.de/immobilien_bigsize;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831954857
Content-Length: 0
Set-Cookie: CfP=1;domain=adtech.de;path=/
GET /addyn|3.0|913.1|1915950|0|-1|size=728x90;cfp=1;rndc=1352831954;ADTECH;loc=100;alias=haufe.de/immobilien_bigsize;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831954857 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
P3P: CP=&quot;NOI DSP DEVa OUR BUS UNI COM NAV INT&quot;
Content-Length: 2376
Set-Cookie: JEB2=50A28AC76E651A59CA630343F010C5DF;expires=Thu, 13 Nov 2014 18:39:14 GMT;domain=adtech.de;path=/
POST / HTTP/1.1

Host: ocsp.comodoca.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Apache
Last-Modified: Tue, 13 Nov 2012 12:19:02 GMT
Expires: Sat, 17 Nov 2012 12:19:02 GMT
Etag: D3B829A8676D7298FD2FE3051969D36813C04B5E
Cache-Control: max-age=322186,public,no-transform,must-revalidate
X-OCSP-Reponder-ID: h6edcaocsp2
Content-Length: 471
Connection: close
POST / HTTP/1.1

Host: ocsp.usertrust.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
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Apache
Last-Modified: Tue, 13 Nov 2012 16:33:14 GMT
Expires: Sat, 17 Nov 2012 16:33:14 GMT
Etag: A56329F76C9BEE4E41C16955FDF1A65AB37D0C6A
Cache-Control: max-age=337438,public,no-transform,must-revalidate
X-OCSP-Reponder-ID: h6edcaocsp5
Content-Length: 471
Connection: close
GET /media/advisibility/AdtechAdVisibility_v_1_1.js HTTP/1.1

Host: aka-cdn.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache
Last-Modified: Wed, 10 Oct 2012 09:50:15 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=28800
Expires: Wed, 14 Nov 2012 02:39:15 GMT
Date: Tue, 13 Nov 2012 18:39:15 GMT
Content-Length: 5140
Connection: keep-alive
GET /imp/2/23301;442333;201;pixel;HaufeFachmediaNetwork;TrackingfuerHintergrundEF030MotivMittelstandpro/?cachebuster=831954085 HTTP/1.1

Host: servedby.flashtalking.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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Jetty(6.1.22)
Set-Cookie: flashtalkingad1=&quot;GUID=177877581045A4&quot;;Path=/;Domain=flashtalking.com;Expires=Thu, 13-Nov-14 18:39:15 GMT
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Cache-Control: no-cache, no-store
X-Powered-By: Mirror Image Internet Inc.
Pragma: no-cache
Content-Length: 42
Via: 1.1 lhr061006 (MII-APC/2.2)
Keep-Alive: timeout=2
Connection: Keep-Alive
GET /imp/2/23301;442331;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755755|0|225|AdId=8261672;BnId=2;itime=831954085;nodecode=yes;link=&ftx=312&fty=1&ftadz=&ftscw=&ft_custom=&cachebuster=202389.0347730316 HTTP/1.1

Host: servedby.flashtalking.com
GET /imp/2/23301;442331;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755755|0|225|AdId=8261672;BnId=2;itime=831954085;nodecode=yes;link=&amp;ftx=312&amp;fty=1&amp;ftadz=&amp;ftscw=&amp;ft_custom=&amp;cachebuster=202389.0347730316 HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Tue, 13 Nov 2012 18:39:15 GMT
Server: Jetty(6.1.22)
Set-Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;;Path=/;Domain=flashtalking.com;Expires=Thu, 13-Nov-14 18:39:15 GMT
Content-Length: 711
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Cache-Control: no-cache, no-store
Pragma: no-cache
Via: 1.1 lhr061006 (MII-APC/2.2)
Keep-Alive: timeout=2
Connection: Keep-Alive
GET /custrmevent/3.0/913.1/3755755/0/225/AdId=8261672;CreativeId=0;BnId=2;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /xre/44/442331/393768/js/j-442331-393768.js HTTP/1.1

Host: secure.flashtalking.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://www.haufe.de/immobilien/
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Tue, 13 Nov 2012 16:01:38 GMT
Server: AmazonS3
Content-Encoding: gzip
x-amz-id-2: P41j4UsbrqQSK/cAjA8pdjCadH4g3Wt5jpqeRWhJogZ6WluXbTOGjZoAPq1OhFOR
x-amz-request-id: 709CB82E84EA66F8
Last-Modified: Fri, 26 Oct 2012 15:57:14 GMT
Etag: &quot;a735fc17a1b1d4286044a364a026bb90&quot;
Age: 9459
Via: 1.1 cdg105101 (MII-APC/2.1), 1.1 cdg105102 (MII-APC/2.1), 1.1 cdg105100 (MII-APC/2.1), 1.1 cdg042179 (MII-APC/2.1)
Expires: Tue, 13 Nov 2012 19:24:30 GMT
Cache-Control: max-age=12173
X-Pb-Mii: Powered by Mirror Image Internet.
x-mii-cache-hit: 1
Content-Length: 4735
Keep-Alive: timeout=10
Connection: Keep-Alive
GET /adperf|2.0|913|3755755|0|225|AdId=8261672;BnId=2;ct=3156526566;st=1072;ku=0;ccid=20;scid=9558;iid=84;zcid=0;subnid=1;camnid=913;camsubnid=1;bnnr=103259617;ctlen=5656; HTTP/1.1

Host: adserverams.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 204 No Content

HTTP/1.0 204 No Content
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /banner?sid=358181&kid=368286&bid=1347759&wpt=C&ts=?908766175 HTTP/1.1

Host: ad3.adfarm1.adition.com
GET /banner?sid=358181&amp;kid=368286&amp;bid=1347759&amp;wpt=C&amp;ts=?908766175 HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 302 Found

Content-Type: text/plain
Server: nginx/0.7.67
Date: Tue, 13 Nov 2012 18:39:16 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Location: https://ad3.adfarm1.adition.com:443/banner?co=1&amp;bid=1347759&amp;kid=368286&amp;sid=358181&amp;ts=%3F908766175&amp;wpt=C&amp;clickurl=
P3P: policyref=&quot;http://imagesrv.adition.com/w3c/p3p.xml&quot;,CP=&quot;NON DSP ADM DEV PSD IVDo OTPi OUR IND STP PHY PRE NAV UNI&quot;
Set-Cookie: UserID1=5810369008014262592; expires=Sun, 12-May-2013 20:39:15 GMT; path=/; domain=.adfarm1.adition.com
GET /statics/1.00.00.0080/css/images/bg-header.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;725-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 725
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/bg-searchbox.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;7182-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 7182
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_wide-cad1;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831956715 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 3032
GET /statics/1.00.00.0080/css/images/icn-search.gif HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;185-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 185
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/bg-nav.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;752-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 752
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /xre/44/442331/393768/swf/4_C2_DAT_2_064_Image_728x90_Mittelstand.swf HTTP/1.1

Host: cdn.flashtalking.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://www.haufe.de/immobilien/
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
x-amz-id-2: Om6rXQoZyYHuLR7RJoZOd6GwRWG9kUqA0nLrbh35L6m1YAVRloQoPmZswB2GTCE1
x-amz-request-id: 2CCBEF2A04BCC234
Last-Modified: Mon, 22 Oct 2012 11:59:52 GMT
Etag: &quot;0d51e809790eb13f5feabba65a3b6e8c&quot;
Content-Length: 38770
Server: AmazonS3
Date: Tue, 13 Nov 2012 18:39:16 GMT
Connection: keep-alive
GET /statics/1.00.00.0080/css/images/bg-nav-active.gif HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;499-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 499
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/sprite-icn-right.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;4403-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 4403
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/bg-separator-topnav.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;236-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 236
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/divider-horizontal.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;2904-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 2904
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/sprite-icn.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:16 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;28508-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 28508
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /banner?co=1&bid=1347759&kid=368286&sid=358181&ts=%3F908766175&wpt=C&clickurl= HTTP/1.1

Host: ad3.adfarm1.adition.com
GET /banner?co=1&amp;bid=1347759&amp;kid=368286&amp;sid=358181&amp;ts=%3F908766175&amp;wpt=C&amp;clickurl= HTTP/1.1

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://www.haufe.de/immobilien/
Cookie: UserID1=5810369008014262592
HTTP/1.1 302 Found

Content-Type: text/plain
Server: nginx/0.7.67
Date: Tue, 13 Nov 2012 18:39:16 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Cache-Control: no-cache
Etag: 5810369008017080640
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Location: https://imagesrv.adition.com/1x1.gif
P3P: policyref=&quot;http://imagesrv.adition.com/w3c/p3p.xml&quot;,CP=&quot;NON DSP ADM DEV PSD IVDo OTPi OUR IND STP PHY PRE NAV UNI&quot;
Pragma: no-cache
Set-Cookie: UserID1=5810369008014262592; expires=Sun, 12-May-2013 20:39:16 GMT; path=/; domain=.adfarm1.adition.com cc=; expires=Sat, 01-Jan-2000 00:00:00 GMT; path=/ fc4=10140; expires=Sun, 12-May-2013 20:39:16 GMT; path=/
GET /apps/125/Ad8150653St3Sz170Sq103134753V3Id1/anzeigeweiss.jpg HTTP/1.1

Host: aka-cdn.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: Apache
Last-Modified: Mon, 05 Nov 2012 08:45:59 GMT
Content-Length: 8055
Cache-Control: max-age=209214
Expires: Fri, 16 Nov 2012 04:46:11 GMT
Date: Tue, 13 Nov 2012 18:39:17 GMT
Connection: keep-alive
GET /custrmevent/3.0/913.1/3755751/0/170/AdId=8150653;CreativeId=0;BnId=1;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /apps/125/Ad8150653St3Sz170Sq103134753V3Id1/ista_CAD_i-him_01112012.gif HTTP/1.1

Host: aka-cdn.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
Last-Modified: Mon, 05 Nov 2012 08:45:59 GMT
Content-Length: 43922
Cache-Control: max-age=209213
Expires: Fri, 16 Nov 2012 04:46:11 GMT
Date: Tue, 13 Nov 2012 18:39:18 GMT
Connection: keep-alive
GET /custrmevent/3.0/913.1/3755755/0/225/AdId=8261672;CreativeId=0;BnId=2;EventIds=997;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /1x1.gif HTTP/1.1

Host: imagesrv.adition.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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Etag: &quot;4251594658&quot;
Last-Modified: Fri, 24 Jul 2009 13:46:10 GMT
Content-Length: 68
Date: Tue, 13 Nov 2012 18:39:18 GMT
Server: lighttpd/1.4.19
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.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/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Tue, 13 Nov 2012 18:39:18 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974064-0-1-0-1778C6204254EF-3039161595 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:18 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:18 GMT
Connection: keep-alive
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad1;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958016 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 2123
GET /apps/202/Ad7749322St3Sz170Sq102645305V1Id3/ein-pixel.gif HTTP/1.1

Host: aka-cdn.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
Last-Modified: Tue, 03 Jul 2012 08:29:06 GMT
Content-Length: 43
Cache-Control: max-age=295977
Expires: Sat, 17 Nov 2012 04:52:15 GMT
Date: Tue, 13 Nov 2012 18:39:18 GMT
Connection: keep-alive
X-N: S
GET /custrmevent/3.0/913.1/3755759/0/170/AdId=7749322;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad2;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958414 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 2123
GET /custrmevent/3.0/913.1/3755739/0/170/AdId=7749322;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_wide-cad2;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958490 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 2122
GET /custrmevent/3.0/913.1/3755693/0/170/AdId=7749322;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad3;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958667 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 2122
GET /custrmevent/3.0/913.1/3755745/0/170/AdId=7749322;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /addyn|3.0|913.1|1915950|0|-1|size=300x250;ADTECH;loc=100;alias=haufe.de/immobilien_cad4;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958766 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 2123
GET /custrmevent/3.0/913.1/3755697/0/170/AdId=7749322;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /statics/1.00.00.0080/css/images/bg-footer.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:18 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;803-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 803
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /addyn|3.0|913.1|1915950|0|-1|size=1x1;ADTECH;loc=100;alias=haufe.de/immobilien_layer;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958846 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 1947
GET /style/sprite/18_2.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/style/20_1.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:18 GMT
Server: Apache-Coyote/1.1
Last-Modified: Tue, 22 May 2012 17:11:26 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Language: de
Content-Length: 12766
Via: 1.1 varnish
Age: 0
Expires: -1
Pragma: no-cache
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /custrmevent/3.0/913.1/3755746/0/16/AdId=6623103;CreativeId=0;BnId=11;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /addyn|3.0|913.1|1915950|0|-1|size=120x600;ADTECH;loc=100;alias=haufe.de/immobilien_sky;kvschlagwort=;kvinteresse=;kvthema=Immobilien;kvdokumententyp=;target=_blank;grp=248;misc=1352831958939 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Connection: keep-alive
Content-Encoding: gzip
Server: Adtech Adserver
Cache-Control: no-cache
Content-Length: 1938
GET /custrmevent/3.0/913.1/3755763/0/168/AdId=8261672;CreativeId=0;BnId=3;EventIds=996;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /imp/2/23301;442332;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755763|0|168|AdId=8261672;BnId=3;itime=831958842;nodecode=yes;link=&ftx=&fty=1&ftadz=&ftscw=&ft_custom=&cachebuster=460929.4065066521 HTTP/1.1

Host: servedby.flashtalking.com
GET /imp/2/23301;442332;201;js;HaufeFachmediaNetwork;RotationMotivMittelstandproWallpaper728x90u160x600030/?click=https://secserv.adtech.de/adlink|913|3755763|0|168|AdId=8261672;BnId=3;itime=831958842;nodecode=yes;link=&amp;ftx=&amp;fty=1&amp;ftadz=&amp;ftscw=&amp;ft_custom=&amp;cachebuster=460929.4065066521 HTTP/1.1

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://www.haufe.de/immobilien/
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Jetty(6.1.22)
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Cache-Control: no-cache, no-store
Pragma: no-cache
Content-Length: 708
Via: 1.1 lhr061006 (MII-APC/2.2)
Keep-Alive: timeout=2
Connection: Keep-Alive
GET /custrmevent/3.0/913.1/3755751/0/170/AdId=8150653;CreativeId=0;BnId=1;EventIds=997;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /xre/44/442332/393767/js/j-442332-393767.js HTTP/1.1

Host: secure.flashtalking.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://www.haufe.de/immobilien/
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Tue, 13 Nov 2012 16:32:58 GMT
Server: AmazonS3
Content-Encoding: gzip
x-amz-id-2: zPS/jUYvX+rBt9DONRbKT7E3TZ/NH6vbFO/0XxX8Y6rGt9X/BTeBZw1llwDgz/n1
x-amz-request-id: 1B4BC590EFE2ADD8
Last-Modified: Fri, 26 Oct 2012 15:57:14 GMT
Etag: &quot;f18f4005424f9ddfc9d59f7d4c422b89&quot;
Age: 7582
Via: 1.1 cdg105101 (MII-APC/2.1), 1.1 cdg105102 (MII-APC/2.1), 1.1 cdg042179 (MII-APC/2.1)
Expires: Tue, 13 Nov 2012 18:57:27 GMT
Cache-Control: max-age=8669
X-Pb-Mii: Powered by Mirror Image Internet.
x-mii-cache-hit: 1
Content-Length: 4746
Keep-Alive: timeout=10
Connection: Keep-Alive
GET /xre/44/442332/393767/swf/4_C2_DAT_2_064_Image_160x600_Mittelstand.swf HTTP/1.1

Host: cdn.flashtalking.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://www.haufe.de/immobilien/
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
x-amz-id-2: 93nVOTDep1jFHRwWVQRXcVErDLrSWaJIVrQLJU9WjNVMO+LR3s//ZF6bypVVjx2N
x-amz-request-id: D6E6B752F1286F10
Last-Modified: Fri, 26 Oct 2012 15:24:15 GMT
Etag: &quot;484530381de5f715562dc09dc81eb02e&quot;
Content-Length: 22943
Server: AmazonS3
Date: Tue, 13 Nov 2012 18:39:19 GMT
Connection: keep-alive
GET /statics/1.00.00.0080/js/piwik2.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;8774-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 3815
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/emos2.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;24237-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /statics/1.00.00.0080/js/src/vendor/jquery.ui.widget.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;3309-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1347
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.easing.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;3207-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1142
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.mousewheel.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;1420-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 728
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.turnInto.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;823-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 386
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.smoothDivScroll.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;14121-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 2442
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/jquery.fixMousewheel.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;239-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 177
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.jscrollpane.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;14841-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 4720
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /cgi-bin/ivw/CP/immobilien;haufe.de_immobilien%2Cimmobilien?r=&d=19128.315423340293 HTTP/1.1

Host: haperson.ivwbox.de
GET /cgi-bin/ivw/CP/immobilien;haufe.de_immobilien%2Cimmobilien?r=&amp;d=19128.315423340293 HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 302 FOUND

Content-Type: text/plain
Server: nginx/1.2.4
Date: Tue, 13 Nov 2012 18:39:19 GMT
Content-Length: 1
Connection: keep-alive
Last-Modified: Tue, 22 Aug 2000 15:05:01 GMT
Pragma: no-cache
Cache-Control: no-cache, must-revalidate
Expires: Tue, 22 Aug 2000 15:05:01 GMT
P3P: policyref=&quot;http://www.ivwbox.de/p3p.xml&quot;, CP=&quot;NOI DSP PSAo OUR NOR UNI&quot;
Set-Cookie: srp=015450a293cbe82d0007; path=/
Location: /blank.gif
GET /reportV3/ft.stat?5974066-0-1-0-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:19 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:19 GMT
Connection: keep-alive
GET /statics/1.00.00.0080/js/src/vendor/swfobject.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;10878-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 4094
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/jquery.inlineLabel.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;559-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 280
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.sb.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;11177-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 3757
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/jquery.socialshareprivacy.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;12567-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 3622
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;97053-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 33988
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.validationEngine-de.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;3859-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1396
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /blank.gif HTTP/1.1

Host: haperson.ivwbox.de

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://www.haufe.de/immobilien/
Cookie: srp=015450a293cbe82d0007
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx/1.2.4
Date: Tue, 13 Nov 2012 18:39:19 GMT
Content-Length: 43
Connection: keep-alive
Last-Modified: Tue, 22 Aug 2000 15:05:01 GMT
P3P: policyref=&quot;http://www.ivwbox.de/p3p.xml&quot;, CP=&quot;NOI DSP PSAo OUR NOR UNI&quot;
Set-Cookie: srp=015450a293cbe82d0007; path=/
GET /statics/1.00.00.0080/js/src/vendor/jquery.validationEngine.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;17548-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 5085
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.autocomplete-min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;7085-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 2403
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.scrollto.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;1993-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1053
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.tools.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;13025-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 4699
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/vendor/jquery.colorbox.min.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;9777-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 4159
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.ajaxFilter.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;940-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 404
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.simpleLayer.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;5600-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1602
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/jquery.flap.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;551-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 339
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.a2zIndex.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;6407-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1869
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.flyoutNav.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;3298-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1117
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.cockpitLayer.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;2749-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 901
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.topNav.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;5373-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1510
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/vi.jquery.horizontalNav.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;5130-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1528
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/hl.errorHandler.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;962-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 533
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/lib/hl.user.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;2419-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 829
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /statics/1.00.00.0080/js/src/main.js HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/immobilien/
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Tue, 13 Nov 2012 18:39:19 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;10700-1351862938000&quot;
Last-Modified: Fri, 02 Nov 2012 13:28:58 GMT
Cache-Control: public, max-age=62400
Via: 1.1 varnish
Age: 0
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 3883
Keep-Alive: timeout=5, max=87
Connection: Keep-Alive
GET /custrmevent/3.0/913.1/3755763/0/168/AdId=8261672;CreativeId=0;BnId=3;EventIds=997;EventVals=1 HTTP/1.1

Host: secserv.adtech.de

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://www.haufe.de/immobilien/
Cookie: CfP=1; JEB2=50A28AC76E651A59CA630343F010C5DF
HTTP/1.0 200 OK

HTTP/1.0 200 OK
Connection: keep-alive
Cache-Control: no-cache
Content-Length: 0
GET /sp/Diagnostics/1.0/analytics/apply?idsite=haufe.de_immobilien&rec=1&rand=0.5657612086154481&h=19&m=39&s=20&url=http%3A%2F%2Fwww.haufe.de%2Fimmobilien%2F&urlref=&res=1176x885&cookie=1&pdf=1&qt=0&realp=0&wma=1&dir=0&fla=1&java=1&gears=0&ag=0&data=%7B%22pageId%22%3A%22immobilien%22%2C%22siteId%22%3A%22haufe.de_immobilien%22%2C%22userId%22%3Anull%2C%22group%22%3A%22immobilien%22%2C%22type%22%3A%22content%22%2C%22contentId%22%3Anull%2C%22productId%22%3Anull%2C%22advertId%22%3A%22haperson%22%2C%22eventName%22%3A%22pageLoad%22%7D&action_name=Das%20Portal%20f%C3%BCr%20die%20Immobilienwirtschaft%2C%20Makler%20%26%20Verwalter%20-%20Immobilien%20-%20haufe.de HTTP/1.1

Host: api.haufe-lexware.com
GET /sp/Diagnostics/1.0/analytics/apply?idsite=haufe.de_immobilien&amp;rec=1&amp;rand=0.5657612086154481&amp;h=19&amp;m=39&amp;s=20&amp;url=http%3A%2F%2Fwww.haufe.de%2Fimmobilien%2F&amp;urlref=&amp;res=1176x885&amp;cookie=1&amp;pdf=1&amp;qt=0&amp;realp=0&amp;wma=1&amp;dir=0&amp;fla=1&amp;java=1&amp;gears=0&amp;ag=0&amp;data=%7B%22pageId%22%3A%22immobilien%22%2C%22siteId%22%3A%22haufe.de_immobilien%22%2C%22userId%22%3Anull%2C%22group%22%3A%22immobilien%22%2C%22type%22%3A%22content%22%2C%22contentId%22%3Anull%2C%22productId%22%3Anull%2C%22advertId%22%3A%22haperson%22%2C%22eventName%22%3A%22pageLoad%22%7D&amp;action_name=Das%20Portal%20f%C3%BCr%20die%20Immobilienwirtschaft%2C%20Makler%20%26%20Verwalter%20-%20Immobilien%20-%20haufe.de HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: image/png
X-Powered-By: Servlet/2.5
Server: Sun GlassFish Enterprise Server v2.1.1
Content-Length: 0
Date: Tue, 13 Nov 2012 18:39:20 GMT
Set-Cookie: BIGipServerPOOL-atlantik-AppServer-Group-2-http=3542001856.49300.0000; path=/
GET /18411/32424_Mittelstand_200x600_video_player.swf HTTP/1.1

Host: cdn.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
x-amz-id-2: atRHgKW85H6mMLr1we7xOsyRuUTpMJijMe7dVHZ4Dc2yQCLONNnfzGmOw3VHGRez
x-amz-request-id: E9792A1F69278C45
Last-Modified: Fri, 05 Oct 2012 14:54:23 GMT
Etag: &quot;e94b34ab38149484e479e12a36b67aa3&quot;
Content-Length: 6139
Server: AmazonS3
Date: Tue, 13 Nov 2012 18:39:20 GMT
Connection: keep-alive
GET /els/logging?v=2&emrid=AAABOvsRg_uawcBToCwtc2hxKZFuTCif&emsid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ&emvid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ&emnc=1&emtn=1&emhost=www.haufe.de&ckey=00000c09-fb82ead1-4bcf-43bd-b8ce-7feb552dc004&d=c2l0ZWlkH2hhdWZlLmRlX2ltbW9iaWxpZW4canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NteHA0Ny4xX2hhdWZlZDEccmVmH2h0dHA6Ly91bmtub3duHHNvdXJjZR9kaXJlY3QcY29udGVudB9pbW1vYmlsaWVuHHBhZ2VJZB9pbW1vYmlsaWVu HTTP/1.1

Host: www.econda-monitor.de
GET /els/logging?v=2&amp;emrid=AAABOvsRg_uawcBToCwtc2hxKZFuTCif&amp;emsid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ&amp;emvid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ&amp;emnc=1&amp;emtn=1&amp;emhost=www.haufe.de&amp;ckey=00000c09-fb82ead1-4bcf-43bd-b8ce-7feb552dc004&amp;d=c2l0ZWlkH2hhdWZlLmRlX2ltbW9iaWxpZW4canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NteHA0Ny4xX2hhdWZlZDEccmVmH2h0dHA6Ly91bmtub3duHHNvdXJjZR9kaXJlY3QcY29udGVudB9pbW1vYmlsaWVuHHBhZ2VJZB9pbW1vYmlsaWVu HTTP/1.1

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://www.haufe.de/immobilien/
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR LAW NID PSAo PSDo OUR STP OTC&quot;
Pragma: no-cache
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Sat, 6 May 1995 12:00:00 GMT
Content-Length: 43
Date: Tue, 13 Nov 2012 18:39:20 GMT
GET /statics/1.00.00.0080/css/images/ie.gif HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker; emos_jcsid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_uawcBToCwtc2hxKZFuTCif:1352831960059; emos_jcvid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1352831960059:0:true:1
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 18:39:20 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;48-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 48
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/icn-scroll-right.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker; emos_jcsid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_uawcBToCwtc2hxKZFuTCif:1352831960059; emos_jcvid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1352831960059:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:20 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;595-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 595
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /statics/1.00.00.0080/css/images/bg-footer-form-elements.png HTTP/1.1

Host: www.haufe.de

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://www.haufe.de/statics/1.00.00.0080/css/core/styles.css
Cookie: JSESSIONID=D9C38659B69F672DB1CC7AE4797CFCB8.liveWorker; emos_jcsid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_uawcBToCwtc2hxKZFuTCif:1352831960059; emos_jcvid=AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1:AAABOvsRg_tlXUd1z87MBULYvhdIjXPZ:1352831960059:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Tue, 13 Nov 2012 18:39:20 GMT
Server: Apache-Coyote/1.1
Etag: W/&quot;844-1351862234000&quot;
Last-Modified: Fri, 02 Nov 2012 13:17:14 GMT
Cache-Control: public, max-age=62400
Content-Length: 844
Via: 1.1 varnish
Age: 0
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /reportV3/ft.stat?5974066-0-12-0-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:21 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:21 GMT
Connection: keep-alive
GET /18411/32424_Mittelstand_200x600_BB_F8.swf HTTP/1.1

Host: cdn.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
x-amz-id-2: q9oKTVGEM684kYqJW0vEVZoi4qAhIS/reNL5sAxNKVpe6DVYmqn2xz1dWnFUAynj
x-amz-request-id: 379EE777821A6BE8
Last-Modified: Fri, 05 Oct 2012 14:54:23 GMT
Etag: &quot;97164f547cf5c7a2e2f4b9c0800bd75d&quot;
Content-Length: 554979
Server: AmazonS3
Date: Tue, 13 Nov 2012 18:39:20 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974066-0-13-122-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:23 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:23 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974066-0-14-122-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:26 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:26 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974066-0-15-122-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:28 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:28 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974066-0-16-122-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:31 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:31 GMT
Connection: keep-alive
GET /reportV3/ft.stat?5974066-0-17-122-1778C6204254EF-1298191596 HTTP/1.1

Host: stat.flashtalking.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
Cookie: flashtalkingad1=&quot;GUID=1778C6204254EF&quot;
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Etag: &quot;c4ca4238a0b923820dcc509a6f75849b:1340894289&quot;
Last-Modified: Thu, 28 Jun 2012 14:38:09 GMT
Accept-Ranges: bytes
Content-Length: 1
Expires: Tue, 13 Nov 2012 18:39:33 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Tue, 13 Nov 2012 18:39:33 GMT
Connection: keep-alive