The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9154b"><img%20src%3da%20onerror%3dalert(1)>6a03df3b79 was submitted in the REST URL parameter 4. This input was echoed as 9154b"><img src=a onerror=alert(1)>6a03df3b79 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b"><img%20src%3da%20onerror%3dalert(1)>6a03df3b79 HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /starcite/ HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Cache-Control: max-age=0 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Cache-Control: max-age=0 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="http://www2.starcite.co ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/Solutionvideo/form.html HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/Solutionvideo/modules/meetings1to1/index.html HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/blogapi/rsd HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/customerlogin HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/customers HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/destinationsolutions/finddestinations HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/elqNow/elqCfg.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/elqNow/elqImg.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
// Copyright Eloqua Corporation. var elqWDt = new Date(20020101); var elqDt = new Date(); var elqMs = elqDt.getMilliseconds(); var elqTzo = elqWDt.getTimezoneOffset(); var elqRef2 = ''; if (type ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/files/SIMPLIFY2.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/files/Xerox_logo.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/files/garland_favicon.ico HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/files/garland_logo.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /starcite/files/kblog_0.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/files/logo_2010_vuc.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/files/nbtafoundation.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /starcite/files/whitepapers_icon.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/home HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/images/bg_btm1.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/bg_midtop.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/bg_midtop_extension.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/content_left_bg.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/content_right_bg.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/left_bdr.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/right_bdr.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/separator.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/images/spacer.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/jobs HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/locations HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/misc/drupal.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/misc/forms.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: text/css,*/*;q=0.1 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/misc/jquery/functions.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
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 /starcite/misc/jquery/jquery-1.2.6.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
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 /starcite/misc/jquery/jquery.cookie.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
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 /starcite/misc/jquery/jquery.validate.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
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 /starcite/misc/jquery_new.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/*! * jQuery JavaScript Library v1.4.1 * http://jquery.com/ * * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Siz ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/misc/reset.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: text/css,*/*;q=0.1 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __unam=2392472-12d471e5d4f-40cdc366-1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
Response
HTTP/1.1 404 Not Found Date: Sun, 02 Jan 2011 14:26:08 GMT Server: Apache X-Powered-By: PHP/5.2.6 Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 02 Jan 2011 14:26:08 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Set-Cookie: NSC_Pvutjef-NluXfc-IUUQ=e24722583660;expires=Sun, 02-Jan-11 14:48:49 GMT;path=/ Content-Length: 11878
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="Description" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/Suppliers_howitworks/howitworks.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function Suppliers_howitworks_form_validation(){ var leftside_title = document.getElementById('leftside_title').value; var middle_title = document.getElementById('middle_title').value; var right ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/addregions/addregions.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function trim(str) { return str.replace(/^\s*|\s*$/g,""); } function addregions_form_validation(){ var country = document.getElementById('name1').value; var region = document.getElementById(' ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/cck/content.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/cck/fieldgroup.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/date/date.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/date/date_popup/themes/timeentry.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/date/date_popup/themes/white.calendar.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
** Reset link properties and then override them with !important */ #calendar_div a, .calendar_inline a { cursor: pointer; margin: 0; padding: 0; background-color: #fff; color: #000; }
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 /starcite/modules/date/date_timezone/date_timezone.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
// $Id: date_timezone.js,v 1.1.2.3 2008/06/20 12:26:06 karens Exp $ /** * Set the client's system time zone as default values of form fields. */ Drupal.setDefaultTimezone = function() { var dateSt ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/jstools/jquery.history_remote.pack.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/jstools/jstools.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/jstools/tabs/drupal-tabs.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/jstools/tabs/jquery.tabs.pack.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/jstools/tabs/tabs.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/* IMPORTANT: Essential styles to ensure accessibility */ @media projection, screen { /* use class for showing/hiding tab content, so that visibility can be better controlled in different media types. ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/jstools/tabs/tabs.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/meetings2/meetings.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function meetings2_form_validation(){ var title = document.getElementById('title').value; var description = document.getElementById('description').value; var imageurl = document.getElementById(' ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/meetings3/meetings.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function meetings3_form_validation(){ var title = document.getElementById('title').value; var description = document.getElementById('description').value; var imageurl = document.getElementById(' ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/meetings4/meetings.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function meetings4_form_validation(){ var title = document.getElementById('title').value; var description = document.getElementById('description').value; var imageurl = document.getElementById(' ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/meetingsmeetings.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
Response
HTTP/1.1 404 Not Found Date: Sun, 02 Jan 2011 13:57:13 GMT Server: Apache X-Powered-By: PHP/5.2.6 Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 02 Jan 2011 13:57:13 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Set-Cookie: NSC_Pvutjef-NluXfc-IUUQ=e24722583660;expires=Sun, 02-Jan-11 14:19:40 GMT;path=/ Content-Length: 11878
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="Description" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/node/node.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/planners_howitworks/howitworks.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function planners_howitworks_form_validation(){ var leftside_title = document.getElementById('leftside_title').value; var middle_title = document.getElementById('middle_title').value; var rights ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/supplier_products/supplier_products.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function supplier_products_form_validation(){ var title = document.getElementById('title').value; var description = document.getElementById('description').value; var imageurl = document.getEleme ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/system/defaults.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/system/system.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/modules/technology_overview/technology_overview.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
function trim(str) { return str.replace(/^\s*|\s*$/g,""); } function technology_overview_form_validation(){ var title = document.getElementById('title').value; if (trim(title)=="") { ale ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/modules/user/user.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/morronijq.js HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/*! * jQuery JavaScript Library v1.4.1 * http://jquery.com/ * * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Siz ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/news HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/newsandevents HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/newsandevents/events/connecting-dots-whats-connection-between-technology-and-smmp HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
<!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">
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 /starcite/newsandevents/events/new-whitepaper-release-how-sunshine-provisions-impact-meetings-management HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
<!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">
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 /starcite/newsandevents/events/webinar-introducing-starcites-life-sciences-solution HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
<!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">
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 /starcite/newsletters/november2010/index.html HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/node/100 HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/node/335/445 HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/node/929 HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/planners/findtherightsolution HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
<!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">
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 /starcite/planners/howitworks HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/planners/meetings1-1 HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/planners/requestmoreinformation HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/privacy HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/resource/findresources HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/resourcecenter/downloads/a HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039
Response
HTTP/1.1 404 Not Found Date: Sun, 02 Jan 2011 14:26:07 GMT Server: Apache X-Powered-By: PHP/5.2.6 Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 02 Jan 2011 14:26:08 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Set-Cookie: NSC_Pvutjef-NluXfc-IUUQ=e24722583660;expires=Sun, 02-Jan-11 14:48:50 GMT;path=/ Content-Length: 36918
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="Description" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/resourcecenter/downloads/how-sunshine-provisions-impact-meetings-management HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/sitemap HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/slideshow/images/bgsmall.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/big-picture_r1_c1.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/big-picture_r2_c1.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/big-picture_r3_c1.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/bpsmall.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/bridging-the-gap_1.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/bridging-the-gap_2.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/bridging-the-gap_3.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/buysol.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/corpsol.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/meetings1.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/meetings2.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/meetings3a.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/meetings3b.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/meetings3c.jpg HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/rock-star_1.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/rock-star_2.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/rock-star_3.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/rssmall.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/slideshow/images/slide4small.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/solutions HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/supplier-video/index.html HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/suppliers/howitworks HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/themes/garland/iestyle.css HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
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 /starcite/themes/garland/iestyle6.css HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/images/bg_image.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/block_bg.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/images/btn_continue.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/resourcecenter/downloads/bridging-gap-mitigating-meetings-risk9154b%22%3E%3Cimg%20src%3da%20onerror%3dalert(document.cookie)%3E6a03df3b79 Accept: */* 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 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=174720036.244046565.1293976610.1293976610.1293976610.1; __utmb=174720036.2.10.1293976610; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __unam=2392472-12d471e5d4f-40cdc366-1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /starcite/themes/garland/images/content_left_bg0.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/content_right_bg0.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/footer-boxleft.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/footer-boxmiddle.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/footer-boxright.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /starcite/themes/garland/images/header_top-ie.png HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/images/left_bdr.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/link-cust-login.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/new-bg.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/right_bdr.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /starcite/themes/garland/images/site_topbg.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/images/tableftF.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/images/tabrightF.gif HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: */* 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: has_js=1; SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/print.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/promo-rotation2.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/style.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
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 /starcite/themes/garland/views-list-Newsview.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/* * * views template to output the stylesheet to customize a view. * This code was generated by the views theming wizard * Date: Tue, 07/29/2008 - 12:50 * View: Newsview * * The class sel ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/views-list-customersuccessview.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/* * * views template to output the stylesheet to customize a view. * This code was generated by the views theming wizard * Date: Wed, 07/30/2008 - 04:31 * View: customersuccessview * * Th ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/themes/garland/views-list-webinarview.css HTTP/1.1 Host: www2.starcite.com Proxy-Connection: keep-alive Referer: http://www2.starcite.com/starcite/ Accept: text/css,*/*;q=0.1 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 Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: SITESERVER=GUID=f76247131a65e483501712736841048f; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; NSC_Pvutjef-NluXfc-IUUQ=e24722583660
/* * * views template to output the stylesheet to customize a view. * This code was generated by the views theming wizard * Date: Wed, 07/30/2008 - 04:42 * View: webinarview * * The class ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
/* * * views template to output the stylesheet to customize a view. * This code was generated by the views theming wizard * Date: Fri, 10/03/2008 - 03:20 * View: whatwedocustomersuccessview
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 /starcite/whatwedo/ourtechnology HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /starcite/whatwedo/starcitenetwork HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;
Server-side source code may contain sensitive information which can help an attacker formulate attacks against the application.
Issue remediation
Server-side source code is normally disclosed to clients as a result of typographical errors in scripts or because of misconfiguration, such as failing to grant executable permissions to a script or directory. You should review the cause of the code disclosure and prevent it from happening.
<!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">
<!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">
<!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">
<!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">
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
<!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">
<!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">
<!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">
<!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">
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).
/** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/li ...[SNIP]... kie will be set and the cookie transmission will * require a secure protocol (like HTTPS). * @type undefined * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */
/** * Get the value of a cookie with the given name. * * @example $.cookie('the_cookie'); * @desc Get the value of a cookie. * * @param String name The name of the cookie. * @return The value of the cookie. * @type String * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */ jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) {
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="Description" ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="mailto:security@starcite.com">security@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]... ing such access would violate another person's rights. In some circumstances, StarCite may charge a reasonable fee for access to Personal Data. Users can contact the StarCite customer services team at service@starcite.com to request access to change personal information.</p> ...[SNIP]... <a href="http://mce_host/starcite/privacy@starcite.com">privacy@starcite.com</a> ...[SNIP]...
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.
Request
GET /starcite/Solutionvideo/form.html HTTP/1.1 Host: www2.starcite.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS4c44a5ca224f313a096fc40a23069fcb=vo6nc75b0j9t0mbq7e0372jdk1; __utmz=174720036.1293976610.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); SITESERVER=GUID=f76247131a65e483501712736841048f; __utma=174720036.244046565.1293976610.1293976610.1293976610.1; _mkto_trk=id:166-PPT-545&token:_mch-starcite.com-1293976608338-65039; __utmc=174720036; __utmb=174720036.1.10.1293976610; NSC_Pvutjef-NluXfc-IUUQ=e24722583660;