invisionpower.com, CWE-79, XSS, CAPEC-86
Loading
Report generated by XSS.CX at Sun Dec 12 07:57:17 CST 2010.
Cross Site Scripting, CWE-79 in invisionpower.com
1. Cross-site scripting (reflected)
1.1. http://www.invisionpower.com/index.php [name of an arbitrarily supplied request parameter]
1.2. https://www.invisionpower.com/index.php [name of an arbitrarily supplied request parameter]
2. Cookie without HttpOnly flag set
3. Cross-domain POST
3.1. http://www.invisionpower.com/
3.2. http://www.invisionpower.com/business/
3.3. http://www.invisionpower.com/business/contact.php
3.4. http://www.invisionpower.com/business/customers.php
3.5. http://www.invisionpower.com/business/demo.php
3.6. http://www.invisionpower.com/business/deployment.php
3.7. http://www.invisionpower.com/business/features.php
3.8. http://www.invisionpower.com/business/services/
3.9. http://www.invisionpower.com/company/contact.php
3.10. http://www.invisionpower.com/company/faq.php
3.11. http://www.invisionpower.com/company/mailing_list_error.php
3.12. http://www.invisionpower.com/company/mailing_list_thanks.php
3.13. http://www.invisionpower.com/company/standards.php
3.14. http://www.invisionpower.com/hosting/
3.15. http://www.invisionpower.com/hosting/advanced.php
3.16. http://www.invisionpower.com/hosting/faq.php
3.17. http://www.invisionpower.com/hosting/select_package.php
3.18. http://www.invisionpower.com/hosting/status.php
3.19. http://www.invisionpower.com/legal/hosting_policies.php
3.20. http://www.invisionpower.com/legal/privacy.php
3.21. http://www.invisionpower.com/piracyreport.php
3.22. http://www.invisionpower.com/products/
3.23. http://www.invisionpower.com/products/blog/
3.24. http://www.invisionpower.com/products/board/
3.25. http://www.invisionpower.com/products/board/purchase.php
3.26. http://www.invisionpower.com/products/chat/
3.27. http://www.invisionpower.com/products/content/
3.28. http://www.invisionpower.com/products/converge/
3.29. http://www.invisionpower.com/products/downloads/
3.30. http://www.invisionpower.com/products/gallery/
3.31. http://www.invisionpower.com/products/nexus/
3.32. http://www.invisionpower.com/products/spammonitor/
3.33. http://www.invisionpower.com/store/
3.34. http://www.invisionpower.com/store/index.php
3.35. http://www.invisionpower.com/suite/
3.36. http://www.invisionpower.com/suite/convert.php
3.37. http://www.invisionpower.com/suite/demo.php
3.38. http://www.invisionpower.com/suite/iphone
3.39. http://www.invisionpower.com/suite/license_benefits.php
3.40. http://www.invisionpower.com/suite/requirements.php
4. Cross-domain script include
4.1. http://www.invisionpower.com/business/contact.php
4.2. http://www.invisionpower.com/company/contact.php
4.3. http://www.invisionpower.com/piracyreport.php
5. Email addresses disclosed
5.1. http://www.invisionpower.com/company/contact.php
5.2. http://www.invisionpower.com/company/standards.php
5.3. http://www.invisionpower.com/legal/privacy.php
5.4. http://www.invisionpower.com/suite/demo.php
6. HTML does not specify charset
7. Content type incorrectly stated
1. Cross-site scripting (reflected)
next
There are 2 instances of this issue:
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application. The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes. Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method). The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
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.
1.1. http://www.invisionpower.com/index.php [name of an arbitrarily supplied request parameter]
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/index.php
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 97bf6<script>alert(1)</script>ce98c0e5329 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /index.php?97bf6<script>alert(1)</script>ce98c0e5329 =1 HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:15:13 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Mon, 26 Jul 1997 05:00:00 GMT Pragma: no-cache Connection: close Content-Type: text/html Content-Length: 9165 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Invision Power Services :: 404 File Not Found</ti...[SNIP]... <br /> /index.php?97bf6<script>alert(1)</script>ce98c0e5329 =1 </div>...[SNIP]...
1.2. https://www.invisionpower.com/index.php [name of an arbitrarily supplied request parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.invisionpower.com
Path:
/index.php
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 4420d<script>alert(1)</script>6c7af06f3e6 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /index.php?4420d<script>alert(1)</script>6c7af06f3e6 =1 HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:20:36 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Mon, 26 Jul 1997 05:00:00 GMT Pragma: no-cache Connection: close Content-Type: text/html Content-Length: 9165 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Invision Power Services :: 404 File Not Found</ti...[SNIP]... <br /> /index.php?4420d<script>alert(1)</script>6c7af06f3e6 =1 </div>...[SNIP]...
2. Cookie without HttpOnly flag set
previous
next
Summary
Severity:
Low
Confidence:
Firm
Host:
http://www.invisionpower.com
Path:
/piracyreport.php
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:ipd_session_id=2ab5129536d0969df9a819ded6466991; path=/; domain=.ipslink.com The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive. You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
Request
GET /piracyreport.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:34 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2Set-Cookie: ipd_session_id=2ab5129536d0969df9a819ded6466991; path=/; domain=.ipslink.com Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Mon, 26 Jul 1997 05:00:00 GMT Pragma: no-cache Connection: close Content-Type: text/html Content-Length: 10558 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Invision Power Services :: Corporate :: Homepage</t...[SNIP]...
3. Cross-domain POST
previous
next
There are 40 instances of this issue:
Issue background
The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.
3.1. http://www.invisionpower.com/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET / HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; __utma=61175156.215013314.1285176093.1288030225.1288056663.3; PAPVisitorId=55d051878521362728ab8250f27596b0; PAPVisitorId=55d051878521362728ab8250f27596b0; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:08:58 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:08:58 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 16316 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.2. http://www.invisionpower.com/business/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/ HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; session_id=2c8721f60b408028ff0a521ff086c702; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.1.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0; PAPVisitorId=55d051878521362728ab8250f27596b0
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:12 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:12 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 8773 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.3. http://www.invisionpower.com/business/contact.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/contact.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/contact.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:24 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=dd01524593394192c89488bb4aad1d2d; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:25 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 9695 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.4. http://www.invisionpower.com/business/customers.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/customers.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/customers.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:29 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=5923597e5e339d5f615d77f82b52986c; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:31 GMT Pragma: no-cache Content-Length: 7093 Connection: close Content-Type: text/html;charset=UTF-8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.5. http://www.invisionpower.com/business/demo.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/demo.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/demo.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:26 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=b397ac9671fdc98db3a5aca11983c243; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:27 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 9527 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.6. http://www.invisionpower.com/business/deployment.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/deployment.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/deployment.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:12 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=d8838ab1256f3bb581e0d912cc54da22; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:12 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 8620 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.7. http://www.invisionpower.com/business/features.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/features.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/features.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:07 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=9c5002d18f7109319dd556ffd1b9746a; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:07 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 14066 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.8. http://www.invisionpower.com/business/services/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/services/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /business/services/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:08 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=5fa69b6a40cfe434f872afa3d6a15af2; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:08 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 9816 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.9. http://www.invisionpower.com/company/contact.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/contact.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /company/contact.php HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; session_id=2c8721f60b408028ff0a521ff086c702; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.4.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:19 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:19 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 16674 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.10. http://www.invisionpower.com/company/faq.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/faq.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /company/faq.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:09 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=5a0a7fdd4bba9129c90e60c90e8d6552; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:09 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 12959 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.11. http://www.invisionpower.com/company/mailing_list_error.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/mailing_list_error.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /company/mailing_list_error.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:40 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=7e0b57697da47232f91ee5b497ef6b16; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:41 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 11189 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.12. http://www.invisionpower.com/company/mailing_list_thanks.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/mailing_list_thanks.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /company/mailing_list_thanks.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:35 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=6578b80280b24c96332ceeaf4a183580; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:35 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 11147 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.13. http://www.invisionpower.com/company/standards.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/standards.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /company/standards.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:32 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=1cf4fbc1afdca3e6cfe39bfbba97ec66; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:32 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 24814 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.14. http://www.invisionpower.com/hosting/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/hosting/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /hosting/ HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.1.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0; PAPVisitorId=55d051878521362728ab8250f27596b0; session_id=2c8721f60b408028ff0a521ff086c702
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:14 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:14 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 15147 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.15. http://www.invisionpower.com/hosting/advanced.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/hosting/advanced.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /hosting/advanced.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:59 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=525da7833e49e773804ec8d980e4718d; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:59 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 20006 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.16. http://www.invisionpower.com/hosting/faq.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/hosting/faq.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /hosting/faq.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:04 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=5f19dc3ab4e69aceb13fa81ecf7fcd9f; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:04 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 15275 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.17. http://www.invisionpower.com/hosting/select_package.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/hosting/select_package.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /hosting/select_package.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:04 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=5cf4f40bfabd5650d5c1a2c285c797de; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:04 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 20655 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.18. http://www.invisionpower.com/hosting/status.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/hosting/status.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /hosting/status.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:00 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=19b8b50ae1588cbd875d0cda6887d68f; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:01 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 11518 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.19. http://www.invisionpower.com/legal/hosting_policies.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/legal/hosting_policies.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /legal/hosting_policies.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:51 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=37dea4a03cd519762ab6ababd7c35428; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:51 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 21978 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.20. http://www.invisionpower.com/legal/privacy.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/legal/privacy.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /legal/privacy.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:48 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=8c9766750376f993f5fc01cd7e985592; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:49 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16333 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.21. http://www.invisionpower.com/piracyreport.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/piracyreport.php
Issue detail
The page contains a form which POSTs data to the domain ui.constantcontact.com . The form contains the following fields:
Request
GET /piracyreport.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:34 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: ipd_session_id=2ab5129536d0969df9a819ded6466991; path=/; domain=.ipslink.com Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Mon, 26 Jul 1997 05:00:00 GMT Pragma: no-cache Connection: close Content-Type: text/html Content-Length: 10558 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Invision Power Services :: Corporate :: Homepage</t...[SNIP]... <br /> <form name="ccoptin" action="http://ui.constantcontact.com/d.jsp" target="_blank" method="post"> <input name="m" type="hidden" value="1101166016553" />...[SNIP]...
3.22. http://www.invisionpower.com/products/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:03 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=b4f6fbba6048fcb60a27180c8acddae7; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:03 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16055 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.23. http://www.invisionpower.com/products/blog/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/blog/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/blog/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:11 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=6cb5ebd722af7ac741b38ed830884376; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:12 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16312 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.24. http://www.invisionpower.com/products/board/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/board/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/board/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:06 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=3b3c46ab29836479f21b970638782013; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:07 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 19300 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.25. http://www.invisionpower.com/products/board/purchase.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/board/purchase.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/board/purchase.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:08 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=8ca428d52f00a286b46a89faf0658381; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:08 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 13439 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.26. http://www.invisionpower.com/products/chat/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/chat/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/chat/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:41 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=137e265db90f445faee1956a10ef76e5; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:41 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 13067 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.27. http://www.invisionpower.com/products/content/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/content/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/content/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:36 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=0c4413ca92eee2b643c7115f5da0e226; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:36 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 17092 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.28. http://www.invisionpower.com/products/converge/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/converge/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/converge/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 404 Not Found Date: Sun, 12 Dec 2010 03:17:53 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=f3d3a0525ae7d0d49ec18b71871baafe; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:53 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 13120 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.29. http://www.invisionpower.com/products/downloads/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/downloads/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/downloads/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:43 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=b6d7ef0f1cdd3b5b4499b83817aaa74f; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:44 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 17509 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.30. http://www.invisionpower.com/products/gallery/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/gallery/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/gallery/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:20 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=563b2b5de0ff472a23ee83a50ee9b9ac; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:21 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16522 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.31. http://www.invisionpower.com/products/nexus/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/nexus/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/nexus/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:09 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=698eab51917d198a0d3afc8a0ee45e2a; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:09 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 18437 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.32. http://www.invisionpower.com/products/spammonitor/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/products/spammonitor/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /products/spammonitor/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:49 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=6520903ef442a1af015474dff9ec62e1; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:50 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16198 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.33. http://www.invisionpower.com/store/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/store/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /store/ HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.4.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0; PAPVisitorId=55d051878521362728ab8250f27596b0; session_id=2c8721f60b408028ff0a521ff086c702
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:21 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:21 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 22681 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.34. http://www.invisionpower.com/store/index.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/store/index.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /store/index.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:16:48 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=fd079bab4d14b96a6ead74a738c285af; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:16:49 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 22681 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.35. http://www.invisionpower.com/suite/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/ HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:16:50 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=91906b891b1f73e056b727699450bddc; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:16:50 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16050 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.36. http://www.invisionpower.com/suite/convert.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/convert.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/convert.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:16:54 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=1ea28a76bf0dd1eec96c78274a04073b; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:16:54 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 32703 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.37. http://www.invisionpower.com/suite/demo.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/demo.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/demo.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:01 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=890dbdef5b6267aa7c5b512147a81d0a; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:02 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 14328 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.38. http://www.invisionpower.com/suite/iphone
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/iphone
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/iphone HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:16:51 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=4ce9f9ffefcc2b75a0c1d34e754be608; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:16:51 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16303 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.39. http://www.invisionpower.com/suite/license_benefits.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/license_benefits.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/license_benefits.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:02 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=50ce5e8e43d783ffa52b256cdf61fcac; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:02 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 13978 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
3.40. http://www.invisionpower.com/suite/requirements.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/requirements.php
Issue detail
The page contains a form which POSTs data to the domain app.icontact.com . The form contains the following fields:redirect errorredirect listid specialid:156944 clientid formid reallistid doubleopt fields_email Submit
Request
GET /suite/requirements.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:16:54 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=d376a444e3027c5a4a1e92bb7b5f9dcb; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:16:54 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 14762 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <form method='post' action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"> <fieldset>...[SNIP]...
4. Cross-domain script include
previous
next
There are 3 instances of this issue:
Issue background
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user. If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
4.1. http://www.invisionpower.com/business/contact.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/business/contact.php
Issue detail
The response dynamically includes the following script from another domain:http://www.google.com/recaptcha/api/challenge?k=6LdNJLsSAAAAADrynOSYn1EYvU-AXWYD1oYYG2uh
Request
GET /business/contact.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:24 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=dd01524593394192c89488bb4aad1d2d; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:19:25 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 9695 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </span> <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LdNJLsSAAAAADrynOSYn1EYvU-AXWYD1oYYG2uh"> </script>...[SNIP]...
4.2. http://www.invisionpower.com/company/contact.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/contact.php
Issue detail
The response dynamically includes the following script from another domain:http://www.google.com/recaptcha/api/challenge?k=6LdNJLsSAAAAADrynOSYn1EYvU-AXWYD1oYYG2uh
Request
GET /company/contact.php HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; session_id=2c8721f60b408028ff0a521ff086c702; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.4.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:19 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:19 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 16674 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... </label> <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LdNJLsSAAAAADrynOSYn1EYvU-AXWYD1oYYG2uh"> </script>...[SNIP]...
4.3. http://www.invisionpower.com/piracyreport.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/piracyreport.php
Issue detail
The response dynamically includes the following script from another domain:http://www.google-analytics.com/urchin.js
Request
GET /piracyreport.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:19:34 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: ipd_session_id=2ab5129536d0969df9a819ded6466991; path=/; domain=.ipslink.com Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Mon, 26 Jul 1997 05:00:00 GMT Pragma: no-cache Connection: close Content-Type: text/html Content-Length: 10558 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Invision Power Services :: Corporate :: Homepage</t...[SNIP]... <!--END--><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script>...[SNIP]...
5. Email addresses disclosed
previous
next
There are 4 instances of this issue:
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content. However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
5.1. http://www.invisionpower.com/company/contact.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/contact.php
Issue detail
The following email addresses were disclosed in the response:accounts@invisionpower.com billing@invisionpower.com sales@invisionpower.com
Request
GET /company/contact.php HTTP/1.1 Host: www.invisionpower.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 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: __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; hblid=jr3ebwkizaguwah92qwsrp8n; nexus_member_id=67010; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; session_id=2c8721f60b408028ff0a521ff086c702; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; __utmc=61175156; __utmb=61175156.4.10.1292123324; PAPVisitorId=55d051878521362728ab8250f27596b0
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:09:19 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=2c8721f60b408028ff0a521ff086c702; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:09:19 GMT Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 Content-Length: 16674 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... <a href='mailto:sales@invisionpower.com ' title='Email Sales'>sales@invisionpower.com </a>...[SNIP]... <a href='mailto:accounts@invisionpower.com ' title='Email Accounts Dept.'>accounts@invisionpower.com </a>...[SNIP]... <a href='mailto:billing@invisionpower.com ' title='Email Billing Dept.'>billing@invisionpower.com </a>...[SNIP]...
5.2. http://www.invisionpower.com/company/standards.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/standards.php
Issue detail
The following email address was disclosed in the response:
Request
GET /company/standards.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:32 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=1cf4fbc1afdca3e6cfe39bfbba97ec66; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:32 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 24814 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... <br /> Invision Power Services, Inc., PO Box 2365, Forest, VA 24551. For questions, write to the above address, email info@invisionpower.com , or call 434-316-7201. </p>...[SNIP]...
5.3. http://www.invisionpower.com/legal/privacy.php
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/legal/privacy.php
Issue detail
The following email address was disclosed in the response:business@invisionpower.com
Request
GET /legal/privacy.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:48 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=8c9766750376f993f5fc01cd7e985592; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:18:49 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 16333 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... <a href='mailto:business@invisionpower.com '>business@invisionpower.com </a>...[SNIP]...
5.4. http://www.invisionpower.com/suite/demo.php
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/suite/demo.php
Issue detail
The following email address was disclosed in the response:
Request
GET /suite/demo.php HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:17:01 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=890dbdef5b6267aa7c5b512147a81d0a; path=/; httponly Cache-Control: no-cache,must-revalidate, max-age=0 Expires: Sat, 11 Dec 2010 03:17:02 GMT Pragma: no-cache Connection: close Content-Type: text/html;charset=UTF-8 Content-Length: 14328 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <hea...[SNIP]... <a href='mailto:sales@invisionpower.com '>...[SNIP]...
6. HTML does not specify charset
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.invisionpower.com
Path:
/company/contact.php
Issue description
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters. In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1 .
Request
GET /company/contact.php?action=process HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:31 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=73d81efc532f8dd7d6e8bcebf6672b17; path=/; httponly Content-Length: 104 Connection: closeContent-Type: text/html The reCAPTCHA wasn't entered correctly. Go back and try it again.(reCAPTCHA said: incorrect-captcha-sol)
7. Content type incorrectly stated
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.invisionpower.com
Path:
/company/contact.php
Issue detail
The response contains the following Content-type statement:The response states that it contains HTML . However, it actually appears to contain plain text .
Issue background
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities. In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
Request
GET /company/contact.php?action=process HTTP/1.1 Host: www.invisionpower.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: session_id=2c8721f60b408028ff0a521ff086c702; nexus_pass_hash=6a43be0d8d6bac7e79eaa27880a0de35; hblid=jr3ebwkizaguwah92qwsrp8n; __utmz=61175156.1288030225.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=ip%20board%20software; PAPVisitorId=55d051878521362728ab8250f27596b0; __utma=61175156.215013314.1285176093.1288056663.1292123324.4; SnapABugRef=http%3A%2F%2Fwww.invisionpower.com%2F%20; __utmc=61175156; nexus_member_id=67010; __utmb=61175156.5.10.1292123324;
Response
HTTP/1.1 200 OK Date: Sun, 12 Dec 2010 03:18:31 GMT Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.2 X-Powered-By: PHP/5.3.2 Set-Cookie: session_id=73d81efc532f8dd7d6e8bcebf6672b17; path=/; httponly Content-Length: 104 Connection: closeContent-Type: text/html The reCAPTCHA wasn't entered correctly. Go back and try it again.(reCAPTCHA said: incorrect-captcha-sol)
Report generated by XSS.CX at Sun Dec 12 07:57:17 CST 2010.