XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, jobs.ebaycareers.com
Report generated by XSS.CX at Fri Oct 14 14:08:16 CDT 2011.
1. Cross-site scripting (reflected)
2. Cross-domain script include
2.1. http://jobs.ebaycareers.com/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs
2.2. http://jobs.ebaycareers.com/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs
2.3. http://jobs.ebaycareers.com/search/dba
2.4. http://jobs.ebaycareers.com/search/shopping
3. Cookie without HttpOnly flag set
3.1. http://jobs.ebaycareers.com/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs
3.2. http://jobs.ebaycareers.com/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs
4. Email addresses disclosed
1. Cross-site scripting (reflected)
next
Summary
Severity: |
High |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs |
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload c0cc6'-alert(1)-'8557c9d4dab was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:- Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
- User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs?c0cc6'-alert(1)-'8557c9d4dab=1 HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/shopping 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238352667.382581718.1318615848.1318615848.1318615848.1; __utmc=238352667; __utmz=238352667.1318615848.1.1.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Date: Fri, 14 Oct 2011 19:06:40 GMT Content-Length: 48891 Content-Type: text/html; charset=utf-8 seo: prod104 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Vary: Accept-Encoding, User-Agent
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... ar newPageName = ''; var LocalURL = ''; LocalURL = '?state=brisbane&category=shopping&jobtitle=global+head+of+product+(shopping+com)&jobid=1852142&dmaid=1004&dmaname=brisbane&c0cc6'-alert(1)-'8557c9d4dab=1'; //alert(LocalURL); if(emailid != null) { if(LocalURL != null && LocalURL.length > ...[SNIP]...
|
2. Cross-domain script include
previous
next
There are 4 instances of this issue:
Issue background
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
2.1. http://jobs.ebaycareers.com/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs |
Issue detail
The response dynamically includes the following scripts from other domains:- http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
- http://connect.facebook.net/en_US/all.js
- http://platform.linkedin.com/in.js
- http://platform.twitter.com/widgets.js
- http://s7.addthis.com/js/152/addthis_widget.js
- http://seostatic.tmp.com/includes/AC_RunActiveContent.js
- http://seostatic.tmp.com/includes/ReferFrend.js
- http://seostatic.tmp.com/includes/Search.js
- http://seostatic.tmp.com/includes/SeoReports.js
- http://seostatic.tmp.com/includes/socialTabs.js
- http://seostatic.tmp.com/includes/twitter.js
- http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50
- http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw
- http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new
- http://www.linkedin.com/js/public-profile/widget-os.js
Request
GET /brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/shopping 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238352667.382581718.1318615848.1318615848.1318615848.1; __utmc=238352667; __utmz=238352667.1318615848.1.1.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 48856 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 106 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Date: Fri, 14 Oct 2011 19:06:02 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... <meta id="MetaRobots" name="robots" content="all" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/AC_RunActiveContent.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/Search.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/SeoReports.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/ReferFrend.js"></script> ...[SNIP]... </script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/socialTabs.js"></script> ...[SNIP]... <!-- linkedin widget --> <script type="text/javascript" src="http://www.linkedin.com/js/public-profile/widget-os.js"></script>
<!-- youtube widget --> <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw"></script> <script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new"></script> ...[SNIP]... <li class="facebook"> <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> ...[SNIP]... <li class="linkedin"> <script type="text/javascript" src="http://platform.linkedin.com/in.js"></script> ...[SNIP]... <div class="tabContent twitterContent hidden"> <script type="text/javascript" src="http://seostatic.tmp.com/includes/twitter.js"></script> ...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script> ...[SNIP]... </ul> <script src="http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50" type="text/javascript"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script> ...[SNIP]...
|
2.2. http://jobs.ebaycareers.com/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs |
Issue detail
The response dynamically includes the following scripts from other domains:- http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
- http://connect.facebook.net/en_US/all.js
- http://platform.linkedin.com/in.js
- http://platform.twitter.com/widgets.js
- http://s7.addthis.com/js/152/addthis_widget.js
- http://seostatic.tmp.com/includes/AC_RunActiveContent.js
- http://seostatic.tmp.com/includes/ReferFrend.js
- http://seostatic.tmp.com/includes/Search.js
- http://seostatic.tmp.com/includes/SeoReports.js
- http://seostatic.tmp.com/includes/socialTabs.js
- http://seostatic.tmp.com/includes/twitter.js
- http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50
- http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw
- http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new
- http://www.linkedin.com/js/public-profile/widget-os.js
Request
GET /de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/dba 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); apstr=; utmzSource=(direct); __utma=238352667.382581718.1318615848.1318615848.1318619188.2; __utmb=238352667.4.9.1318619220133; __utmc=238352667; __utmz=238352667.1318619188.2.2.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 50021 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 105 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Date: Fri, 14 Oct 2011 19:06:44 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... <meta id="MetaRobots" name="robots" content="all" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/AC_RunActiveContent.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/Search.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/SeoReports.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/ReferFrend.js"></script> ...[SNIP]... </script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/socialTabs.js"></script> ...[SNIP]... <!-- linkedin widget --> <script type="text/javascript" src="http://www.linkedin.com/js/public-profile/widget-os.js"></script>
<!-- youtube widget --> <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw"></script> <script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new"></script> ...[SNIP]... <li class="facebook"> <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> ...[SNIP]... <li class="linkedin"> <script type="text/javascript" src="http://platform.linkedin.com/in.js"></script> ...[SNIP]... <div class="tabContent twitterContent hidden"> <script type="text/javascript" src="http://seostatic.tmp.com/includes/twitter.js"></script> ...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script> ...[SNIP]... </ul> <script src="http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50" type="text/javascript"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script> ...[SNIP]...
|
2.3. http://jobs.ebaycareers.com/search/dba
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/search/dba |
Issue detail
The response dynamically includes the following scripts from other domains:- http://connect.facebook.net/en_US/all.js
- http://platform.linkedin.com/in.js
- http://platform.twitter.com/widgets.js
- http://s7.addthis.com/js/152/addthis_widget.js
- http://seostatic.tmp.com/includes/SEO/scripts/colorbox/jquery.min.js
- http://seostatic.tmp.com/includes/Search.js
- http://seostatic.tmp.com/includes/socialTabs.js
- http://seostatic.tmp.com/includes/twitter.js
- http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50
- http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw
- http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new
- http://www.linkedin.com/js/public-profile/widget-os.js
Request
GET /search/dba HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); apstr=; utmzSource=(direct); __utma=238352667.382581718.1318615848.1318615848.1318619188.2; __utmb=238352667.2.9.1318619188; __utmc=238352667; __utmz=238352667.1318619188.2.2.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 43935 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 105 X-AspNet-Version: 2.0.50727 Date: Fri, 14 Oct 2011 19:06:39 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... <meta name="y_key" content="c479e5b03a6a17ee" />
<script type="text/javascript" src="http://seostatic.tmp.com/includes/Search.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/SEO/scripts/colorbox/jquery.min.js"></script> ...[SNIP]... </script>
<script type="text/javascript" src="http://seostatic.tmp.com/includes/socialTabs.js"></script> ...[SNIP]... <!-- linkedin widget --> <script type="text/javascript" src="http://www.linkedin.com/js/public-profile/widget-os.js"></script>
<!-- youtube widget --> <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw"></script> <script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new"></script> ...[SNIP]... <li class="facebook"> <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> ...[SNIP]... <li class="linkedin"> <script type="text/javascript" src="http://platform.linkedin.com/in.js"></script> ...[SNIP]... <div class="tabContent twitterContent hidden"> <script type="text/javascript" src="http://seostatic.tmp.com/includes/twitter.js"></script> ...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script> ...[SNIP]... </ul> <script src="http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50" type="text/javascript"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script> ...[SNIP]...
|
2.4. http://jobs.ebaycareers.com/search/shopping
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/search/shopping |
Issue detail
The response dynamically includes the following scripts from other domains:- http://connect.facebook.net/en_US/all.js
- http://platform.linkedin.com/in.js
- http://platform.twitter.com/widgets.js
- http://s7.addthis.com/js/152/addthis_widget.js
- http://seostatic.tmp.com/includes/SEO/scripts/colorbox/jquery.min.js
- http://seostatic.tmp.com/includes/Search.js
- http://seostatic.tmp.com/includes/socialTabs.js
- http://seostatic.tmp.com/includes/twitter.js
- http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50
- http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw
- http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new
- http://www.linkedin.com/js/public-profile/widget-os.js
Request
GET /search/shopping HTTP/1.1 Host: jobs.ebaycareers.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.ebaycareers.com/Home.html 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmb=7455846.2.10.1318615744; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 66223 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 105 X-AspNet-Version: 2.0.50727 Date: Fri, 14 Oct 2011 18:10:23 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... <meta name="y_key" content="c479e5b03a6a17ee" />
<script type="text/javascript" src="http://seostatic.tmp.com/includes/Search.js"></script> <script type="text/javascript" src="http://seostatic.tmp.com/includes/SEO/scripts/colorbox/jquery.min.js"></script> ...[SNIP]... </script>
<script type="text/javascript" src="http://seostatic.tmp.com/includes/socialTabs.js"></script> ...[SNIP]... <!-- linkedin widget --> <script type="text/javascript" src="http://www.linkedin.com/js/public-profile/widget-os.js"></script>
<!-- youtube widget --> <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw"></script> <script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new"></script> ...[SNIP]... <li class="facebook"> <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> ...[SNIP]... <li class="linkedin"> <script type="text/javascript" src="http://platform.linkedin.com/in.js"></script> ...[SNIP]... <div class="tabContent twitterContent hidden"> <script type="text/javascript" src="http://seostatic.tmp.com/includes/twitter.js"></script> ...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script> ...[SNIP]... </ul> <script src="http://twitter.com/statuses/user_timeline/ebay.json?callback=twitterCallback&count=50" type="text/javascript"></script> ...[SNIP]... </a> <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script> ...[SNIP]...
|
3. Cookie without HttpOnly flag set
previous
next
There are 2 instances of this issue:
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
3.1. http://jobs.ebaycareers.com/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs |
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:- utmzSource=(direct); path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /brisbane/shopping/jobid1852142-global-head-of-product-(shopping-com)-jobs HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/shopping 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238352667.382581718.1318615848.1318615848.1318615848.1; __utmc=238352667; __utmz=238352667.1318615848.1.1.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 48856 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 106 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Date: Fri, 14 Oct 2011 19:06:02 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]...
|
3.2. http://jobs.ebaycareers.com/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs
previous
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs |
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:- utmzSource=(direct); path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/dba 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); apstr=; utmzSource=(direct); __utma=238352667.382581718.1318615848.1318615848.1318619188.2; __utmb=238352667.4.9.1318619220133; __utmc=238352667; __utmz=238352667.1318619188.2.2.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 50021 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 105 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Date: Fri, 14 Oct 2011 19:06:44 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]...
|
4. Email addresses disclosed
previous
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://jobs.ebaycareers.com |
Path: |
/de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs |
Issue detail
The following email address was disclosed in the response:
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
Request
GET /de/berlin/marketing-_-sales/jobid1771154-intl.-sem-_-sea-manager-(f_m)-(kijiji)-jobs HTTP/1.1 Host: jobs.ebaycareers.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://jobs.ebaycareers.com/search/dba 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: __utma=7455846.1615516749.1318615744.1318615744.1318615744.1; __utmc=7455846; __utmz=7455846.1318615744.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); apstr=; utmzSource=(direct); __utma=238352667.382581718.1318615848.1318615848.1318619188.2; __utmb=238352667.4.9.1318619220133; __utmc=238352667; __utmz=238352667.1318619188.2.2.utmcsr=ebaycareers.com|utmccn=(referral)|utmcmd=referral|utmcct=/Home.html
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Length: 50021 Content-Type: text/html; charset=utf-8 X-Powered-By: ASP.NET seo: 105 X-AspNet-Version: 2.0.50727 Set-Cookie: utmzSource=(direct); path=/ Date: Fri, 14 Oct 2011 19:06:44 GMT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title ...[SNIP]... <br/>If you have any further questions please contact Henk Esseveld at job@ebay.de</p> ...[SNIP]...
|
Report generated by XSS.CX at Fri Oct 14 14:08:16 CDT 2011.