Overview

URLhttp://blendedlearning-expo.de/
IP213.164.69.228
ASNAS13054 FreiNet GmbH
Location Germany
Report completed2012-11-21 23:24:14 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 No alerts detected
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-21 23:23:40 urlQuery Client 173.194.69.1322ssp_ssl: Invalid Client HELLO after Server HELLO Detected
2012-11-21 23:23:40 urlQuery Client 173.194.69.1322ssp_ssl: Invalid Client HELLO after Server HELLO Detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 213.164.69.228

Date Alerts / IDS URL IP
2013-01-19 14:19:010 / 4http://call-center-expo.de/213.164.69.228
2013-01-11 15:58:180 / 1http://blendedlearning-expo.de/213.164.69.228
2013-01-07 13:29:550 / 1http://ebusiness-expo.de/213.164.69.228
2012-12-03 23:11:040 / 2http://call-center-expo.de/213.164.69.228
2012-12-01 07:02:420 / 2http://crm-expo.ch/213.164.69.228
2012-11-26 15:07:170 / 1http://verkaufintern.de/213.164.69.228

Last 6 reports on ASN: AS13054 FreiNet GmbH

Date Alerts / IDS URL IP
2013-02-14 16:52:540 / 3http://hauffeakademie.de/213.164.69.234
2013-02-13 00:09:040 / 3http://topcoaches.de/213.164.69.230
2013-02-12 14:32:340 / 1http://general-management-programm.de/213.164.69.234
2013-02-07 00:05:100 / 2http://steuerberater-plus-premium.com/213.164.69.234
2013-02-06 22:35:590 / 1http://rechnungswesen-office-service.de/213.164.69.234
2013-02-06 15:25:380 / 3http://haufeakademie.de/213.164.69.234

Last 1 reports on domain: blendedlearning-expo.de

Date Alerts / IDS URL IP
2013-01-11 15:58:180 / 1http://blendedlearning-expo.de/213.164.69.228



JavaScript

Executed Scripts (18)


Executed Evals (2)

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

(function($) {
    $.fn.waterwheelCarousel = function(options) {
        options = $.extend({}, $.fn.waterwheelCarousel.defaults, options || {});
        return $(this).each(function() {
            var data = {
                itemsContainer: $(this).find(".carousel-images"),
                totalItems: $(this).find(".carousel-images img").length,
                containerWidth: $(this).width(),
                containerHeight: $(this).height(),
                currentCenterItem: null,
                items: [],
                itemDistances: [],
                waveDistances: [],
                itemWidths: [],
                itemHeights: [],
                itemOpacities: [],
                carouselRotationsLeft: 0,
                currentlyMoving: false,
                itemsAnimating: 0,
                currentSpeed: options.speed,
                intervalTimer: null
            };
            beforeLoaded();
            preload(function() {
                setupDistanceArrays();
                setupCarousel();
                setupStarterRotation()
            });

            function autoPlay(stop) {
                clearTimeout(data.autoPlayTimer);
                if (!stop && options.autoPlay !== 0) {
                    data.autoPlayTimer = setTimeout(function() {
                        if (options.autoPlay > 0) {
                            moveOnce(false)
                        } else {
                            moveOnce(true)
                        }
                    }, Math.abs(options.autoPlay))
                }
            }
            function getPreviousNum(num) {
                var newNum = (num === 1) ? null : num - 1;
                return newNum
            }
            function getNextNum(num) {
                var newNum = (num === data.totalItems) ? null : num + 1;
                return newNum
            }
            function beforeLoaded() {
                data.itemsContainer.find('img').hide()
            }
            function preload(callback) {
                var $imageElements = data.itemsContainer.find('img'),
                    loadedImages = 0,
                    totalImages = $imageElements.length;
                $imageElements.each(function() {
                    $(this).load(function() {
                        loadedImages += 1;
                        if (loadedImages === totalImages) {
                            callback()
                        }
                    });
                    if (this.complete || $.browser.msie) {
                        $(this).trigger('load')
                    }
                })
            }
            function setupDistanceArrays() {
                data.itemDistances[0] = options.startingItemSeparation;
                data.waveDistances[0] = options.startingWaveSeparation;
                data.itemWidths[0] = data.itemsContainer.find('img:first').width();
                data.itemHeights[0] = data.itemsContainer.find('img:first').height();
                data.itemOpacities[0] = (1 * options.opacityDecreaseFactor);
                var i;
                for (i = 1; i < options.flankingItems + 1; i++) {
                    data.itemDistances[i] = data.itemDistances[i - 1] * options.itemSeparationFactor;
                    data.waveDistances[i] = data.waveDistances[i - 1] * options.waveSeparationFactor;
                    data.itemWidths[i] = data.itemWidths[i - 1] * options.itemDecreaseFactor;
                    data.itemHeights[i] = data.itemHeights[i - 1] * options.itemDecreaseFactor;
                    data.itemOpacities[i] = data.itemOpacities[i - 1] * options.opacityDecreaseFactor;
                    if (i === options.flankingItems) {
                        data.itemWidths[i + 1] = data.itemWidths[i] * options.itemDecreaseFactor;
                        data.itemHeights[i + 1] = data.itemHeights[i] * options.itemDecreaseFactor
                    }
                }
                data.itemOpacities[data.itemOpacities.length - 1] = 0
            }
            function setupCarousel() {
                data.items = data.itemsContainer.find('img');
                var i;
                for (i = 0; i < data.items.length; i++) {
                    data.items[i] = $(data.items[i])
                }
                data.itemsContainer.css('position', 'relative').find('img').each(function(i) {
                    var newLeft, newTop;
                    if (options.orientation === "horizontal") {
                        newLeft = (data.containerWidth / 2) - ($(this).width() / 2);
                        newTop = options.centerOffset
                    } else {
                        newLeft = options.centerOffset;
                        newTop = (data.containerHeight / 2) - ($(this).height() / 2)
                    }
                    $(this).css({
                        'left': newLeft,
                        'top': newTop,
                        'visibility': 'visible',
                        'position': 'absolute',
                        'z-index': options.flankingItems + 2,
                        'opacity': 1
                    }).data({
                        currentPosition: 0,
                        oldPosition: 0,
                        width: $(this).width(),
                        owidth: $(this).width(),
                        height: $(this).height(),
                        oheight: $(this).height(),
                        top: newTop,
                        left: newLeft,
                        opacity: 1,
                        index: i
                    }).show()
                })
            }
            function setupStarterRotation() {
                options.startingItem = (options.startingItem === 0) ? Math.round(data.totalItems / 2) : options.startingItem;
                data.carouselRotationsLeft = 1;
                data.items[options.startingItem - 1].addClass(options.activeClassName);
                options.movedToCenter(data.items[options.startingItem - 1]);
                data.currentCenterItem = data.items[options.startingItem - 1];
                var counter, itemNum, i;
                counter = 1;
                for (itemNum = options.startingItem - 2; itemNum >= 0; itemNum--) {
                    for (i = 0; i < counter; i++) {
                        moveItem(data.items[itemNum], false)
                    }
                    counter++
                }
                counter = 1;
                for (itemNum = options.startingItem; itemNum < data.items.length; itemNum++) {
                    for (i = 0; i < counter; i++) {
                        moveItem(data.items[itemNum], true)
                    }
                    counter++
                }
            }
            function performCalculations($item, newPosition) {
                var oldPosition = $item.data().currentPosition;
                var newDistanceFromCenter = Math.abs(newPosition);
                var newWidth = data.itemWidths[newDistanceFromCenter];
                var newHeight = data.itemHeights[newDistanceFromCenter];
                var widthDifference = Math.abs($item.data().width - newWidth);
                var heightDifference = Math.abs($item.data().height - newHeight);
                var waveSeparation = 0,
                    centeringNumber;
                if (options.orientation === "horizontal") {
                    centeringNumber = heightDifference / 2
                } else {
                    centeringNumber = widthDifference / 2
                }
                if ((newPosition > -1 && (newPosition < oldPosition)) || (newPosition < 1 && (newPosition > oldPosition))) {
                    waveSeparation -= centeringNumber;
                    waveSeparation += data.waveDistances[Math.abs(newPosition)]
                } else if ((newPosition > -1 && (newPosition > oldPosition)) || (newPosition < 1 && (newPosition < oldPosition))) {
                    waveSeparation += centeringNumber;
                    waveSeparation -= data.waveDistances[Math.abs(newPosition) - 1]
                }
                var itemSeparation = 0;
                if (Math.abs(newPosition) < Math.abs(oldPosition)) {
                    itemSeparation = data.itemDistances[Math.abs(newPosition)]
                } else {
                    itemSeparation = data.itemDistances[Math.abs(newPosition) - 1]
                }
                if (newPosition > 0 || (newPosition === 0 && oldPosition === 1)) {
                    if (options.orientation === "horizontal") {
                        itemSeparation += widthDifference
                    } else {
                        itemSeparation += heightDifference
                    }
                }
                if (newPosition < oldPosition) {
                    itemSeparation = itemSeparation * -1
                }
                var newOpacity;
                if (newPosition === 0) {
                    newOpacity = 1
                } else {
                    newOpacity = data.itemOpacities[Math.abs(newPosition) - 1]
                }
                var newTop = $item.data().top;
                var newLeft = $item.data().left;
                if (options.orientation === "horizontal") {
                    newTop = $item.data().top + waveSeparation;
                    newLeft = $item.data().left + itemSeparation
                } else {
                    newTop = $item.data().top + itemSeparation;
                    newLeft = $item.data().left + waveSeparation
                }
                var newDepth = options.flankingItems + 2 - newDistanceFromCenter;
                $item.data('width', newWidth);
                $item.data('height', newHeight);
                $item.data('top', newTop);
                $item.data('left', newLeft);
                $item.data('oldPosition', oldPosition);
                $item.data('currentPosition', newPosition);
                $item.data('depth', newDepth);
                $item.data('opacity', newOpacity)
            }
            function moveItem($item, direction) {
                var oldPosition = $item.data('currentPosition'),
                    newPosition;
                if (direction === false) {
                    newPosition = oldPosition - 1
                } else {
                    newPosition = oldPosition + 1
                }
                if (Math.abs(newPosition) <= options.flankingItems + 1) {
                    data.itemsAnimating++;
                    performCalculations($item, newPosition);
                    if (newPosition === 0) {
                        options.movingToCenter($item)
                    }
                    if (oldPosition === 0) {
                        options.movingFromCenter($item);
                        $item.removeClass(options.activeClassName)
                    }
                    $item.css('z-index', $item.data().depth);
                    $item.animate({
                        left: $item.data().left,
                        width: $item.data().width,
                        height: $item.data().height,
                        top: $item.data().top,
                        opacity: $item.data().opacity
                    }, data.currentSpeed, options.animationEasing, function() {
                        itemAnimationComplete($item, newPosition, direction)
                    })
                } else if (Math.abs(newPosition) > options.flankingItems) {
                    $item.data('oldPosition', oldPosition);
                    $item.data('currentPosition', newPosition)
                }
            }
            function itemAnimationComplete($item, newPosition, direction) {
                if (newPosition === 0) {
                    data.currentCenterItem = $item;
                    $item.addClass(options.activeClassName)
                }
                if ($item.data().oldPosition === 0) {
                    options.movedFromCenter($item)
                }
                data.itemsAnimating--;
                if (data.itemsAnimating === 0) {
                    data.carouselRotationsLeft -= 1;
                    data.currentlyMoving = false;
                    if (data.carouselRotationsLeft > 0) {
                        rotateCarousel(direction, 0)
                    } else {
                        data.currentSpeed = options.speed;
                        if (data.currentCenterItem !== null) {
                            options.movedToCenter(data.currentCenterItem)
                        }
                        autoPlay()
                    }
                }
            }
            function stopAnimations() {
                var i;
                for (i = 0; i < data.items.length; i++) {
                    data.items[i].stop()
                }
            }
            function rotationAllowed(direction) {
                if (data.currentlyMoving === true) {
                    return false
                }
                if (direction === true && data.items[0].data().currentPosition === 0) {
                    return false
                }
                if (direction === false && data.items[data.totalItems - 1].data().currentPosition === 0) {
                    return false
                }
                return true
            }
            function rotateCarousel(direction, rotations) {
                if (rotationAllowed(direction)) {
                    data.currentlyMoving = true;
                    data.itemsAnimating = 0;
                    data.carouselRotationsLeft += rotations;
                    if (options.quickerForFurther === true) {
                        if (rotations > 1) {
                            data.currentSpeed = options.speed / rotations
                        }
                        data.currentSpeed = (data.currentSpeed < 100) ? 100 : data.currentSpeed
                    } else {
                        data.currentSpeed = options.speed
                    }
                    var i;
                    for (i = 0; i < data.items.length; i++) {
                        var $item = $(data.items[i]);
                        var currentPosition = $item.data().currentPosition;
                        if (currentPosition >= ((options.flankingItems * -1) - 1) && currentPosition <= (options.flankingItems) + 1) {
                            moveItem($item, direction)
                        } else {
                            $item.data('oldPosition', currentPosition);
                            if (direction === true) {
                                $item.data('currentPosition', currentPosition + 1)
                            } else {
                                $item.data('currentPosition', currentPosition - 1)
                            }
                        }
                    }
                }
            }
            function moveOnce(direction) {
                var currentCenterIndex = data.currentCenterItem.data().index;
                if ((currentCenterIndex === 0 && direction === true) || (currentCenterIndex === (data.totalItems - 1) && direction === false)) {
                    clearTimeout(data.autoPlayTimer);
                    if (options.edgeReaction === 'reset') {
                        rotateCarousel(!direction, data.totalItems - 1)
                    } else if (options.edgeReaction === 'reverse' && options.autoPlay !== 0) {
                        rotateCarousel(!direction, 1);
                        options.autoPlay *= -1
                    }
                } else {
                    rotateCarousel(direction, 1)
                }
            }
            $(this).find('.carousel-images img').live("click", function() {
                autoPlay(true);
                options.autoPlay = 0;
                var itemPosition = $(this).data().currentPosition;
                var rotations = Math.abs(itemPosition);
                if (itemPosition < 0) {
                    rotateCarousel(true, rotations)
                } else if (itemPosition > 0) {
                    rotateCarousel(false, rotations)
                } else {
                    options.clickedCenter($(this))
                }
            });
            $(this).find('.carousel-images a').live("click", function(event) {
                var isCenter = ($(this).find('img').width() === $(this).find('img').data().owidth) ? true : false;
                if (options.linkHandling === 1 || (options.linkHandling === 2 && !isCenter)) {
                    event.preventDefault();
                    return false
                }
            });
            $(this).find('.carousel-controls .carousel-prev').live('click', function(e) {
                moveOnce(true);
                e.preventDefault();
                return false
            });
            $(this).find('.carousel-controls .carousel-next').live('click', function(e) {
                moveOnce(false);
                e.preventDefault();
                return false
            });
            if (options.keyboardNav) {
                $(document).keydown(function(e) {
                    if (e.which === 37 || e.which === 38) {
                        moveOnce(true)
                    } else if (e.which === 39 || e.which === 40) {
                        moveOnce(false)
                    }
                    if (options.keyboardNavOverride && (e.which === 37 || e.which === 38 || e.which === 39 || e.which === 40)) {
                        e.preventDefault();
                        return false
                    }
                })
            }
        })
    };
    $.fn.waterwheelCarousel.defaults = {
        startingItem: 0,
        startingItemSeparation: 150,
        itemSeparationFactor: 0.5,
        startingWaveSeparation: 30,
        waveSeparationFactor: 0.75,
        itemDecreaseFactor: 0.8,
        opacityDecreaseFactor: 0.5,
        centerOffset: 40,
        flankingItems: 4,
        speed: 300,
        animationEasing: 'linear',
        quickerForFurther: true,
        linkHandling: 2,
        autoPlay: 0,
        orientation: 'horizontal',
        activeClassName: 'active',
        keyboardNav: false,
        keyboardNavOverride: true,
        edgeReaction: 'reset',
        movingToCenter: $.noop,
        movedToCenter: $.noop,
        clickedCenter: $.noop,
        movingFromCenter: $.noop,
        movedFromCenter: $.noop
    }
})(jQuery);

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

/*@cc_on!@*/
false

Executed Writes (0)



HTTP Transactions (69)


Request Response
GET / HTTP/1.1

Host: blendedlearning-expo.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: Wed, 21 Nov 2012 22:23:32 GMT
Server: Apache
Location: http://www.elearning-expo.de/
Content-Length: 213
Connection: close
GET / HTTP/1.1

Host: www.elearning-expo.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 301 Moved Permanently

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 22:23:33 GMT
Location: http://www.anbietercheck.de/e-learning
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 242
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /e-learning HTTP/1.1

Host: www.anbietercheck.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: Wed, 21 Nov 2012 22:23:33 GMT
Location: http://www.anbietercheck.de/project/ajax-includes/perma.php?ref=e-learning
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 253
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /project/ajax-includes/perma.php?ref=e-learning HTTP/1.1

Host: www.anbietercheck.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
Date: Wed, 21 Nov 2012 22:23:33 GMT
Set-Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: http://www.anbietercheck.de/project/ajax-includes/redirect.php?limit=&amp;domain=personal&amp;listingPageID=88&amp;kriterium[]=719&amp;kriterium[]=815&amp;isHomeTarget=true
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /project/ajax-includes/redirect.php?limit=&domain=personal&listingPageID=88&kriterium[]=719&kriterium[]=815&isHomeTarget=true HTTP/1.1

Host: www.anbietercheck.de
GET /project/ajax-includes/redirect.php?limit=&amp;domain=personal&amp;listingPageID=88&amp;kriterium[]=719&amp;kriterium[]=815&amp;isHomeTarget=true 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: syndicat=repks5vqlkfglvhg801cdal8p5
HTTP/1.1 302 Found

Content-Type: text/html
Date: Wed, 21 Nov 2012 22:23:33 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: synlog=20121121repks5vqlkfglvhg801cdal8p5; expires=Sat, 21-Nov-2015 22:23:33 GMT; path=/ anbietercheck:lastCriterias=719%2C815; path=/
Location: /Personal/Software/eLearning/,82,1,719,815?limit=10
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 127
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /Personal/Software/eLearning/,82,1,719,815?limit=10 HTTP/1.1

Host: www.anbietercheck.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: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/html;charset=utf-8
Date: Wed, 21 Nov 2012 22:23:33 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 10241
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /layouts/anbietercheck/css/reset.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:22 GMT
Etag: &quot;601e5f4-1f3-4c73a42632493&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 294
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /layouts/anbietercheck/css/haufe.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 08 Oct 2012 12:08:54 GMT
Etag: &quot;601e5ed-8028-4cb8b15d7c81d&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 5603
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /layouts/anbietercheck/css/uniform.default.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:22 GMT
Etag: &quot;601e5f6-299e-4c73a4266a708&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 2206
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /layouts/anbietercheck/css/landingpage.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 25 Sep 2012 08:01:03 GMT
Etag: &quot;601e5f2-9265-4ca821b926cea&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 4843
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /layouts/anbietercheck/script/jquery.uniform.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:34 GMT
Etag: &quot;404a603-4e24-4c73a431b2b22&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3626
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /layouts/anbietercheck/css/mediaelementplayer.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:22 GMT
Etag: &quot;601e5f3-47d5-4c73a425f2cec&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3011
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /layouts/anbietercheck/script/jquery.clearfield.min.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:33 GMT
Etag: &quot;4089e29-393-4c73a4301d699&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 420
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /layouts/anbietercheck/script/jquery.waterwheelCarousel.min.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:34 GMT
Etag: &quot;404a604-17b5-4c73a431dea46&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3026
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /layouts/anbietercheck/script/mediaelement-and-player.min.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:35 GMT
Etag: &quot;404a605-b2c2-4c73a4323b6b0&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 13028
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /layouts/anbietercheck/script/hyphenator.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:33 GMT
Etag: &quot;4089e28-8598-4c73a4301af88&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 11388
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
GET /layouts/anbietercheck/script/scripts.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Fri, 16 Nov 2012 14:51:17 GMT
Etag: &quot;404a606-8032-4ce9de65fc538&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 9373
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /layouts/anbietercheck/img/pagename.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:29 GMT
Etag: &quot;4bb19-349-4c73a42c876ba&quot;
Accept-Ranges: bytes
Content-Length: 841
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /upload/cache/128_keyfacts_200_1.85x120.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 22 Oct 2012 13:46:16 GMT
Etag: &quot;4030032-201f-4cca613d3922f&quot;
Accept-Ranges: bytes
Content-Length: 8223
Keep-Alive: timeout=15, max=93
Connection: Keep-Alive
GET /project/js/emos2.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 15 Oct 2012 12:19:45 GMT
Etag: &quot;6068710-6cc5-4cc180d87717a&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 9072
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /layouts/anbietercheck/css/syndicat.css HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:22 GMT
Etag: &quot;601e5f5-20-4c73a42640ef4&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 52
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /layouts/anbietercheck/script/jquery.min.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:34 GMT
Etag: &quot;40f450e-16614-4c73a43144d46&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 32053
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /upload/cache/2883_logogross_1.129x78.box158x88.255-255-255.padding-10.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Thu, 08 Nov 2012 08:39:50 GMT
Etag: &quot;40482a5-302f-4cdf7c7428b25&quot;
Accept-Ranges: bytes
Content-Length: 12335
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /upload/cache/2874_logogross_1.148x37.box158x88.255-255-255.padding-10.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 05 Nov 2012 14:11:25 GMT
Etag: &quot;40471b5-129d-4cdc00f9606f8&quot;
Accept-Ranges: bytes
Content-Length: 4765
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /upload/cache/2869_logogross_1.148x54.box158x88.255-255-255.padding-10.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 05 Nov 2012 13:56:11 GMT
Etag: &quot;4042ac1-2486-4cdbfd911488b&quot;
Accept-Ranges: bytes
Content-Length: 9350
Keep-Alive: timeout=15, max=92
Connection: Keep-Alive
GET /upload/cache/2895_logogross_1.104x78.box158x88.255-255-255.padding-10.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 28 Aug 2012 11:23:31 GMT
Etag: &quot;404b6bc-167b-4c851ac0ca91c&quot;
Accept-Ranges: bytes
Content-Length: 5755
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /upload/cache/130_keyfacts_208_1.85x115.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 12 Nov 2012 14:38:32 GMT
Etag: &quot;4031fa1-25bf-4ce4d4172a1fe&quot;
Accept-Ranges: bytes
Content-Length: 9663
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /upload/cache/129_keyfacts_206_1.85x120.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 12 Nov 2012 14:39:33 GMT
Etag: &quot;4031fa4-1c01-4ce4d450cc01a&quot;
Accept-Ranges: bytes
Content-Length: 7169
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /els/logging?v=2&emrid=AAABOyURvYkj*dyqLGY6ds*7hJUWmGUH&emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emnc=1&emtn=1&emhost=www.anbietercheck.de&ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&tpct=1&d=c2l0ZWlkHzAcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfZUxlYXJuaW5nIC0gU29mdHdhcmUgLSBFLUxlYXJuaW5nLVNvZnR3YXJlIC0gQW5iaWV0ZXJDaGVjay5kZQ HTTP/1.1

Host: www.econda-monitor.de
GET /els/logging?v=2&amp;emrid=AAABOyURvYkj*dyqLGY6ds*7hJUWmGUH&amp;emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emnc=1&amp;emtn=1&amp;emhost=www.anbietercheck.de&amp;ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&amp;tpct=1&amp;d=c2l0ZWlkHzAcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfZUxlYXJuaW5nIC0gU29mdHdhcmUgLSBFLUxlYXJuaW5nLVNvZnR3YXJlIC0gQW5iaWV0ZXJDaGVjay5kZQ 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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
Set-Cookie: emos-session=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Path=/ emos-visitor=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Expires=Fri, 21-Nov-2014 22:23:37 GMT; Path=/
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: Wed, 21 Nov 2012 22:23:37 GMT
GET /layouts/anbietercheck/img/bg-head.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:24 GMT
Etag: &quot;4d2af-c4-4c73a427f1130&quot;
Accept-Ranges: bytes
Content-Length: 196
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /upload/cache/130_keyfacts_207_1.85x115.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 12 Nov 2012 13:07:42 GMT
Etag: &quot;4062134-29cf-4ce4bfc9dc5e4&quot;
Accept-Ranges: bytes
Content-Length: 10703
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /upload/cache/130_keyfacts_210_1.85x115.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Mon, 12 Nov 2012 14:38:35 GMT
Etag: &quot;4031fa2-254a-4ce4d419bd533&quot;
Accept-Ranges: bytes
Content-Length: 9546
Keep-Alive: timeout=15, max=91
Connection: Keep-Alive
GET /project/js/jHG-diagnostics.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:3:AAABOyURveSfZ*35mRCS*z0Lc47DOxd*:1353536617956; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:06:58 GMT
Etag: &quot;6068711-33a3-4c73a52d52604&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3927
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /layouts/anbietercheck/img/logo_bright.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:28 GMT
Etag: &quot;4bb11-1a0-4c73a42c0ae7c&quot;
Accept-Ranges: bytes
Content-Length: 416
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /els/logging?v=2&emrid=AAABOyURvZxmoF9N65M84fWYRydQgQK8&emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emnc=1&emtn=1&emhost=www.anbietercheck.de&ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&tpct=1&d=c2l0ZWlkHzAcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfZUxlYXJuaW5nIC0gU29mdHdhcmUgLSBFLUxlYXJuaW5nLVNvZnR3YXJlIC0gQW5iaWV0ZXJDaGVjay5kZQ HTTP/1.1

Host: www.econda-monitor.de
GET /els/logging?v=2&amp;emrid=AAABOyURvZxmoF9N65M84fWYRydQgQK8&amp;emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emnc=1&amp;emtn=1&amp;emhost=www.anbietercheck.de&amp;ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&amp;tpct=1&amp;d=c2l0ZWlkHzAcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfZUxlYXJuaW5nIC0gU29mdHdhcmUgLSBFLUxlYXJuaW5nLVNvZnR3YXJlIC0gQW5iaWV0ZXJDaGVjay5kZQ 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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
Set-Cookie: emos-session=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Path=/ emos-visitor=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Expires=Fri, 21-Nov-2014 22:23:37 GMT; Path=/
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: Wed, 21 Nov 2012 22:23:37 GMT
GET /els/logging?v=2&emrid=AAABOyURveSfZ*35mRCS*z0Lc47DOxd*&emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emnc=1&emtn=1&emhost=www.anbietercheck.de&ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&tpct=1&d=c2l0ZWlkH2FuYmlldGVyY2hlY2suZGUcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfUGVyc29uYWwvSG9tZRxwYWdlSWQfaHR0cDovL3d3dy5hbmJpZXRlcmNoZWNrLmRlL1BlcnNvbmFsL1NvZnR3YXJlL2VMZWFybmluZy8sODIsMSw3MTksODE1P2xpbWl0PTEw HTTP/1.1

Host: www.econda-monitor.de
GET /els/logging?v=2&amp;emrid=AAABOyURveSfZ*35mRCS*z0Lc47DOxd*&amp;emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emnc=1&amp;emtn=1&amp;emhost=www.anbietercheck.de&amp;ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&amp;tpct=1&amp;d=c2l0ZWlkH2FuYmlldGVyY2hlY2suZGUcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfUGVyc29uYWwvSG9tZRxwYWdlSWQfaHR0cDovL3d3dy5hbmJpZXRlcmNoZWNrLmRlL1BlcnNvbmFsL1NvZnR3YXJlL2VMZWFybmluZy8sODIsMSw3MTksODE1P2xpbWl0PTEw 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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
Set-Cookie: emos-session=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Path=/ emos-visitor=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; Domain=.econda-monitor.de; Expires=Fri, 21-Nov-2014 22:23:38 GMT; Path=/
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: Wed, 21 Nov 2012 22:23:37 GMT
GET /layouts/anbietercheck/img/bg-mainnav-li.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:25 GMT
Etag: &quot;4d2b6-1a4-4c73a4287007e&quot;
Accept-Ranges: bytes
Content-Length: 420
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /upload/cache/thema_des_monats_24_1.200x159.jpg HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:37 GMT
Last-Modified: Fri, 09 Nov 2012 10:48:03 GMT
Etag: &quot;40f9a15-4d35-4ce0dafaa95e7&quot;
Accept-Ranges: bytes
Content-Length: 19765
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /layouts/anbietercheck/media/divider_sub_nav.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/landingpage.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:31 GMT
Etag: &quot;205a0f8-3eb-4c73a42e9455f&quot;
Accept-Ranges: bytes
Content-Length: 1003
Keep-Alive: timeout=15, max=90
Connection: Keep-Alive
GET /layouts/anbietercheck/img/icon-filter-delete.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:26 GMT
Etag: &quot;4d2d2-1e6-4c73a429fb8c7&quot;
Accept-Ranges: bytes
Content-Length: 486
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /layouts/anbietercheck/media/divider_sidebar.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/landingpage.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:31 GMT
Etag: &quot;205a0f7-481-4c73a42e80cdd&quot;
Accept-Ranges: bytes
Content-Length: 1153
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /layouts/anbietercheck/img/hr-resulttable.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/landingpage.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:26 GMT
Etag: &quot;4d2ce-113-4c73a429c3650&quot;
Accept-Ranges: bytes
Content-Length: 275
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
GET /layouts/anbietercheck/img/bg-foot.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/haufe.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:24 GMT
Etag: &quot;4d2ac-134-4c73a427cc73d&quot;
Accept-Ranges: bytes
Content-Length: 308
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /layouts/anbietercheck/img/sprite.png HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/layouts/anbietercheck/css/landingpage.css
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:2:AAABOyURvZxmoF9N65M84fWYRydQgQK8:1353536617884; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:29 GMT
Etag: &quot;494a0-897f-4c73a42d10247&quot;
Accept-Ranges: bytes
Content-Length: 35199
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /project/js/piwik2.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:3:AAABOyURveSfZ*35mRCS*z0Lc47DOxd*:1353536617956; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Tue, 14 Aug 2012 14:06:59 GMT
Etag: &quot;6068714-2126-4c73a52e9bf97&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3775
Keep-Alive: timeout=15, max=89
Connection: Keep-Alive
GET /els/logging?v=2&emrid=AAABOyURvmYywEs9C503tHIYynksmB61&emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&emnc=1&emtn=1&emhost=www.anbietercheck.de&ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&tpct=1&d=c2l0ZWlkH2FuYmlldGVyY2hlY2suZGUcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfTWFya2V0cGxhY2UvUGVyc29uYWwvSG9tZRxwYWdlSWQfaHR0cDovL3d3dy5hbmJpZXRlcmNoZWNrLmRlL1BlcnNvbmFsL1NvZnR3YXJlL2VMZWFybmluZy8sODIsMSw3MTksODE1P2xpbWl0PTEw HTTP/1.1

Host: www.econda-monitor.de
GET /els/logging?v=2&amp;emrid=AAABOyURvmYywEs9C503tHIYynksmB61&amp;emsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU&amp;emnc=1&amp;emtn=1&amp;emhost=www.anbietercheck.de&amp;ckey=0000147e-68973ff3-7eb9-4c52-89b4-209b018306d2&amp;tpct=1&amp;d=c2l0ZWlkH2FuYmlldGVyY2hlY2suZGUcaG9zdB93d3cuYW5iaWV0ZXJjaGVjay5kZRxyZWYfaHR0cDovL3Vua25vd24canYfMRxzd3NoHzExNzZ4ODg1HGVtb3NWH2NtNDUuMxxzb3VyY2UfZGlyZWN0HGNvbnRlbnQfTWFya2V0cGxhY2UvUGVyc29uYWwvSG9tZRxwYWdlSWQfaHR0cDovL3d3dy5hbmJpZXRlcmNoZWNrLmRlL1BlcnNvbmFsL1NvZnR3YXJlL2VMZWFybmluZy8sODIsMSw3MTksODE1P2xpbWl0PTEw 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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: emos-session=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU; emos-visitor=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU
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: Wed, 21 Nov 2012 22:23:37 GMT
GET /embed/9VtM32_8HWc?wmode=opaque&rel=0&showinfo=0&theme=light HTTP/1.1

Host: www.youtube.com
GET /embed/9VtM32_8HWc?wmode=opaque&amp;rel=0&amp;showinfo=0&amp;theme=light 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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: VISITOR_INFO1_LIVE=TIoxcizkAQ0; PREF=fv=10.0.45&amp;f4=4000
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Wed, 21 Nov 2012 22:23:38 GMT
Server: Apache
X-Content-Type-Options: nosniff
Expires: Tue, 27 Apr 1971 19:44:06 EST
Cache-Control: no-cache
Vary: Accept-Encoding
Content-Encoding: gzip
Transfer-Encoding: chunked
GET /upload/cache/thema_des_monats_24_1.200x159.jpg?1353536618652 HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:4:AAABOyURvmYywEs9C503tHIYynksmB61:1353536618086; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:38 GMT
Last-Modified: Fri, 09 Nov 2012 10:48:03 GMT
Etag: &quot;40f9a15-4d35-4ce0dafaa95e7&quot;
Accept-Ranges: bytes
Content-Length: 19765
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /sp/Diagnostics/1.0/analytics/apply?idsite=anbietercheck.de&rec=1&rand=0.8993328808717229&h=23&m=23&s=38&url=http%3A%2F%2Fwww.anbietercheck.de%2FPersonal%2FSoftware%2FeLearning%2F%2C82%2C1%2C719%2C815%3Flimit%3D10&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%22http%3A%2F%2Fwww.anbietercheck.de%2FPersonal%2FSoftware%2FeLearning%2F%2C82%2C1%2C719%2C815%3Flimit%3D10%22%2C%22siteId%22%3A%22anbietercheck.de%22%2C%22userId%22%3A%22%22%2C%22group%22%3A%22Marketplace%2FPersonal%2FHome%22%2C%22type%22%3A%22content%22%2C%22contentId%22%3Anull%2C%22productId%22%3Anull%2C%22eventName%22%3A%22pageLoad%22%7D&action_name=eLearning%20-%20Software%20-%20E-Learning-Software%20-%20AnbieterCheck.de HTTP/1.1

Host: api.haufe-lexware.com
GET /sp/Diagnostics/1.0/analytics/apply?idsite=anbietercheck.de&amp;rec=1&amp;rand=0.8993328808717229&amp;h=23&amp;m=23&amp;s=38&amp;url=http%3A%2F%2Fwww.anbietercheck.de%2FPersonal%2FSoftware%2FeLearning%2F%2C82%2C1%2C719%2C815%3Flimit%3D10&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%22http%3A%2F%2Fwww.anbietercheck.de%2FPersonal%2FSoftware%2FeLearning%2F%2C82%2C1%2C719%2C815%3Flimit%3D10%22%2C%22siteId%22%3A%22anbietercheck.de%22%2C%22userId%22%3A%22%22%2C%22group%22%3A%22Marketplace%2FPersonal%2FHome%22%2C%22type%22%3A%22content%22%2C%22contentId%22%3Anull%2C%22productId%22%3Anull%2C%22eventName%22%3A%22pageLoad%22%7D&amp;action_name=eLearning%20-%20Software%20-%20E-Learning-Software%20-%20AnbieterCheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
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: Wed, 21 Nov 2012 22:23:38 GMT
Set-Cookie: BIGipServerPOOL-atlantik-AppServer-Group-2-http=3575556288.49300.0000; path=/
GET /yts/img/pixel-vfl3z5WfW.gif HTTP/1.1

Host: s.ytimg.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.youtube.com/embed/9VtM32_8HWc?wmode=opaque&amp;rel=0&amp;showinfo=0&amp;theme=light
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Tue, 16 Oct 2012 23:01:29 GMT
Date: Wed, 21 Nov 2012 20:43:27 GMT
Expires: Thu, 21 Nov 2013 20:43:27 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 43
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 6011
GET /yts/jsbin/www-embed_core_module-vflHovH55.js HTTP/1.1

Host: s.ytimg.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.youtube.com/embed/9VtM32_8HWc?wmode=opaque&amp;rel=0&amp;showinfo=0&amp;theme=light
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Thu, 15 Nov 2012 17:53:19 GMT
Date: Wed, 21 Nov 2012 20:43:25 GMT
Expires: Thu, 21 Nov 2013 20:43:25 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 44602
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 6013
GET /yts/cssbin/www-embed-vflwCxCa2.css HTTP/1.1

Host: s.ytimg.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.youtube.com/embed/9VtM32_8HWc?wmode=opaque&amp;rel=0&amp;showinfo=0&amp;theme=light
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 13 Nov 2012 18:02:08 GMT
Date: Wed, 21 Nov 2012 20:43:25 GMT
Expires: Thu, 21 Nov 2013 20:43:25 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 28745
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 6013
GET /yts/imgbin/www-refresh-vflrvDBWB.png HTTP/1.1

Host: s.ytimg.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://s.ytimg.com/yts/cssbin/www-embed-vflwCxCa2.css
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 06 Nov 2012 19:58:12 GMT
Date: Wed, 21 Nov 2012 20:43:25 GMT
Expires: Thu, 21 Nov 2013 20:43:25 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 40884
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 6014
GET /project/ajax-includes/socialposts.php?kriteriumID=815&limit=10&before=2012-11-23&strlen=110&_=1353536618657 HTTP/1.1

Host: www.anbietercheck.de
GET /project/ajax-includes/socialposts.php?kriteriumID=815&amp;limit=10&amp;before=2012-11-23&amp;strlen=110&amp;_=1353536618657 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: application/json, text/javascript, */*; q=0.01
Accept-Language: en-us,en;q=0.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-Type: application/json
X-Requested-With: XMLHttpRequest
Referer: http://www.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:4:AAABOyURvmYywEs9C503tHIYynksmB61:1353536618086; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: application/json
Date: Wed, 21 Nov 2012 22:23:38 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 6669
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /profile_images/2247417625/cornerstone_careers_normal.jpg HTTP/1.1

Host: a0.twimg.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
x-amz-id-2: 8EsDSTBaJrntv1yaxleBvhOxP+kyn59zZu+qI0TPPORguMIl488lMNTH3GWk7yzq
x-amz-request-id: 0EC3C07ADDA96EA6
Last-Modified: Thu, 24 May 2012 23:58:15 GMT
Etag: &quot;a4e6f06a568bcdf7c4a13da46dfb6eb9&quot;
Accept-Ranges: bytes
Content-Length: 1568
Server: AmazonS3
X-CDN: AKAM, AKAM
Cache-Control: public, max-age=30761319
Expires: Tue, 12 Nov 2013 23:12:19 GMT
Date: Wed, 21 Nov 2012 22:23:40 GMT
Connection: keep-alive
GET /profile_images/1211177483/Michael_Repnik_normal.jpg HTTP/1.1

Host: a0.twimg.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
x-amz-id-2: /RpigGV3Z0foDegGzLwUkG9neeHpX55yDdtM61A2LWilI1GHetiqQLRsQvSqca97
x-amz-request-id: 59B4D9B73759770E
Last-Modified: Sun, 09 Jan 2011 18:50:54 GMT
Etag: &quot;18d2d6e579d2381e5b626fe2fa3a16ca&quot;
Accept-Ranges: bytes
Content-Length: 4035
Server: AmazonS3
X-CDN: AKAM, AKAM, AKAM, AKAM
Cache-Control: max-age=31322647
Expires: Tue, 19 Nov 2013 11:07:47 GMT
Date: Wed, 21 Nov 2012 22:23:40 GMT
Connection: keep-alive
GET /profile_images/1824170245/PM_Logo_CMYK_minimal_76_normal.jpg HTTP/1.1

Host: a0.twimg.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
x-amz-id-2: 3LvX2NOvEYyL22szpqTG5vGAo5iMzBAFTbvQt3+GBHHnQuxnG+rwPmY89RhqEucy
x-amz-request-id: C3F58464B132CF71
Last-Modified: Mon, 13 Feb 2012 09:02:14 GMT
Etag: &quot;0c0a3f9ffa70a77b745fc29fa834316e&quot;
Accept-Ranges: bytes
Content-Length: 931
Server: AmazonS3
X-CDN: AKAM, AKAM, AKAM, AKAM, AKAM
Cache-Control: public, max-age=30284868
Expires: Thu, 07 Nov 2013 10:51:28 GMT
Date: Wed, 21 Nov 2012 22:23:40 GMT
Connection: keep-alive
GET /profile_images/1629211535/Kenenxa-social-icon-2_normal.gif HTTP/1.1

Host: a0.twimg.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/gif
x-amz-id-2: xQ6/QeP+1oumoEYXI1Y7gzRcMNLjN2lXy+IMviF+w4i7v5WfbBYSn1Ga36BJ3JsR
x-amz-request-id: B3D397C6B9153639
Last-Modified: Tue, 08 Nov 2011 19:05:43 GMT
Etag: &quot;754292f70e3867b91164f8a53424e1d5&quot;
Accept-Ranges: bytes
Content-Length: 904
Server: AmazonS3
X-CDN: AKAM, AKAM, AKAM
Cache-Control: public, max-age=31488527
Expires: Thu, 21 Nov 2013 09:12:27 GMT
Date: Wed, 21 Nov 2012 22:23:40 GMT
Connection: keep-alive
GET /profile_images/2323384254/i48y7e19dnlvbcu9xun5_normal.jpeg HTTP/1.1

Host: a0.twimg.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
x-amz-id-2: s1pI4llwtSnlJdYKm/q1B3DcaMfTnBJsUd9jTS8gDk8SuRa8PuBTphFvs5otLWpr
x-amz-request-id: 2239696BBF0EA2A8
Last-Modified: Tue, 19 Jun 2012 20:29:48 GMT
Etag: &quot;8a6a4e5042daa66b8546f94fdf882e97&quot;
Accept-Ranges: bytes
Content-Length: 1172
Server: AmazonS3
X-CDN: AKAM, AKAM, AKAM, AKAM
Cache-Control: public, max-age=30667893
Expires: Mon, 11 Nov 2013 21:15:13 GMT
Date: Wed, 21 Nov 2012 22:23:40 GMT
Connection: keep-alive
GET /yts/swfbin/watch_as3-vfl1ubMZd.swf HTTP/1.1

Host: s.ytimg.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.youtube.com/embed/9VtM32_8HWc?wmode=opaque&amp;rel=0&amp;showinfo=0&amp;theme=light
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Tue, 20 Nov 2012 22:21:28 GMT
Date: Wed, 21 Nov 2012 20:43:24 GMT
Expires: Thu, 21 Nov 2013 20:43:24 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 281238
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 6016
GET /-Pmex1ISvo8U/AAAAAAAAAAI/AAAAAAAAAA8/lgVZSJWjSFI/photo.jpg?sz=50 HTTP/1.1

Host: lh5.googleusercontent.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
Access-Control-Allow-Origin: *
Etag: &quot;vf&quot;
Expires: Thu, 22 Nov 2012 22:23:29 GMT
Content-Disposition: inline;filename=&quot;Citrix_corporate_logo_-_SIG-1.jpg&quot;
X-Content-Type-Options: nosniff
Date: Wed, 21 Nov 2012 22:23:29 GMT
Server: fife
Content-Length: 1103
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400, no-transform
Age: 11
GET /-I0pCtrDQiv4/AAAAAAAAAAI/AAAAAAAAADY/I1BErXZ1Ye4/photo.jpg?sz=50 HTTP/1.1

Host: lh3.googleusercontent.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
Access-Control-Allow-Origin: *
Etag: &quot;v36&quot;
Expires: Thu, 22 Nov 2012 22:23:29 GMT
Content-Disposition: inline;filename=&quot;&quot;
X-Content-Type-Options: nosniff
Date: Wed, 21 Nov 2012 22:23:29 GMT
Server: fife
Content-Length: 2094
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400, no-transform
Age: 11
GET /-thmsmvE7BKk/AAAAAAAAAAI/AAAAAAAAAFA/u7lG8qYMFRg/photo.jpg?sz=50 HTTP/1.1

Host: lh6.googleusercontent.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
HTTP/1.1 200 OK

Content-Type: image/jpeg
Access-Control-Allow-Origin: *
Etag: &quot;v50&quot;
Expires: Thu, 22 Nov 2012 22:23:29 GMT
Content-Disposition: inline;filename=&quot;SkillSoft_Square.jpg&quot;
X-Content-Type-Options: nosniff
Date: Wed, 21 Nov 2012 22:23:29 GMT
Server: fife
Content-Length: 1675
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400, no-transform
Age: 11
GET /favicon.ico HTTP/1.1

Host: www.anbietercheck.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: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:4:AAABOyURvmYywEs9C503tHIYynksmB61:1353536618086; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 22:23:40 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 226
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
GET /layouts/anbietercheck/script/patterns/de.js HTTP/1.1

Host: www.anbietercheck.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.anbietercheck.de/Personal/Software/eLearning/,82,1,719,815?limit=10
Cookie: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:4:AAABOyURvmYywEs9C503tHIYynksmB61:1353536618086; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 22:23:40 GMT
Last-Modified: Tue, 14 Aug 2012 14:02:40 GMT
Etag: &quot;404a609-13ba9-4c73a436d4349&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 44211
Keep-Alive: timeout=15, max=93
Connection: Keep-Alive
GET /favicon.ico HTTP/1.1

Host: www.anbietercheck.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: syndicat=repks5vqlkfglvhg801cdal8p5; synlog=20121121repks5vqlkfglvhg801cdal8p5; anbietercheck:lastCriterias=719%2C815; emos_jcsid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:4:AAABOyURvmYywEs9C503tHIYynksmB61:1353536618086; emos_jcvid=AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1:AAABOyURvYrZQUb*tFNeCKpLqGSb8grU:1353536617865:0:true:1
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 22:23:41 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 226
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
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: Wed, 21 Nov 2012 22:23:42 GMT
Connection: keep-alive
GET /crossdomain.xml HTTP/1.1

Host: i2.ytimg.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/x-cross-domain-policy
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Thu, 09 Feb 2012 23:54:11 GMT
Date: Wed, 21 Nov 2012 20:43:28 GMT
Expires: Thu, 22 Nov 2012 02:43:28 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 97
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=21600
Age: 6014
GET /vi/9VtM32_8HWc/hqdefault.jpg HTTP/1.1

Host: i2.ytimg.com

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

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 22:23:31 GMT
Expires: Thu, 22 Nov 2012 04:23:31 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 12827
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=21600
Age: 11