XSS, WordPress Plugin, Cross Site Scripting, timthumb.php, CWE-79, CAPEc-86 CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') Report generated by XSS.CX at Wed Mar 09 12:56:09 CST 2011.
The DORK Report Loading
1. Cross-site scripting (reflected)
2. Cookie without HttpOnly flag set
3. Cross-domain script include
4. Private IP addresses disclosed
4.1. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/fleche1.png
4.2. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/fleche2.png
4.3. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/loading-bar-black.gif
4.4. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/favicon.ico
4.5. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/footer.png
4.6. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/rss.gif
4.7. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/sidebar.png
4.8. http://www.endusersharepoint.com/blog/wp-content/uploads/2009/12/RackSpace-168x52.gif
4.9. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/05/MarcAnderson-BookCover-165x241.gif
4.10. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/08/ProductivityKiller-165x239.jpg
4.11. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/10/VerticalBlank120x50.png
4.12. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-10-05-SharePointMaturityModel-Featured.png
4.13. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-01-SharePointBPMV2-04-Rotator.png
4.14. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-01-UncleSam.png
4.15. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-12-SPManagedMetadataOverviewRotator.png
4.16. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-11-30-SPSolutionForInterdepartmental-Part01.png
4.17. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-12-06-PollForSharePoint-Rotator.png
4.18. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-12-19-NBSPLogo.png
4.19. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2011-04-11-EuropeanBestPractices.png
4.20. http://www.endusersharepoint.com/blog/wp-content/uploads/2011/02/2011-03-08-SPAustralia2.png
4.21. http://www.endusersharepoint.com/blog/wp-content/uploads/2011/02/2011-03-16-SPNewZealand2.png
4.22. http://www.endusersharepoint.com/favicon.ico
5. Content type incorrectly stated
1. Cross-site scripting (reflected)
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/themes/streamline_30/tools/timthumb.php
Issue detail
The value of the src request parameter is copied into the HTML document as plain text between tags. The payload 72827<script>alert(1)</script>1ee5b793637 was submitted in the src 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.
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.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised. User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc). In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /blog/wp-content/themes/streamline_30/tools/timthumb.php?src=/blog/wp-content/uploads/2009/12/markmiller-headshot-125x144.gif72827<script>alert(1)</script>1ee5b793637 &h=100&w=100&zc=1 HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 400 Bad Request Date: Tue, 08 Mar 2011 20:36:07 GMT Server: Apache/2.2 Content-Length: 119 Connection: close Content-Type: text/html; charset=UTF-8 file not found blog/wp-content/uploads/2009/12/markmiller-headshot-125x144.gif72827<script>alert(1)</script>1ee5b793637
2. Cookie without HttpOnly flag set
previous
next
Summary
Severity:
Low
Confidence:
Firm
Host:
http://www.endusersharepoint.com
Path:
/
Issue detail
The following cookies were issued by the application and do not have the HttpOnly flag set:PHPSESSID=khaou06dtndkcgjhbodmptai41; path=/ X-Mapping-ocilbnmb=A032E6A351179F2DEB04BF47AB382FE2; path=/ The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Issue background
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.
Request
GET / HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Server: Apache/2.2 Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Content-Type: text/html; charset=UTF-8 Date: Tue, 08 Mar 2011 20:35:08 GMT X-Pingback: http://www.endusersharepoint.com/blog/xmlrpc.php Expires: Thu, 19 Nov 1981 08:52:00 GMT Pragma: no-cache Connection: Keep-AliveSet-Cookie: PHPSESSID=khaou06dtndkcgjhbodmptai41; path=/ Set-Cookie: X-Mapping-ocilbnmb=A032E6A351179F2DEB04BF47AB382FE2; path=/ Content-Length: 119432 <!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" dir="ltr" lang="en-US" xml:lang="en-US">...[SNIP]...
3. Cross-domain script include
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/250/addthis_widget.js
Issue background
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.
Request
GET / HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Server: Apache/2.2 Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Content-Type: text/html; charset=UTF-8 Date: Tue, 08 Mar 2011 20:35:08 GMT X-Pingback: http://www.endusersharepoint.com/blog/xmlrpc.php Expires: Thu, 19 Nov 1981 08:52:00 GMT Pragma: no-cache Connection: Keep-Alive Set-Cookie: PHPSESSID=khaou06dtndkcgjhbodmptai41; path=/ Set-Cookie: X-Mapping-ocilbnmb=A032E6A351179F2DEB04BF47AB382FE2; path=/ Content-Length: 119432 <!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" dir="ltr" lang="en-US" xml:lang="en-US">...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pub=xa-4b1d6b5042634130"> </script>...[SNIP]...
4. Private IP addresses disclosed
previous
next
There are 22 instances of this issue:
Issue background
RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways. Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.
Issue remediation
There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.
4.1. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/fleche1.png
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/plugins/featured-content-gallery/css/img/fleche1.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/plugins/featured-content-gallery/css/img/fleche1.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Fri, 04 Dec 2009 05:42:36 GMT Content-Length: 801 Date: Tue, 08 Mar 2011 20:35:28 GMT X-Varnish: 2037467300 2037451314 Age: 170 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...2...2......?......tEXtSoftware.Adobe ImageReadyq.e<....IDATx.b......0.L....zd.#C.#.... <.=...b6e...O.>q....Z....n.f.......:.hfA``.........]./M<.....{..bzfv.{...>...C9......ss..S.N%...[SNIP]...
4.2. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/fleche2.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/plugins/featured-content-gallery/css/img/fleche2.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/plugins/featured-content-gallery/css/img/fleche2.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Fri, 04 Dec 2009 05:42:36 GMT Content-Length: 791 Date: Tue, 08 Mar 2011 20:35:28 GMT X-Varnish: 2037467302 2037451315 Age: 170 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...2...2......?......tEXtSoftware.Adobe ImageReadyq.e<....IDATx.b......0.L....zd.#C.#.... <.=...'.)S.t.........?...........<.............|f.V.L.6l.qss..............E.{....ss..aQ..:u*Y...[SNIP]...
4.3. http://www.endusersharepoint.com/blog/wp-content/plugins/featured-content-gallery/css/img/loading-bar-black.gif
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/plugins/featured-content-gallery/css/img/loading-bar-black.gif
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/plugins/featured-content-gallery/css/img/loading-bar-black.gif HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/gif Last-Modified: Fri, 04 Dec 2009 05:42:36 GMT Content-Length: 10814 Date: Tue, 08 Mar 2011 20:35:28 GMT X-Varnish: 2037467292 2037451316 Age: 170 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT GIF89a.............@@@XXXbbbFFFLLL666&&&:::***"""......NNNBBB......444... 000...888......(((<<<TTT...^^^hhh!..Made by AjaxLoad.info.!... ...!..NETSCAPE2.0.....,........... .di.h..l..p,.tm.x..|....p...[SNIP]...
4.4. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/favicon.ico
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/themes/streamline_30/images/favicon.ico
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/themes/streamline_30/images/favicon.ico HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 404 File not found Server: Varnish X-Varnish: 2037467634 Retry-After: 0 X-Cache: MISS Content-Type: text/html; charset=utf-8 Date: Tue, 08 Mar 2011 20:35:33 GMT Via: 1.1 varnish 172.17.2.94 Connection: Keep-Alive Age: 1 Content-Length: 473 <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>404 File not found</ti...[SNIP]...
4.5. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/footer.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/themes/streamline_30/images/footer.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/themes/streamline_30/images/footer.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Fri, 04 Dec 2009 04:46:23 GMT Content-Length: 2896 Date: Tue, 08 Mar 2011 20:35:19 GMT X-Varnish: 2037466441 2037460679 Age: 62 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR..............u.Y... pHYs..........#.u.. OiCCPPhotoshop ICC profile..x..SgTS..=...BK...KoR.. RB....&*! .J.!...Q..EE...........Q,.. ...!.........{.k........>...........H3Q5...B............[SNIP]...
4.6. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/rss.gif
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/themes/streamline_30/images/rss.gif
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/themes/streamline_30/images/rss.gif HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/gif Last-Modified: Fri, 04 Dec 2009 04:46:29 GMT Content-Length: 1044 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465852 2037451757 Age: 149 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT GIF89a.....................e..i..........................y..|..}....................................................V..Z..[..d..h..p..t..x..{..{..|..~..~.................J..O..Q..R..T..U..V..X..Z..a....[SNIP]...
4.7. http://www.endusersharepoint.com/blog/wp-content/themes/streamline_30/images/sidebar.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/themes/streamline_30/images/sidebar.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/themes/streamline_30/images/sidebar.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Fri, 04 Dec 2009 04:46:31 GMT Content-Length: 3030 Date: Tue, 08 Mar 2011 20:35:18 GMT X-Varnish: 2037466275 2037451783 Age: 153 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR.......d............ pHYs.........n.u>.. OiCCPPhotoshop ICC profile..x..SgTS..=...BK...KoR.. RB....&*! .J.!...Q..EE...........Q,.. ...!.........{.k........>...........H3Q5...B............[SNIP]...
4.8. http://www.endusersharepoint.com/blog/wp-content/uploads/2009/12/RackSpace-168x52.gif
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2009/12/RackSpace-168x52.gif
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2009/12/RackSpace-168x52.gif HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/gif Last-Modified: Thu, 10 Dec 2009 15:25:54 GMT Content-Length: 3606 Date: Tue, 08 Mar 2011 20:35:19 GMT X-Varnish: 2037466431 2037460704 Age: 61 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT GIF89a..4.............................................."""+++333;;;CCCKKKRRRZZZccckkkrsrzzz.........................................!........"..(..1........!..)..)..1..1..1..7..:.#A.)B.-J.4P....)J.1J....[SNIP]...
4.9. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/05/MarcAnderson-BookCover-165x241.gif
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/05/MarcAnderson-BookCover-165x241.gif
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/05/MarcAnderson-BookCover-165x241.gif HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/gif Last-Modified: Thu, 27 May 2010 01:49:31 GMT Content-Length: 20719 Date: Tue, 08 Mar 2011 20:35:19 GMT X-Varnish: 2037466420 2037460670 Age: 62 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT GIF89a..........................................!...!.!..) '1,. ,/5&0B7..7..7.8..58B1:J7!%259>;E9AJ9DSC..F..F..J..I')J75RA9HEGLOQLRZJRZISdNZlR..N."R24Z..V..W.!Y*.]88^@BY\acSUcbch. l .g..f..i.!k&*e37o...[SNIP]...
4.10. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/08/ProductivityKiller-165x239.jpg
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/08/ProductivityKiller-165x239.jpg
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/08/ProductivityKiller-165x239.jpg HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/jpeg Last-Modified: Mon, 09 Aug 2010 22:18:50 GMT Content-Length: 13213 Date: Tue, 08 Mar 2011 20:35:18 GMT X-Varnish: 2037466293 2037460663 Age: 61 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT ......JFIF.....d.d......LEAD Technologies Inc. V1.01................. ......... . ..... .................[SNIP]...
4.11. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/10/VerticalBlank120x50.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/10/VerticalBlank120x50.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/10/VerticalBlank120x50.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Tue, 26 Oct 2010 14:12:36 GMT Content-Length: 26695 Date: Tue, 08 Mar 2011 20:35:19 GMT X-Varnish: 2037466442 2037460678 Age: 62 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...x...2.............sBIT....|.d.... pHYs...........~.....tEXtSoftware.Macromedia Fireworks 8.h.x....tEXtCreation Time.10/26/10.......6prVWx...A......W.MB....|F ...5vz.yV.................[SNIP]...
4.12. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-10-05-SharePointMaturityModel-Featured.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/11/2010-10-05-SharePointMaturityModel-Featured.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/11/2010-10-05-SharePointMaturityModel-Featured.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Fri, 05 Nov 2010 15:00:52 GMT Content-Length: 95756 Date: Tue, 08 Mar 2011 20:35:15 GMT X-Varnish: 2037465966 2037451010 Age: 160 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,.....EM..... pHYs..........+......tIME.........>.....tEXtAuthor....H....tEXtDescription.. !#... tEXtCopyright....:....tEXtCreation time.5.. ... tEXtSoftware.]p.:....tEXtDisclai...[SNIP]...
4.13. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-01-SharePointBPMV2-04-Rotator.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/11/2010-11-01-SharePointBPMV2-04-Rotator.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/11/2010-11-01-SharePointBPMV2-04-Rotator.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 08 Nov 2010 18:52:59 GMT Content-Length: 106333 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465847 2037451012 Age: 159 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,....../......sBIT....|.d.... pHYs..y...y..........tEXtSoftware.Macromedia Fireworks 8.h.x....tEXtCreation Time.11/05/10Z.-9..."prVWx... \.G....A.(...k....c.iL4qs..? r..DD9.<.Y....[SNIP]...
4.14. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-01-UncleSam.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/11/2010-11-01-UncleSam.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/11/2010-11-01-UncleSam.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 01 Nov 2010 15:05:14 GMT Content-Length: 431260 Date: Tue, 08 Mar 2011 20:35:15 GMT X-Varnish: 2037465964 2037451009 Age: 160 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,....../......sBIT....|.d.... pHYs............f....tEXtCreation Time.11/01/10...n....tEXtSoftware.Macromedia Fireworks 8.h.x.. .prVWx..Ys...^......JMn..:J!..n]._......@.LC. 4.....[SNIP]...
4.15. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/11/2010-11-12-SPManagedMetadataOverviewRotator.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/11/2010-11-12-SPManagedMetadataOverviewRotator.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/11/2010-11-12-SPManagedMetadataOverviewRotator.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 15 Nov 2010 16:00:27 GMT Content-Length: 216889 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465851 2037451014 Age: 159 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,....../......sBIT....|.d.... pHYs...........~.....tEXtCreation Time.11/15/10g.......tEXtSoftware.Macromedia Fireworks 8.h.x....prVWx...m..6.......-l.Z.]........w..ez.<.%7.vf......[SNIP]...
4.16. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-11-30-SPSolutionForInterdepartmental-Part01.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/12/2010-11-30-SPSolutionForInterdepartmental-Part01.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/12/2010-11-30-SPSolutionForInterdepartmental-Part01.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Thu, 02 Dec 2010 16:53:46 GMT Content-Length: 456620 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465846 2037451011 Age: 159 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,....../......sBIT....|.d.... pHYs..%...%..lU......tEXtSoftware.Macromedia Fireworks 8.h.x....tEXtCreation Time.12/02/10........prVWx..Xov.6..&W..{3.H.=1...Y...{..........{..n0....[SNIP]...
4.17. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-12-06-PollForSharePoint-Rotator.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/12/2010-12-06-PollForSharePoint-Rotator.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/12/2010-12-06-PollForSharePoint-Rotator.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 06 Dec 2010 15:03:47 GMT Content-Length: 61674 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465850 2037451013 Age: 159 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...:...,....../......sBIT....|.d.... pHYs...........~.....tEXtSoftware.Macromedia Fireworks 8.h.x....tEXtCreation Time.12/06/10y..J...?prVWx....z.0.....V.....C..QWqZk...........r...Y.....[SNIP]...
4.18. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2010-12-19-NBSPLogo.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/12/2010-12-19-NBSPLogo.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/12/2010-12-19-NBSPLogo.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 20 Dec 2010 03:47:58 GMT Content-Length: 11908 Date: Tue, 08 Mar 2011 20:35:14 GMT X-Varnish: 2037465845 2037460558 Age: 58 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR.......M............ pHYs..........+......tIME...../$I.......tEXtAuthor....H....tEXtDescription.. !#... tEXtCopyright....:....tEXtCreation time.5.. ... tEXtSoftware.]p.:....tEXtDisclai...[SNIP]...
4.19. http://www.endusersharepoint.com/blog/wp-content/uploads/2010/12/2011-04-11-EuropeanBestPractices.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2010/12/2011-04-11-EuropeanBestPractices.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2010/12/2011-04-11-EuropeanBestPractices.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Thu, 02 Dec 2010 04:44:12 GMT Content-Length: 76816 Date: Tue, 08 Mar 2011 20:35:18 GMT X-Varnish: 2037466291 2037460659 Age: 61 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...4...R......[(l....sBIT....|.d.... pHYs..%...%..lU......tEXtSoftware.Macromedia Fireworks 8.h.x....tEXtCreation Time.12/01/10.O.....0prVWx..Y.xT.....ew...@ eiK..$.TE:..".R....#M.P..U...[SNIP]...
4.20. http://www.endusersharepoint.com/blog/wp-content/uploads/2011/02/2011-03-08-SPAustralia2.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2011/02/2011-03-08-SPAustralia2.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2011/02/2011-03-08-SPAustralia2.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 21 Feb 2011 06:10:26 GMT Content-Length: 56432 Date: Tue, 08 Mar 2011 20:35:18 GMT X-Varnish: 2037466272 2037451808 Age: 153 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...4...>......m.M....sBIT....|.d.... pHYs..%...%..lU......tEXtTitle....'....tEXtCreation time.5.. ....tEXtWarning.........tEXtComment.........tEXtAuthor....H....tEXtDisclaimer...........[SNIP]...
4.21. http://www.endusersharepoint.com/blog/wp-content/uploads/2011/02/2011-03-16-SPNewZealand2.png
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/uploads/2011/02/2011-03-16-SPNewZealand2.png
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /blog/wp-content/uploads/2011/02/2011-03-16-SPNewZealand2.png HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Content-Type: image/png Last-Modified: Mon, 21 Feb 2011 06:10:31 GMT Content-Length: 59014 Date: Tue, 08 Mar 2011 20:35:18 GMT X-Varnish: 2037466292 2037460650 Age: 61 Connection: keep-alive Via: 1.1 varnish 172.17.2.94 X-Cache: HIT .PNG . ...IHDR...4...6.....I>e ....sBIT....|.d.... pHYs..%...%..lU......tEXtTitle....'....tEXtCreation time.5.. ....tEXtWarning.........tEXtComment.........tEXtAuthor....H....tEXtDisclaimer...........[SNIP]...
4.22. http://www.endusersharepoint.com/favicon.ico
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.endusersharepoint.com
Path:
/favicon.ico
Issue detail
The following RFC 1918 IP address was disclosed in the response:
Request
GET /favicon.ico HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93; __utmz=165886570.1299616511.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=165886570.594158217.1299616511.1299616511.1299616511.1; __utmc=165886570; __utmb=165886570.2.10.1299616511
Response
HTTP/1.1 404 File not found Server: Varnish X-Varnish: 2037477023 Retry-After: 0 X-Cache: MISS Content-Type: text/html; charset=utf-8 Date: Tue, 08 Mar 2011 20:37:14 GMT Via: 1.1 varnish 172.17.2.94 Connection: Keep-Alive Age: 1 Content-Length: 473 <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>404 File not found</ti...[SNIP]...
5. Content type incorrectly stated
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.endusersharepoint.com
Path:
/blog/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.js.php
Issue detail
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 script .
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.
Request
GET /blog/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.js.php HTTP/1.1 Host: www.endusersharepoint.com Proxy-Connection: keep-alive Referer: http://www.endusersharepoint.com/ Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=kd0082cvfirm4dlcpucvi94qg3; X-Mapping-ocilbnmb=9A16FEF51028A44CAC3073F9C6551D93
Response
HTTP/1.1 200 OK Server: Apache/2.2 Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0Content-Type: text/html; charset=UTF-8 Date: Tue, 08 Mar 2011 20:35:09 GMT Expires: Thu, 19 Nov 1981 08:52:00 GMT Pragma: no-cache Connection: Keep-Alive Content-Length: 24840 /* This file is part of JonDesign's SmoothGallery v2.0. 3.2.0 JonDesign's SmoothGallery is free software; you can redistribute it and/or modify it under the terms of the GNU General Publ...[SNIP]...
Report generated by XSS.CX at Wed Mar 09 12:56:09 CST 2011.