The __utmz cookie appears to be vulnerable to SQL injection attacks. The payloads 24195852'%20or%201%3d1--%20 and 24195852'%20or%201%3d2--%20 were each submitted in the __utmz cookie. These two requests resulted in different responses, indicating that the input is being incorporated into a SQL query in an unsafe way.
Note that automated difference-based tests for SQL injection flaws can often be unreliable and are prone to false positive results. You should manually review the reported requests and responses to confirm whether a vulnerability is actually present.
Issue background
SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.
Issue remediation
The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.
You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:
One common defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defense may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defense to be bypassed.
Another often cited defense is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
Request 1
GET /default.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)24195852'%20or%201%3d1--%20; web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response 1
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:42:09 GMT Cache-Control: private Content-Length: 92560 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 19:34:09 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the StateID cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload ed16e(a)f8417156f7a was submitted in the StateID cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /Property/PropertyDetails.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1ed16e(a)f8417156f7a; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response (redirected)
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:41 GMT Cache-Control: private Content-Length: 96124 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:42 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/background.jpg HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/jpeg Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "2e4a819e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 892
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/gradient.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "2e4a819e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 1801
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/nav-divider.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "88ac839e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:20 GMT Content-Length: 417
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/nav.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "88ac839e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:20 GMT Content-Length: 2357
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/theme.min.css HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: text/css,*/*;q=0.1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: text/css Last-Modified: Mon, 20 Dec 2010 16:05:49 GMT Accept-Ranges: bytes ETag: "806c8bc45fa0cb1:0" Vary: Accept-Encoding Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:07 GMT Content-Length: 8212
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/top-nav-back-left.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "e2e869e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:19 GMT Content-Length: 463
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/top-nav-back-middle.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "e2e869e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:19 GMT Content-Length: 209
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/top-nav-back-right.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "e2e869e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:19 GMT Content-Length: 430
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /App_Themes/DeepSky/top-nav-back-sep.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:45 GMT Accept-Ranges: bytes ETag: "e2e869e5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:19 GMT Content-Length: 216
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /BuyYourHome/TransactionManagement.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:39 GMT Cache-Control: private Content-Length: 59473 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:23 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Concierge/Concierge.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 60783 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:06 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Handlers/HttpCombiner.ashx?s=home-css&v=12.5.10.53 HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: text/css,*/*;q=0.1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: public, must-revalidate, proxy-revalidate, max-age=2592000 Content-Type: text/css Expires: Fri, 04 Feb 2011 18:51:07 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:07 GMT Content-Length: 9155
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /HomeProtection/Default.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:41 GMT Cache-Control: private Content-Length: 58286 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:20 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/Home/dotted_vertical.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "e472fa05fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 107
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/Properties/featured/nav-left.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "aaf9fca15fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 380
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/Properties/featured/nav-right.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "5097faa15fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 382
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/eho.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "d414b09f5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 301
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/favicon.ico HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451; WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253452705:ss=1294253452705; web_authentication=610842E3B3B9EAF0C0E8B3BB4C2B8DC995026C2777929E1EBF75C871685C367C13B15AAD4AA6C5EEB3CD0D2B127D02229890623DC37D42264572D8241E984AF72766262108ED3EDDEC7EBB2B03110947B4D449795EA9939D0B16D123CC455BAFD6111514988E009A13373CBDD4C1412C0393118C; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/x-icon Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "d414b09f5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:34 GMT Content-Length: 1150
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/icon-chrome.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "2e77b29f5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 737
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/icon-firefox.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "2e77b29f5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 760
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/icon-ie.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:47 GMT Accept-Ranges: bytes ETag: "2e77b29f5fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 742
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/btn-sm.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "965a1ea25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 2425
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-gray-c-b-l.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "a48125a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 822
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-gray-c-b-r.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "fee327a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 822
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-gray-c-t-l.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "fee327a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 822
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-gray-c-t-r.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "fee327a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 822
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-c-b-l.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "cb2fa25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:23 GMT Content-Length: 375
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-c-b-r.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "cb2fa25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:23 GMT Content-Length: 372
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-c-t-l.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "cb2fa25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 369
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-c-t-r.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "666d31a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 377
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-x-b.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "666d31a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:23 GMT Content-Length: 168
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-gray-x-t.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "666d31a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 167
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-y-l.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "1a3236a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 172
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Images/skin/skin-shadow-y-r.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "1a3236a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:22 GMT Content-Length: 172
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /IntellisenseLocationsHandler.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: cbmove.com=R1219450306; StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 52762 Content-Type: application/x-javascript; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:50:59 GMT
var _a1os = new Array("Abbottstown, PA","Abell, MD","Aberdeen, MD","Abingdon, MD","Accident, MD","Accokeek, MD","Accomac, VA","Adams Morgan (Washington), DC","Adamstown, MD","Addison, PA","Adelphi, MD ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /MAPreviews/AboutPrev.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:39 GMT Cache-Control: private Content-Length: 62711 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:15 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /MarketWatch/default.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:41 GMT Cache-Control: private Content-Length: 71616 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:15 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Metros/MidAtlantic/Images/Skin/cb-logo.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "28593da25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 23896
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Metros/MidAtlantic/StyleSheets/metro-override.min.css HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: text/css,*/*;q=0.1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: text/css Last-Modified: Mon, 20 Dec 2010 16:05:49 GMT Accept-Ranges: bytes ETag: "cefcdc45fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:08 GMT Content-Length: 35
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /NRTProducts/include/images/btnList.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "e4cc71a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 1547
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /NRTProducts/include/images/btnMap.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:51 GMT Accept-Ranges: bytes ETag: "3e2f74a25fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:18 GMT Content-Length: 1920
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /NRTProducts/include/images/common_spacer.gif HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Content-Type: image/gif Last-Modified: Mon, 20 Dec 2010 16:04:59 GMT Accept-Ranges: bytes ETag: "c083f8a65fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:16 GMT Content-Length: 58
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Office/officeagentsearch.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 68461 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:01 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Property/PropertyDetails.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 302 Found Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 22:18:41 GMT Cache-Control: private Content-Length: 150 Content-Type: text/html; charset=utf-8 Location: /Property/PropertySearch.aspx Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:57:25 GMT Connection: close
<html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="%2fProperty%2fPropertySearch.aspx">here</a>.</h2> </body></html>
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Services/BuyersTips.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 164058 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:56:52 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Services/PropertyManagement.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 58143 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:56:52 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Services/SellersTips.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 123951 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:56:59 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Services/SettlementServices.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Cache-Control: private Content-Length: 60119 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:56:57 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /WebResource.axd?d=CQqtWzwIf2BaUNTC5BOozaIsnI905zGCHASPMGHo5JOerEOnXdc7bDn3-bnYnvCCrJ02GbiP3_1A1gK4AjQT9XR2WhxyiICUwaTApBUJuKJ44oOG0&t=634284362796489146 HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: text/css,*/*;q=0.1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Cache-Control: public Content-Length: 1379 Content-Type: text/css Expires: Thu, 05 Jan 2012 06:24:22 GMT Last-Modified: Mon, 20 Dec 2010 16:04:39 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:11 GMT
....foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */
/* This style sheet is intended to contain RARELY CHANGED rules used when the Menu contro ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ajax/NRT.WebSite.PropertySearch.Business.SearchController,NRT.Website.PropertySearch.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 8679 Content-Type: text/plain; charset=utf-8 Expires: Wed, 05 Jan 2011 18:51:13 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:12 GMT
// cached javascript var SearchController = { PersistConsumerSearch:function(ConsumerSearchID,srchCriteria,callback,context){return new ajax_request(this.url + '?_method=PersistConsumerSearch&_ses ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ajax/NRT.WebSite.PropertySearch.Business.SearchUIController,NRT.Website.PropertySearch.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 4367 Content-Type: text/plain; charset=utf-8 Expires: Wed, 05 Jan 2011 18:51:13 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:12 GMT
// cached javascript var SearchUIController = { GetNearbyCityLocationListHtml:function(currLocationID,currLocationDisplayName,stateID,stateDisplayName,regionID,distance,locXML,bRestore,changeRadio ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ajax/NRT.Website.MySite.Business.MySiteProvider,NRT.Website.MySite.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Cache-Control: private Content-Length: 15773 Content-Type: text/plain; charset=utf-8 Expires: Wed, 05 Jan 2011 18:51:13 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:12 GMT
// cached javascript var MySiteProvider = { DisableAccount:function(websiteID,consumerID,callback,context){return new ajax_request(this.url + '?_method=DisableAccount&_session=no','websiteID=' + e ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ajax/common.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Cache-Control: private Content-Length: 4577 Content-Type: text/plain; charset=utf-8 Expires: Wed, 05 Jan 2011 18:52:13 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:12 GMT
var requests = new Array();
if(typeof(XMLHttpRequest) == 'undefined') var XMLHttpRequest = function() { var request = null; try { request = new ActiveXObject('Msxml2.XMLHTTP'); } cat ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /default.aspx HTTP/1.1 Host: www.cbmove.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: WT_FPC=id=214b0590a973a7703931294253452705:lv=1294253572816:ss=1294253452705; StateID=-1; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); web_authentication=05AD2126EBC814A7AF39CB655F7DA3BC3ADC600BF8793F10A3F3C148BA290C57EA3172BCD0EF27E66EE3DC3CDA54713E3DCC7C547EDA6E49295EA30DD62E3AF57B6A6CA6193A1ED51B96BFBF826DEEF001B9255E8339BFDC3C55A5D4909FD2E668AA8C3665490181C07F679D858C761D7E0438DD; cbmove.com=R1219450306; __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.2.10.1294253451; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355;
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:10 GMT Cache-Control: private Content-Length: 92561 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:56:51 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /nrtproducts/include/images/qsTransparentBackground.png HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306; __utmz=127192799.1294253451.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=127192799.1361539182.1294253451.1294253451.1294253451.1; __utmc=127192799; __utmb=127192799.1.10.1294253451
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 16:04:59 GMT Accept-Ranges: bytes ETag: "ace419a75fa0cb1:0" Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:21 GMT Content-Length: 2178
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
The response contains the following Content-type statement:
Content-Type: text/plain; charset=utf-8
The response states that it contains plain text. However, it actually appears to contain script.
Request
GET /ajax/NRT.Website.MySite.Business.MySiteProvider,NRT.Website.MySite.ashx HTTP/1.1 Host: www.cbmove.com Proxy-Connection: keep-alive Referer: http://www.cbmove.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: StateID=-1; ASP.NET_SessionId=mwzoyg55c3zro245r4f1s355; cbmove.com=R1219450306
Response
HTTP/1.1 200 OK Set-Cookie: cbmove.com=R1219450306; path=/; expires=Wed, 05-Jan-2011 21:55:11 GMT Cache-Control: private Content-Length: 15773 Content-Type: text/plain; charset=utf-8 Expires: Wed, 05 Jan 2011 18:51:13 GMT Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Wed, 05 Jan 2011 18:51:12 GMT
// cached javascript var MySiteProvider = { DisableAccount:function(websiteID,consumerID,callback,context){return new ajax_request(this.url + '?_method=DisableAccount&_session=no','websiteID=' + e ...[SNIP]...