SQL Injection, XSS, CWE-89, CWE-79, whichwebdesigncompany.com, CAPEC-86, CAPEC-66

CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Report generated by XSS.CX at Thu Mar 17 07:56:56 CDT 2011.


XSS.CX Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment.


XSS.CX Home XSS.CX Research Blog
Loading

1. SQL injection

2. Cross-site scripting (reflected)

3. Cleartext submission of password

3.1. http://www.whichwebdesigncompany.com/uk

3.2. http://www.whichwebdesigncompany.com/uk/profile/unco-web-design

4. Cookie without HttpOnly flag set

5. Password field with autocomplete enabled

5.1. http://www.whichwebdesigncompany.com/uk

5.2. http://www.whichwebdesigncompany.com/uk/profile/unco-web-design

6. Content type incorrectly stated

6.1. http://www.whichwebdesigncompany.com/u/uk/logos/12441033439592.gif

6.2. http://www.whichwebdesigncompany.com/u/uk/logos/12821514360749.gif

6.3. http://www.whichwebdesigncompany.com/u/uk/logos/12888830294299.gif

6.4. http://www.whichwebdesigncompany.com/u/uk/logos/12978772078098.gif

6.5. http://www.whichwebdesigncompany.com/u/uk/logos/12996958733562.jpg

6.6. http://www.whichwebdesigncompany.com/u/uk/logos/12997625149940.jpg

6.7. http://www.whichwebdesigncompany.com/u/uk/logos/12997875252665.jpg

6.8. http://www.whichwebdesigncompany.com/u/uk/logos/12998309968511.gif

6.9. http://www.whichwebdesigncompany.com/u/uk/logos/13000944696782.jpg

6.10. http://www.whichwebdesigncompany.com/u/uk/logos/13001099047109.jpg

6.11. http://www.whichwebdesigncompany.com/u/uk/logos/13001383193628.jpg

6.12. http://www.whichwebdesigncompany.com/u/uk/logos/13001924920340.jpg

6.13. http://www.whichwebdesigncompany.com/u/uk/logos/13002004415583.jpg



1. SQL injection  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk/profile/unco-web-design

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Issue background

SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.

Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.

Remediation background

The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.

You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:

Request 1

GET /uk/profile/unco-web-design' HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response 1

HTTP/1.1 301 Moved Permanently
Date: Wed, 16 Mar 2011 17:55:11 GMT
Set-Cookie: PHPSESSID=b3p8qb01mevh7m7t7emcgacjl7; expires=Sat, 16-Apr-2011 17:55:11 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: http://www.whichwebdesigncompany.com/uk/
Content-Length: 265
Connection: close
Content-Type: text/html

..................select * from companies where name_parsed='unco-web-design'' ---> mySQL Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''unco-web-design''' at line 1\n\r

Request 2

GET /uk/profile/unco-web-design'' HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response 2

HTTP/1.1 301 Moved Permanently
Date: Wed, 16 Mar 2011 17:55:15 GMT
Set-Cookie: PHPSESSID=tq0vqrctrrhi89uoeasql073s7; expires=Sat, 16-Apr-2011 17:55:15 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: http://www.whichwebdesigncompany.com/uk/
Content-Length: 18
Connection: close
Content-Type: text/html

..................

2. Cross-site scripting (reflected)  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk/profile/unco-web-design

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 b09d8"><script>alert(1)</script>eedc70267bf was submitted in the name of an arbitrarily supplied request 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 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.

Request

GET /uk/profile/unco-web-design?b09d8"><script>alert(1)</script>eedc70267bf=1 HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 17:54:48 GMT
Set-Cookie: PHPSESSID=jk59lh7qvbb3kafcr8qdmq8m16; expires=Sat, 16-Apr-2011 17:54:48 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 48478

<!--array(28) {
["companyId"]=>
string(4) "2233"
["clientsLocation"]=>
string(8) "UK based"
["description"]=>
string(232) "We work strategically, creatively and technically across all kind
...[SNIP]...
<a href="/uk/profile/unco-web-design?b09d8"><script>alert(1)</script>eedc70267bf=1/write-review">
...[SNIP]...

3. Cleartext submission of password  previous  next
There are 2 instances of this issue:

Issue background

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.


3.1. http://www.whichwebdesigncompany.com/uk  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk

Issue detail

The page contains a form with the following action URL, which is submitted over clear-text HTTP:The form contains the following password field:

Request

GET /uk HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://burp/show/6
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:05:38 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Content-Type: text/html
Content-Length: 34420

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <title>Which Web Design Company in UK?</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <sty
...[SNIP]...
</div>
       
       <form action="" method="post" class="box" id="loginForm">
           <fieldset>
...[SNIP]...
</label>
               <input type="password" id="pwd" name="password" class="s" onkeyup="if (event.keyCode==13) $('#loginForm').submit();">
               <input type="hidden" name="loginSave" value="1" />
...[SNIP]...

3.2. http://www.whichwebdesigncompany.com/uk/profile/unco-web-design  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk/profile/unco-web-design

Issue detail

The page contains a form with the following action URL, which is submitted over clear-text HTTP:The form contains the following password field:

Request

GET /uk/profile/unco-web-design HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 17:54:30 GMT
Set-Cookie: PHPSESSID=us7c8lkkotem3is4ikj3jhdb62; expires=Sat, 16-Apr-2011 17:54:30 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 48460

<!--array(28) {
["companyId"]=>
string(4) "2233"
["clientsLocation"]=>
string(8) "UK based"
["description"]=>
string(232) "We work strategically, creatively and technically across all kind
...[SNIP]...
</div>
       
       <form action="" method="post" class="box" id="loginForm">
           <fieldset>
...[SNIP]...
</label>
               <input type="password" id="pwd" name="password" class="s" onkeyup="if (event.keyCode==13) $('#loginForm').submit();">
               <input type="hidden" name="loginSave" value="1" />
...[SNIP]...

4. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /uk/profile/unco-web-design

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.

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 /uk/profile/unco-web-design HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 17:54:30 GMT
Set-Cookie: PHPSESSID=us7c8lkkotem3is4ikj3jhdb62; expires=Sat, 16-Apr-2011 17:54:30 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 48460

<!--array(28) {
["companyId"]=>
string(4) "2233"
["clientsLocation"]=>
string(8) "UK based"
["description"]=>
string(232) "We work strategically, creatively and technically across all kind
...[SNIP]...

5. Password field with autocomplete enabled  previous  next
There are 2 instances of this issue:

Issue background

Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.

The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.

Issue remediation

To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).


5.1. http://www.whichwebdesigncompany.com/uk  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /uk HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://burp/show/6
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:05:38 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Content-Type: text/html
Content-Length: 34420

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <title>Which Web Design Company in UK?</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <sty
...[SNIP]...
</div>
       
       <form action="" method="post" class="box" id="loginForm">
           <fieldset>
...[SNIP]...
</label>
               <input type="password" id="pwd" name="password" class="s" onkeyup="if (event.keyCode==13) $('#loginForm').submit();">
               <input type="hidden" name="loginSave" value="1" />
...[SNIP]...

5.2. http://www.whichwebdesigncompany.com/uk/profile/unco-web-design  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.whichwebdesigncompany.com
Path:   /uk/profile/unco-web-design

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /uk/profile/unco-web-design HTTP/1.1
Host: www.whichwebdesigncompany.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 17:54:30 GMT
Set-Cookie: PHPSESSID=us7c8lkkotem3is4ikj3jhdb62; expires=Sat, 16-Apr-2011 17:54:30 GMT; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: max-age=300, must-revalidate
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 48460

<!--array(28) {
["companyId"]=>
string(4) "2233"
["clientsLocation"]=>
string(8) "UK based"
["description"]=>
string(232) "We work strategically, creatively and technically across all kind
...[SNIP]...
</div>
       
       <form action="" method="post" class="box" id="loginForm">
           <fieldset>
...[SNIP]...
</label>
               <input type="password" id="pwd" name="password" class="s" onkeyup="if (event.keyCode==13) $('#loginForm').submit();">
               <input type="hidden" name="loginSave" value="1" />
...[SNIP]...

6. Content type incorrectly stated  previous
There are 13 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.


6.1. http://www.whichwebdesigncompany.com/u/uk/logos/12441033439592.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12441033439592.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12441033439592.gif HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:54 GMT
Last-Modified: Wed, 20 Oct 2010 18:13:59 GMT
ETag: "3ebed80-111c-493105f91e7c0"
Accept-Ranges: bytes
Content-Length: 4380
Content-Type: image/gif

.PNG
.
...IHDR...b...b.............IDATx...{lTwv.?.....g...?........N..,...M..4.*j.>.....Uj.).F.Tm.V.Ci+..]UZ.F.]%.&.m.YB...%1..1`.=6..yx<..uo...p}..lLs+..4....|.w..w~.1..,.8..!~..8(.I.M.$.&p.a.8..
...[SNIP]...

6.2. http://www.whichwebdesigncompany.com/u/uk/logos/12821514360749.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12821514360749.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12821514360749.gif HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:54 GMT
Last-Modified: Wed, 20 Oct 2010 18:15:25 GMT
ETag: "3eca6c9-2846-4931064b22940"
Accept-Ranges: bytes
Content-Length: 10310
Content-Type: image/gif

.PNG
.
...IHDR...b...b........... .IDATx...i.]I........%..L...N........U..5=j..H.g.
X.d..l...._...`X..c4...i.f...iU.]..U.....$3.........73..K.U. J.?....7...D.....W(........7..H./.....xN./.....xN./..
...[SNIP]...

6.3. http://www.whichwebdesigncompany.com/u/uk/logos/12888830294299.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12888830294299.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12888830294299.gif HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:53 GMT
Last-Modified: Thu, 04 Nov 2010 15:03:49 GMT
ETag: "288371a-db7-4943b7719bf40"
Accept-Ranges: bytes
Content-Length: 3511
Content-Type: image/gif

.PNG
.
...IHDR...b...b...........~IDATx...[...Y..._..fz.=...gm.,.....%.D..    J.VB(!..@D....#OH+!!.!".....
< !Ax@....B."..wl.z.Y{........sx.w.g.6..g...{.ww....wN..9....R..;.q...C+.!.".B+.!.".B+.!.".B+
...[SNIP]...

6.4. http://www.whichwebdesigncompany.com/u/uk/logos/12978772078098.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12978772078098.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12978772078098.gif HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:52 GMT
Last-Modified: Wed, 16 Feb 2011 17:26:47 GMT
ETag: "4097ff-d68-49c6995e2a3c0"
Accept-Ranges: bytes
Content-Length: 3432
Content-Type: image/gif

.PNG
.
...IHDR...b...b.........../IDATx...kl\.........L..qj.....4%V..8J.BY../..J.I.(.~.P-Z
.-U.......R..j>l.........n.....\H..    ....1>.......gf.....{f<......9.9...?...........7..'.1..a6..,z..Y..cG.
...[SNIP]...

6.5. http://www.whichwebdesigncompany.com/u/uk/logos/12996958733562.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12996958733562.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12996958733562.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:56 GMT
Last-Modified: Wed, 09 Mar 2011 18:37:53 GMT
ETag: "49ee855-1e12-49e1106d38240"
Accept-Ranges: bytes
Content-Length: 7698
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b.............IDATx...yl....?...3......./.'Q.!.S.!@
   ..    .)..$...E@YDK+^U....B.-H....T.X(..L...4).....c;x..x..y.H..z.q.9...H.......{.c..n...,.a....2.....,..t...X...C    B......N...
...[SNIP]...

6.6. http://www.whichwebdesigncompany.com/u/uk/logos/12997625149940.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12997625149940.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12997625149940.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:56 GMT
Last-Modified: Thu, 10 Mar 2011 13:08:35 GMT
ETag: "561531a-154a-49e208affbac0"
Accept-Ranges: bytes
Content-Length: 5450
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b.............IDATx...Ys..u..v..e@..H.;.."%jcI.R).V.v\.T..T........8N^...d;r.e9.l..L."E..!..H.$..3........iP.K<.sXCL......?.=.#.....N...@.B...%...K..D.P......]B= ..z@t    .......%
...[SNIP]...

6.7. http://www.whichwebdesigncompany.com/u/uk/logos/12997875252665.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12997875252665.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12997875252665.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:56 GMT
Last-Modified: Thu, 10 Mar 2011 20:05:25 GMT
ETag: "4bf5ab2-2e0c-49e265db60b40"
Accept-Ranges: bytes
Content-Length: 11788
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b........... .IDATx.....$IV............{..........&=.^Lfz
...A.Lf .$..@. `.....{o...~....Y.l.......w........AQ...?....S.........N......t..}B..B...Q.    .........z..E. .U....!.e..
...[SNIP]...

6.8. http://www.whichwebdesigncompany.com/u/uk/logos/12998309968511.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/12998309968511.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/12998309968511.gif HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:55 GMT
Last-Modified: Fri, 11 Mar 2011 08:09:56 GMT
ETag: "49acebd-102c-49e307cc8dd00"
Accept-Ranges: bytes
Content-Length: 4140
Content-Type: image/gif

.PNG
.
...IHDR...b...b.............IDATx...{t..}.?....zY.%[._X...y.....4.b.m)...Z.....=.Q.$%.!MKShs....:4!.i......6 ..-...,.zK......?d.7^................w........"..L3..S..iF...H...H...H...H...H...
...[SNIP]...

6.9. http://www.whichwebdesigncompany.com/u/uk/logos/13000944696782.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/13000944696782.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/13000944696782.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:55 GMT
Last-Modified: Mon, 14 Mar 2011 09:21:09 GMT
ETag: "5e43322-106d-49e6dd4ffcb40"
Accept-Ranges: bytes
Content-Length: 4205
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b............4IDATx...{lTgz..s.x....._cc..\..,$@vI.l\..@J....t...H...
.]e%.i.DH.f7ib.$J..MHj..%X.B.9.........c..{......9.....036l.=.G.8...}...~.....EQ.4.....4f..P    ..*A.B%hB..M
...[SNIP]...

6.10. http://www.whichwebdesigncompany.com/u/uk/logos/13001099047109.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/13001099047109.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/13001099047109.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:55 GMT
Last-Modified: Mon, 14 Mar 2011 13:38:24 GMT
ETag: "6013e39-bd2-49e716cff3400"
Accept-Ranges: bytes
Content-Length: 3026
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b.............IDATx...kLTG...sv..... .-.R.R.FJ.I....BHS..MiZ%6i4..hE.Z1iB.@...zA. M)....Ek....%4.@....7`...y?.9...gW......%.....3....9..1........(.....%.$(!$A    !    J.IPBH..B.....
...[SNIP]...

6.11. http://www.whichwebdesigncompany.com/u/uk/logos/13001383193628.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/13001383193628.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/13001383193628.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:55 GMT
Last-Modified: Mon, 14 Mar 2011 21:31:59 GMT
ETag: "64c9909-1bdf-49e780aa9b1c0"
Accept-Ranges: bytes
Content-Length: 7135
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b.............IDATx...i.\U...Z{W..s2....    ..B.cB.(..AD[.qD.Ql...^...S.W....^o...v3
".    .B.. $$!.<''9....{......... ..>]......Z.k......U..J...0...h .AD..AD..AD..AD..AD..AD..AD..AD
...[SNIP]...

6.12. http://www.whichwebdesigncompany.com/u/uk/logos/13001924920340.jpg  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/13001924920340.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/13001924920340.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:54 GMT
Last-Modified: Tue, 15 Mar 2011 12:34:52 GMT
ETag: "5e0dc96-1a35-49e84a7a01300"
Accept-Ranges: bytes
Content-Length: 6709
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b.............IDATx...y...u...........3....$..$H.&H."E.........]K..+...6$.%..6BKkwe...B.".....Z.I.$EQ....    ...kp..c......U.....>.g...6........<^._.{/_fC..P.s.....).:.5Bu j..@...
...[SNIP]...

6.13. http://www.whichwebdesigncompany.com/u/uk/logos/13002004415583.jpg  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.whichwebdesigncompany.com
Path:   /u/uk/logos/13002004415583.jpg

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain a PNG image.

Request

GET /u/uk/logos/13002004415583.jpg HTTP/1.1
Host: www.whichwebdesigncompany.com
Proxy-Connection: keep-alive
Referer: http://www.whichwebdesigncompany.com/uk
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
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=b3p8qb01mevh7m7t7emcgacjl7

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 18:03:54 GMT
Last-Modified: Tue, 15 Mar 2011 14:47:21 GMT
ETag: "5c07857-1275-49e86816c3040"
Accept-Ranges: bytes
Content-Length: 4725
Content-Type: image/jpeg

.PNG
.
...IHDR...b...b............<IDATx...wt....?w^...-Y..&WYr.c..a..$&.rL...$...-.&.e.......KvI.,q.q.HL(.....\.,..,....'.2w...yEO..f...3.if.....}o..~c.)...G...V.......$. 0.0.L"......$. 0.0.L"...
...[SNIP]...

Report generated by XSS.CX at Thu Mar 17 07:56:56 CDT 2011.