Report generated by XSS.CX at Mon Nov 15 18:01:40 CST 2010.


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

XSS.CX Home | XSS.CX Research Blog
Loading

1. Cross-site scripting (reflected)

1.1. http://www.softlayer.com/byoc [c parameter]

1.2. http://www.softlayer.com/byoc [name of an arbitrarily supplied request parameter]

1.3. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [42c6d parameter]

1.4. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [42c6d">61f7cac4ed2 parameter]

1.5. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [name of an arbitrarily supplied request parameter]

1.6. http://www.softlayer.com/press/release/1/softlayer-introduces-stratos-white-label-portal [REST URL parameter 4]

1.7. http://www.softlayer.com/press/release/107/softlayer-enables-customers-to-leverage-citrix-cloud-solutions [REST URL parameter 4]

1.8. http://www.softlayer.com/press/release/108/softlayer-adds-data-transfer-service-for-usb-compatible-devices [REST URL parameter 4]

1.9. http://www.softlayer.com/press/release/109/softlayer-introduces-build-your-own-cloud [REST URL parameter 4]

1.10. http://www.softlayer.com/press/release/22/softlayer-launches-mobile-client-app-for-iphone-os [REST URL parameter 4]

1.11. http://www.softlayer.com/press/release/244/softlayer-opens-new-corporate-headquarters [REST URL parameter 4]

1.12. http://www.softlayer.com/press/release/261/softlayer-revenue-and-operations-grow-in-first-half-of-2010 [REST URL parameter 4]

1.13. http://www.softlayer.com/press/release/281/gi-partners-and-management-acquire-softlayer [REST URL parameter 4]

1.14. http://www.softlayer.com/press/release/301/softlayer-to-participate-in-gdc-europe-2010 [REST URL parameter 4]

1.15. http://www.softlayer.com/press/release/321/cyberlinkasp-unveils-virtual-desktop-on-softlayer-cloud [REST URL parameter 4]

1.16. http://www.softlayer.com/press/release/341/softlayer-to-participate-in-gdc-online-austin [REST URL parameter 4]

1.17. http://www.softlayer.com/press/release/361/softlayer-ranked-on-the-2010-inc-500|5000-list [REST URL parameter 4]

1.18. http://www.softlayer.com/press/release/381/softlayer-launches-second-dallas-data-center [REST URL parameter 4]

1.19. http://www.softlayer.com/press/release/401/softlayer-named-among-best-places-to-work [REST URL parameter 4]

1.20. http://www.softlayer.com/press/release/421/softlayer-launches-nimsoft-monitoring-solution [REST URL parameter 4]

1.21. http://www.softlayer.com/press/release/441/computer-technologies-consultants-partners-with-softlayer-for-federal-cloud-computing-contract- [REST URL parameter 4]

1.22. http://www.softlayer.com/press/release/461/d1ee1 [REST URL parameter 4]

1.23. http://www.softlayer.com/press/release/461/d1ee1%22%3E%3Ca%3E8ff84285b34 [REST URL parameter 4]

1.24. http://www.softlayer.com/press/release/461/softlayer-launches-parallels-plesk-panel-10- [REST URL parameter 4]

1.25. http://www.softlayer.com/press/release/481/gi-partners-announces-completion-of-merger-between-softlayer-and-the-planet- [REST URL parameter 4]

1.26. http://www.softlayer.com/press/release/61/softlayer-chooses-nimsoft-monitoring-solution-as-the-standard-monitoring-platform-for-managed-hosting-customers [REST URL parameter 4]

1.27. http://www.softlayer.com/press/release/81/softlayer-rolls-out-verisign-identity-protection [REST URL parameter 4]

1.28. http://www.softlayer.com/press/release/90/softlayer-launches-parallels-server-4-bare-metal-to-diversify-its-product-offerings-and-attract-new-customers [REST URL parameter 4]

1.29. http://www.softlayer.com/press/release/91/softlayer-is-a-finalist-for-the-2010-red-herring-100-north-america-award- [REST URL parameter 4]

1.30. http://www.softlayer.com/press/release/92/softlayer-provides-mobile-application-for-androidtm-os [REST URL parameter 4]

1.31. http://www.softlayer.com/press/release/93/softlayer-to-be-gold-sponsor-of-hostingcon-2010 [REST URL parameter 4]

1.32. http://www.softlayer.com/reseller/ [name of an arbitrarily supplied request parameter]

1.33. https://www.softlayer.com/Sales/orderCustomComputingInstance [name of an arbitrarily supplied request parameter]



1. Cross-site scripting (reflected)
There are 33 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.softlayer.com/byoc [c parameter]  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /byoc

Issue detail

The value of the c request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 95c19"><a>f9afe3eb0b1 was submitted in the c parameter. This input was echoed unmodified in the application's response.

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

Request

GET /byoc?c=95c19"><a>f9afe3eb0b1 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:15:58 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:15:58 GMT
Connection: close
Content-Type: text/html
Content-Length: 78674

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fbyoc?c=95c19"><a>f9afe3eb0b1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.2. http://www.softlayer.com/byoc [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /byoc

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f55da"><a>c81b4e66d25 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Request

GET /byoc?f55da"><a>c81b4e66d25=1 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:15:18 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:15:18 GMT
Connection: close
Content-Type: text/html
Content-Length: 78646

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fbyoc?f55da"><a>c81b4e66d25=1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:h
...[SNIP]...

1.3. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [42c6d parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /cloudlayer/build-your-own-cloud/

Issue detail

The value of the 42c6d request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ca873"><a>a0b4e50dec2 was submitted in the 42c6d parameter. This input was echoed unmodified in the application's response.

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

Request

GET /cloudlayer/build-your-own-cloud/?42c6dca873"><a>a0b4e50dec2 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:21:53 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:21:53 GMT
Connection: close
Content-Type: text/html
Content-Length: 78743

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fcloudlayer%2Fbuild-your-own-cloud%2F?42c6dca873"><a>a0b4e50dec2&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.4. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [42c6d">61f7cac4ed2 parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /cloudlayer/build-your-own-cloud/

Issue detail

The value of the 42c6d"><a>61f7cac4ed2 request parameter is copied into the HTML document as plain text between tags. The payload 33068<a>24608e207eb was submitted in the 42c6d"><a>61f7cac4ed2 parameter. This input was echoed unmodified in the application's response.

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

Request

GET /cloudlayer/build-your-own-cloud/?42c6d"><a>61f7cac4ed2=133068<a>24608e207eb HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.softlayer.com

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:16:48 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:16:48 GMT
Connection: Keep-Alive
Content-Type: text/html
Content-Length: 78803

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<a>61f7cac4ed2=133068<a>24608e207eb&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.5. http://www.softlayer.com/cloudlayer/build-your-own-cloud/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /cloudlayer/build-your-own-cloud/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 42c6d"><a>61f7cac4ed2 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Request

GET /cloudlayer/build-your-own-cloud/?42c6d"><a>61f7cac4ed2=1 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.softlayer.com

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:14:31 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:14:31 GMT
Connection: Keep-Alive
Content-Type: text/html
Content-Length: 78734

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fcloudlayer%2Fbuild-your-own-cloud%2F?42c6d"><a>61f7cac4ed2=1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:h
...[SNIP]...

1.6. http://www.softlayer.com/press/release/1/softlayer-introduces-stratos-white-label-portal [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/1/softlayer-introduces-stratos-white-label-portal

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload aa19b"><a>e13b3d54b87 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/1/aa19b"><a>e13b3d54b87 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:24:10 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:24:10 GMT
Connection: close
Content-Type: text/html
Content-Length: 44645

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F1%2Faa19b"><a>e13b3d54b87&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.7. http://www.softlayer.com/press/release/107/softlayer-enables-customers-to-leverage-citrix-cloud-solutions [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/107/softlayer-enables-customers-to-leverage-citrix-cloud-solutions

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a9b88"><a>c547c1b93d4 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/107/a9b88"><a>c547c1b93d4 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:24:24 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:24:24 GMT
Connection: close
Content-Type: text/html
Content-Length: 45676

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F107%2Fa9b88"><a>c547c1b93d4&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.8. http://www.softlayer.com/press/release/108/softlayer-adds-data-transfer-service-for-usb-compatible-devices [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/108/softlayer-adds-data-transfer-service-for-usb-compatible-devices

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 14269"><a>d6c28ae1aa0 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/108/14269"><a>d6c28ae1aa0 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:42 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:42 GMT
Connection: close
Content-Type: text/html
Content-Length: 44207

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F108%2F14269"><a>d6c28ae1aa0&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.9. http://www.softlayer.com/press/release/109/softlayer-introduces-build-your-own-cloud [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/109/softlayer-introduces-build-your-own-cloud

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5718d"><a>7d4d3b4ef6c was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/109/5718d"><a>7d4d3b4ef6c HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:14 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:14 GMT
Connection: close
Content-Type: text/html
Content-Length: 44560

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F109%2F5718d"><a>7d4d3b4ef6c&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.10. http://www.softlayer.com/press/release/22/softlayer-launches-mobile-client-app-for-iphone-os [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/22/softlayer-launches-mobile-client-app-for-iphone-os

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e614c"><a>55b019ff8a8 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/22/e614c"><a>55b019ff8a8 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:24:11 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:24:11 GMT
Connection: close
Content-Type: text/html
Content-Length: 44086

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F22%2Fe614c"><a>55b019ff8a8&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.11. http://www.softlayer.com/press/release/244/softlayer-opens-new-corporate-headquarters [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/244/softlayer-opens-new-corporate-headquarters

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 50764"><a>d468c7c22be was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/244/50764"><a>d468c7c22be HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:09 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:09 GMT
Connection: close
Content-Type: text/html
Content-Length: 44404

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F244%2F50764"><a>d468c7c22be&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.12. http://www.softlayer.com/press/release/261/softlayer-revenue-and-operations-grow-in-first-half-of-2010 [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/261/softlayer-revenue-and-operations-grow-in-first-half-of-2010

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e1328"><a>540cf5f1b9e was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/261/e1328"><a>540cf5f1b9e HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:09 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:09 GMT
Connection: close
Content-Type: text/html
Content-Length: 44845

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F261%2Fe1328"><a>540cf5f1b9e&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.13. http://www.softlayer.com/press/release/281/gi-partners-and-management-acquire-softlayer [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/281/gi-partners-and-management-acquire-softlayer

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fefe7"><a>9380b2020bb was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/281/fefe7"><a>9380b2020bb HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:01 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:01 GMT
Connection: close
Content-Type: text/html
Content-Length: 44958

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F281%2Ffefe7"><a>9380b2020bb&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.14. http://www.softlayer.com/press/release/301/softlayer-to-participate-in-gdc-europe-2010 [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/301/softlayer-to-participate-in-gdc-europe-2010

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d1cde"><a>e87749614e4 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/301/d1cde"><a>e87749614e4 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:53 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:53 GMT
Connection: close
Content-Type: text/html
Content-Length: 43807

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F301%2Fd1cde"><a>e87749614e4&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.15. http://www.softlayer.com/press/release/321/cyberlinkasp-unveils-virtual-desktop-on-softlayer-cloud [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/321/cyberlinkasp-unveils-virtual-desktop-on-softlayer-cloud

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8a102"><a>cd910c2bae6 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/321/8a102"><a>cd910c2bae6 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:46 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:46 GMT
Connection: close
Content-Type: text/html
Content-Length: 45686

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F321%2F8a102"><a>cd910c2bae6&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.16. http://www.softlayer.com/press/release/341/softlayer-to-participate-in-gdc-online-austin [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/341/softlayer-to-participate-in-gdc-online-austin

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1bab5"><a>a10c8f19365 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/341/1bab5"><a>a10c8f19365 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:42 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:42 GMT
Connection: close
Content-Type: text/html
Content-Length: 43915

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F341%2F1bab5"><a>a10c8f19365&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.17. http://www.softlayer.com/press/release/361/softlayer-ranked-on-the-2010-inc-500|5000-list [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/361/softlayer-ranked-on-the-2010-inc-500|5000-list

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f4591"><a>f20c9760fc3 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/361/f4591"><a>f20c9760fc3 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:38 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:38 GMT
Connection: close
Content-Type: text/html
Content-Length: 43941

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F361%2Ff4591"><a>f20c9760fc3&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.18. http://www.softlayer.com/press/release/381/softlayer-launches-second-dallas-data-center [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/381/softlayer-launches-second-dallas-data-center

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5cfc4"><a>bd7bdc0205a was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/381/5cfc4"><a>bd7bdc0205a HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:48 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:48 GMT
Connection: close
Content-Type: text/html
Content-Length: 44451

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F381%2F5cfc4"><a>bd7bdc0205a&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.19. http://www.softlayer.com/press/release/401/softlayer-named-among-best-places-to-work [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/401/softlayer-named-among-best-places-to-work

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 602de"><a>2369f06d258 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/401/602de"><a>2369f06d258 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:41 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:41 GMT
Connection: close
Content-Type: text/html
Content-Length: 43789

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F401%2F602de"><a>2369f06d258&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.20. http://www.softlayer.com/press/release/421/softlayer-launches-nimsoft-monitoring-solution [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/421/softlayer-launches-nimsoft-monitoring-solution

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fc620"><a>058728d7573 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/421/fc620"><a>058728d7573 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:32 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:32 GMT
Connection: close
Content-Type: text/html
Content-Length: 44624

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F421%2Ffc620"><a>058728d7573&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.21. http://www.softlayer.com/press/release/441/computer-technologies-consultants-partners-with-softlayer-for-federal-cloud-computing-contract- [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/441/computer-technologies-consultants-partners-with-softlayer-for-federal-cloud-computing-contract-

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 403d3"><a>8a937da7a9 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/441/403d3"><a>8a937da7a9 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:29 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:29 GMT
Connection: close
Content-Type: text/html
Content-Length: 45778

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F441%2F403d3"><a>8a937da7a9&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.22. http://www.softlayer.com/press/release/461/d1ee1 [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/461/d1ee1

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ae5c2"><a>f8691c8aa81 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/461/ae5c2"><a>f8691c8aa81 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:22:31 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:22:31 GMT
Connection: close
Content-Type: text/html
Content-Length: 45210

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F461%2Fae5c2"><a>f8691c8aa81&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.23. http://www.softlayer.com/press/release/461/d1ee1%22%3E%3Ca%3E8ff84285b34 [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/461/d1ee1%22%3E%3Ca%3E8ff84285b34

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 57d1e"><a>41f814f7df was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/461/57d1e"><a>41f814f7df HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.softlayer.com

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:20:22 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:20:22 GMT
Connection: Keep-Alive
Content-Type: text/html
Content-Length: 45207

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F461%2F57d1e"><a>41f814f7df&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.24. http://www.softlayer.com/press/release/461/softlayer-launches-parallels-plesk-panel-10- [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/461/softlayer-launches-parallels-plesk-panel-10-

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 23994"><a>426352ac4c1 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/461/23994"><a>426352ac4c1 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:15:32 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:15:32 GMT
Connection: close
Content-Type: text/html
Content-Length: 45210

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F461%2F23994"><a>426352ac4c1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.25. http://www.softlayer.com/press/release/481/gi-partners-announces-completion-of-merger-between-softlayer-and-the-planet- [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/481/gi-partners-announces-completion-of-merger-between-softlayer-and-the-planet-

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 20e8d"><a>d62135a73fa was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/481/20e8d"><a>d62135a73fa HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:15:35 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:15:35 GMT
Connection: close
Content-Type: text/html
Content-Length: 46689

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F481%2F20e8d"><a>d62135a73fa&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.26. http://www.softlayer.com/press/release/61/softlayer-chooses-nimsoft-monitoring-solution-as-the-standard-monitoring-platform-for-managed-hosting-customers [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/61/softlayer-chooses-nimsoft-monitoring-solution-as-the-standard-monitoring-platform-for-managed-hosting-customers

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 37f7b"><a>4ef90ab6755 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/61/37f7b"><a>4ef90ab6755 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:24:19 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:24:19 GMT
Connection: close
Content-Type: text/html
Content-Length: 47929

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F61%2F37f7b"><a>4ef90ab6755&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.27. http://www.softlayer.com/press/release/81/softlayer-rolls-out-verisign-identity-protection [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/81/softlayer-rolls-out-verisign-identity-protection

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7e432"><a>03799ecdd82 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/81/7e432"><a>03799ecdd82 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:25:34 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:25:34 GMT
Connection: close
Content-Type: text/html
Content-Length: 44299

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F81%2F7e432"><a>03799ecdd82&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.28. http://www.softlayer.com/press/release/90/softlayer-launches-parallels-server-4-bare-metal-to-diversify-its-product-offerings-and-attract-new-customers [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/90/softlayer-launches-parallels-server-4-bare-metal-to-diversify-its-product-offerings-and-attract-new-customers

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5b92d"><a>ac1177c9cdf was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/90/5b92d"><a>ac1177c9cdf HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:28 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:28 GMT
Connection: close
Content-Type: text/html
Content-Length: 47235

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F90%2F5b92d"><a>ac1177c9cdf&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.29. http://www.softlayer.com/press/release/91/softlayer-is-a-finalist-for-the-2010-red-herring-100-north-america-award- [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/91/softlayer-is-a-finalist-for-the-2010-red-herring-100-north-america-award-

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 440a3"><a>13b58befaec was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/91/440a3"><a>13b58befaec HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:30 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:30 GMT
Connection: close
Content-Type: text/html
Content-Length: 44888

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F91%2F440a3"><a>13b58befaec&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.30. http://www.softlayer.com/press/release/92/softlayer-provides-mobile-application-for-androidtm-os [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/92/softlayer-provides-mobile-application-for-androidtm-os

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c1e00"><a>c17ffd6025b was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/92/c1e00"><a>c17ffd6025b HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:04 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:04 GMT
Connection: close
Content-Type: text/html
Content-Length: 44615

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F92%2Fc1e00"><a>c17ffd6025b&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.31. http://www.softlayer.com/press/release/93/softlayer-to-be-gold-sponsor-of-hostingcon-2010 [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /press/release/93/softlayer-to-be-gold-sponsor-of-hostingcon-2010

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 51b3c"><a>9510f06d7d2 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /press/release/93/51b3c"><a>9510f06d7d2 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:23:15 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:23:15 GMT
Connection: close
Content-Type: text/html
Content-Length: 44482

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Fpress%2Frelease%2F93%2F51b3c"><a>9510f06d7d2&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:hid
...[SNIP]...

1.32. http://www.softlayer.com/reseller/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://www.softlayer.com
Path:   /reseller/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b3f12"><a>c4b62062a3c was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Request

GET /reseller/?b3f12"><a>c4b62062a3c=1 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:10:56 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:10:56 GMT
Connection: close
Content-Type: text/html
Content-Length: 32204

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2Freseller%2F?b3f12"><a>c4b62062a3c=1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:h
...[SNIP]...

1.33. https://www.softlayer.com/Sales/orderCustomComputingInstance [name of an arbitrarily supplied request parameter]  previous

Summary

Severity:   High
Confidence:   Firm
Host:   https://www.softlayer.com
Path:   /Sales/orderCustomComputingInstance

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 30990"><a>377dc6fdf32 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Request

GET /Sales/orderCustomComputingInstance?30990"><a>377dc6fdf32=1 HTTP/1.1
Host: www.softlayer.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Mon, 15 Nov 2010 23:25:44 GMT
Server: Apache
Vary: Accept-Encoding,User-Agent
Cache-Control: max-age=0
Expires: Mon, 15 Nov 2010 23:25:44 GMT
Connection: close
Content-Type: text/html
Content-Length: 78884

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:dc="ht
...[SNIP]...
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.softlayer.com%2FSales%2ForderCustomComputingInstance?30990"><a>377dc6fdf32=1&amp;layout=standard&amp;show_faces=false&amp;width=265&amp;action=like&amp;font=helvetica&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; background-color: #fff; overflow:h
...[SNIP]...

Report generated by XSS.CX at Mon Nov 15 18:01:40 CST 2010.