Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of 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 the lang request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 49a85"style%3d"x%3aexpr/**/ession(alert(1))"50bde32f295 was submitted in the lang parameter. This input was echoed as 49a85"style="x:expr/**/ession(alert(1))"50bde32f295 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.
Request
GET /Download/PreScan.aspx?lang=en-us49a85"style%3d"x%3aexpr/**/ession(alert(1))"50bde32f295 HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 1.1.4322 Cache-Control: no-cache Pragma: no-cache Expires: -1 Content-Type: text/html; charset=utf-8 Date: Tue, 16 Nov 2010 16:26:50 GMT Content-Length: 16074 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the lang request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f8512"style%3d"x%3aexpr/**/ession(alert(1))"b032a0eb9d0 was submitted in the lang parameter. This input was echoed as f8512"style="x:expr/**/ession(alert(1))"b032a0eb9d0 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.
The form contains the following password field with autocomplete enabled:
j_password
Issue background
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).
Request
GET /page/channel.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:38 GMT Connection: close Connection: Transfer-Encoding Content-Length: 40013
<!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"><head><title>NVIDIA Pa ...[SNIP]... <div style="width:205px;text-align:left;font:12px arial;color:#000000;"><form action="https://partnerforce.nvidia.com/irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default" method="POST" name="myform">
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.
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 /object/3d-vision-main.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:57 GMT Content-Length: 26696 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"><head><title>NVIDIA 3D ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/IO_27690.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:10 GMT Connection: close Connection: Transfer-Encoding Content-Length: 48539
<!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"><head><title>Help Us M ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/affiliate_program.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:24:00 GMT Content-Length: 22573 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"><head><title>Join Affi ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/au2010.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:54 GMT Content-Length: 32202 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"><head><title>Autodesk ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/drivers_faq.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:16 GMT Content-Length: 24723 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"><head><title>NVIDIA Dr ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/dvd_decoder.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:34 GMT Content-Length: 28039 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"><head><title>PureVideo ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/feature_powermizer.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:36 GMT Content-Length: 25692 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"><head><title>NVIDIA Po ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/hardware_support.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:40 GMT Content-Length: 25860 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"><head><title>Hardware ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/hawx2-bundle.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:56 GMT Content-Length: 26898 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"><head><title>Tom Clanc ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/hybrid_sli.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:36 GMT Content-Length: 30099 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"><head><title>Hybrid SL ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/legacy_stereo_3d_drivers.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:13 GMT Content-Length: 23932 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"><head><title>Legacy St ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/legal_info.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:59 GMT Content-Length: 31290 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"><head><title>Legal Inf ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/mac-driver-archive.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:12 GMT Content-Length: 21914 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"><head><title>CUDA Driv ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/main_mobo_gpus.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:24 GMT Content-Length: 25424 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"><head><title>NVIDIA Mo ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/mobogpu_nb.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:25 GMT Content-Length: 27461 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"><head><title>Motherboa ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/nforce_desktop_mcp.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:27 GMT Content-Length: 26270 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"><head><title>nForce De ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/nv_search_us.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:24:00 GMT Content-Length: 22497 Connection: close
GET /object/nvidia-multigpu-SLI-profile-update-v6-driver.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:13 GMT Content-Length: 21035 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"><head><title>NVIDIA DR ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/nvidia_purevideo.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:36 GMT Content-Length: 24913 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"><head><title>NVIDIA Pu ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/nvidia_system_tools_6.06.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:15 GMT Content-Length: 23588 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"><head><title>NVIDIA DR ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/nvtv_winxp_mc_1.20.45.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:14 GMT Content-Length: 25253 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"><head><title>NVTV - (1 ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/product_geforce_9800s_us.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:32 GMT Content-Length: 31591 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" xmlns:comem3="xalan://com.em3" xmlns ...[SNIP]... </script><script type="text/javascript" src="http://service.futuremark.com/services/nvidiagom/js/gomContainer.jsp"></script> ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/product_nforce_760s_us.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:34 GMT Content-Length: 30357 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" xmlns:comem3="xalan://com.em3" xmlns ...[SNIP]... </script><script type="text/javascript" src="http://service.futuremark.com/services/nvidiagom/js/gomContainer.jsp"></script> ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/promotion_gf_pc_kit.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:53 GMT Content-Length: 22677 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"><head><title>NVIDIA Ge ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/quadro-fermi-home.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:10 GMT Content-Length: 27166 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"><head><title>Quadro Fe ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/rss_home.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:59 GMT Content-Length: 26547 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"><head><title>NVIDIA RS ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/smartscan_faq.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:16 GMT Content-Length: 27462 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"><head><title>SmartScan ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/support_gts_450_gtx_460.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:40 GMT Content-Length: 23750 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"><head><title>GeForce G ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/support_oem.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:41 GMT Content-Length: 30857 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"><head><title>Computer ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/support_tpp.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:42 GMT Content-Length: 28919 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"><head><title>Tesla Pro ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/tegra-2.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:27 GMT Content-Length: 31232 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"><head><title>NVIDIA Te ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/tegra.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:10 GMT Content-Length: 25939 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"><head><title>Mobile</t ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/tvtuner_drivers.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:13 GMT Content-Length: 32679 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"><head><title>TV Tuner ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/unix.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:12 GMT Content-Length: 27007 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"><head><title>Unix Driv ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /object/wdm_drivers.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:14 GMT Content-Length: 31342 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"><head><title>WDM Drive ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/apple.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:27 GMT Content-Length: 31363 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"><head><title>NVIDIA GP ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/companyinfo.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:38 GMT Content-Length: 27571 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"><head><title>Company I ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/console.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:27 GMT Content-Length: 21657 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"><head><title>Game Cons ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/desktop.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:24 GMT Content-Length: 25640 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"><head><title>Desktop P ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/legacy.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:28 GMT Content-Length: 26458 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"><head><title>Legacy Pr ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/mobo.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:23 GMT Content-Length: 30623 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"><head><title>Motherboa ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/nbp.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:23 GMT Content-Length: 26961 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"><head><title>NVIDIA Bu ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/nbp_download.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:19 GMT Content-Length: 24971 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"><head><title>NVIDIA Bu ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/nforce_pro.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:25 GMT Content-Length: 28641 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"><head><title>nForce Pr ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/pp_preface.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:25 GMT Content-Length: 30280 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"><head><title>Preface</ ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/products.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:21 GMT Content-Length: 31105 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"><head><title>Products< ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/quadronvs.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:23 GMT Content-Length: 31316 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"><head><title>NVIDIA Qu ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/support.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:37 GMT Content-Length: 29465 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"><head><title>Support</ ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/support_product_registration.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:29 GMT Content-Length: 25244 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"><head><title>Product R ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/technologies.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:23:30 GMT Content-Length: 27981 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"><head><title>Technolog ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
GET /page/uli_drivers.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:25:20 GMT Content-Length: 24020 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"><head><title>Download ...[SNIP]... </form><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script> ...[SNIP]... <!--/DO NOT REMOVE/--> <script src="http://cts.channelintelligence.com/7240466_landing.js" type="text/javascript"></script> ...[SNIP]...
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).
HTTP/1.1 200 OK Cache-Control: max-age=86400 Content-Type: application/x-javascript Last-Modified: Wed, 19 Nov 2008 01:31:00 GMT Accept-Ranges: bytes ETag: "0e24d7ae649c91:241" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Vary: Accept-Encoding Date: Tue, 16 Nov 2010 16:24:16 GMT Connection: close Content-Length: 31174
// script.aculo.us dragdrop.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008
// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // (c) 2005-2008 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz) // // script.aculo.us is freely distributable under the terms of an MIT-style license. // For details, see the script.aculo.us web site: http://script.aculo.us/
The following email address was disclosed in the response:
id@Ls.tc
Request
GET /content/websidestory/omniture/production/s_code_us_dev_aut1.js HTTP/1.1 Host: www.nvidia.com Proxy-Connection: keep-alive Referer: http://www.nvidia.com/page/home.html Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.44 Safari/534.7 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: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031
Response
HTTP/1.1 200 OK Cache-Control: max-age=86400 Content-Type: application/x-javascript Last-Modified: Thu, 11 Nov 2010 19:30:43 GMT Accept-Ranges: bytes ETag: "ccb5beeed681cb1:241" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Vary: Accept-Encoding Date: Tue, 16 Nov 2010 16:23:06 GMT Connection: close Content-Length: 35814
/* SiteCatalyst code version: H.17. Copyright 1997-2008 Omniture, Inc. More info available at http://www.omniture.com */ /************************ ADDITIONAL FEATURES ************************
The following email address was disclosed in the response:
news@nvidia.com
Request
GET /object/rss_success_stories HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/xml;charset=UTF-8 Content-Length: 24588 Date: Tue, 16 Nov 2010 16:26:10 GMT Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0"><channel><title>NVIDIA Success Stories</title><link>http://www.nvidia.com</link><description>NVIDIA products are creating profound change in ...[SNIP]... <webMaster>news@nvidia.com</webMaster> ...[SNIP]...
The following email addresses were disclosed in the response:
8fujitsu@fujitsupc.com
Support@TriCadCam.com
Tech@ztgroup.com
hqservice@premiopc.com
info@xenon3d.com.au
maxvision.support@maxvision.com
support@alienware.com
support@csiopen.com
support@falcon-nw.com
support@fticomputer.com
support@hypersonic-pc.com
support@targetpcinc.com
support@velocitymicro.com
support@xicomputer.com
tech_support@acma.com
techs@coremicro.com
techsupport@armsystems.com
techsupport@cyberpowersystem.com
Request
GET /object/support_oem.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:41 GMT Content-Length: 30857 Connection: close
The following email addresses were disclosed in the response:
4tech@pssclabs.com
Support@ocf.co.uk
carri@carri.com
dragan.dimitrovici@xenon.com.au
hpc@sprinx.cz
info@comptronic.de
info@connoiseur.com
info@fluidyna.de
info@netwebindia.com
kontakt@megware.com
marketing@pm-mail.etatung.com.tw
sales@jrti.com
soporte@azken.com
support@cadnetwork.de
support@colfax-intl.com
support@dalco.ch
support@penguincomputing.com
support@siliconmechanics.com
support@streamline-computing.com
support@transtec.de
support@wksmail.com
tanak@taknet.com.sg
tech@armari.co.uk
tech@microway.com
technical@viglen.co.uk
technical_support@amax.com
techsupport@appro.com
tecnico@e4company.com
tesla@nsc-nvidia.com
yury.drozdov@e-tako.com
zye@honghutech.com
Request
GET /object/support_tpp.html HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Type: text/html;charset=UTF-8 Date: Tue, 16 Nov 2010 16:26:42 GMT Content-Length: 28919 Connection: close
The following credit card number was disclosed in the response:
5565561851111630
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 /docs/IO/43395/tesla-brochure-12-lr.pdf HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; __utmc=232777920; __utmb=232777920.1.10.1289924582;
Response
HTTP/1.1 200 OK Cache-Control: max-age=86400 Content-Length: 2650300 Content-Type: application/pdf Last-Modified: Fri, 12 Nov 2010 18:57:13 GMT Accept-Ranges: bytes ETag: "6bd4ce6a9b82cb1:241" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Date: Tue, 16 Nov 2010 16:24:01 GMT Connection: close
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.
Request
GET /content/services_toolkit/ddl2.php?func=getLastDownloadUpdate HTTP/1.1 Host: www.nvidia.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: ev1=%60; s_cc=true; __g_c=w%3A1%7Cb%3A3%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031; __utmz=232777920.1289924582.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_vi=[CS]v1|26715814851D3722-40000130C0543A5E[CE]; s_sq=%5B%5BB%5D%5D; s_nr=1289924657512; __utma=232777920.1848295861.1289924582.1289924582.1289924582.1; NVIDIADefaultLang=US; __utmc=232777920; __utmb=232777920.8.10.1289924582;
Response
HTTP/1.1 200 OK Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-Powered-By: PHP/5.2.6 Content-Type: text/html Date: Tue, 16 Nov 2010 16:25:46 GMT Content-Length: 10 Connection: close
20100127
8. Content type incorrectly statedprevious There are 3 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: application/x-javascript
The response states that it contains script. However, it actually appears to contain unrecognised content.
Request
GET /content/includes/redesign2010/js/global_menu.js HTTP/1.1 Host: www.nvidia.com Proxy-Connection: keep-alive Referer: http://www.nvidia.com/page/home.html Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.44 Safari/534.7 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: __g_c=w%3A1%7Cb%3A2%7Cc%3A274351956755462%7Cd%3A1%7Ca%3A0%7Ce%3A0.01%7Cf%3A0; __g_u=274351956755462_1_0.01_0_5_1290356580031
Response
HTTP/1.1 200 OK Cache-Control: max-age=86400 Content-Type: application/x-javascript Last-Modified: Wed, 29 Sep 2010 20:20:05 GMT Accept-Ranges: bytes ETag: "c6df74b41360cb1:241" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Vary: Accept-Encoding Date: Tue, 16 Nov 2010 16:23:06 GMT Connection: close Content-Length: 15860
function openGlobalSelector(){ if (window.XMLHttpRequest) { jQuery("#globalSelectorOpen").fadeIn(200); } else { jQuery("#globalSelectorOpen").show(); } } function closeGlobalSelector(){ ...[SNIP]...