The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Issue background
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 defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense 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 defense 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 defense to be bypassed.
Another often cited defense 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.
Request 1
GET /getuid HTTP/1.1 Host: ib.adnxs.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)%2527 Connection: close Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; icu=EAAYAA..; uuid2=4760492999213801733; sess=1;
Response 1
HTTP/1.1 500 No url 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=Sat, 29-Jan-2011 16:46:47 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:46:47 GMT; domain=.adnxs.com; HttpOnly Date: Fri, 28 Jan 2011 16:46:47 GMT Content-Length: 0 Connection: close
Request 2
GET /getuid HTTP/1.1 Host: ib.adnxs.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)%2527%2527 Connection: close Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; icu=EAAYAA..; uuid2=4760492999213801733; sess=1;
Response 2
HTTP/1.1 302 Moved 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=Sat, 29-Jan-2011 16:46:47 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:46:47 GMT; domain=.adnxs.com; HttpOnly Location: ...C Date: Fri, 28 Jan 2011 16:46:47 GMT Content-Length: 0 Connection: close
The value of the cnd request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 2fece'-alert(1)-'9f941c34489 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.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /ab?enc=K01KQbd3DUBJwvOPFK4KQAAAAGBmZgJAScLzjxSuCkArTUpBt3cNQAIa1VB5i6osBWHfHSmrEEJFz0JNAAAAADgQAQDLAQAANQEAAAIAAACGaAIAhWQAAAEAAABVU0QAVVNEANgCWgD2DLoDvgQBAgUCAAIAAAAAox0IPAAAAAA.&tt_code=nydailynews.com&udj=uf%28%27a%27%2C+537%2C+1296224069%29%3Buf%28%27c%27%2C+5740%2C+1296224069%29%3Buf%28%27r%27%2C+157830%2C+1296224069%29%3Bppv%28783%2C+%273218538236873087490%27%2C+1296224069%2C+1297520069%2C+5740%2C+25733%29%3B&cnd=!txXYTwjsLBCG0QkYACCFyQEougcxnEjEH7d3DUBCEwgAEAAYACABKP7__________wFIAFAAWPYZYABotQI.2fece'-alert(1)-'9f941c34489&referrer=http://www.nydailynews.com/blogs70f75 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://www.nydailynews.com/blogs70f75'%3balert(document.cookie)//84f766b9c15/jets/2011/01/live-chat-friday-noon-1 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: icu=EAAYAA..; uuid2=4760492999213801733; anj=Kfu=8fG5+^E:3F.0s]#%2L_'x%SEV/i#-WZ=FzXN9?TZi)>y1-^s2mzPD+@4+<i:[v#mk@cE3+b8?jraDJt@%+`'uLM/Dl+8<5/!Ww5LUeE=7?vbgm<6zEk@/WBJ[MOl!9-@aXV4)=rJOM@R5(?)a%ZJ2Wcbf*>2GHpO^8q6y4.W-*y?$3o38q>cC^S[A.LeTUm`>tMe:Vn15)3V9!][_fmn.CQInWmsln_lnhV2sS:M5*3DU7fN@fu#Pa!9L%Hn?en]; sess=1
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=Sat, 29-Jan-2011 16:43:35 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:43:35 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/javascript Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:43:35 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:$78zsR5OeIufidQD2]*](K9'=5f>*@; path=/; expires=Thu, 28-Apr-2011 16:43:35 GMT; domain=.adnxs.com; HttpOnly Date: Fri, 28 Jan 2011 16:43:35 GMT Content-Length: 830
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 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=K01KQbd3DUBJwvOPFK4KQAAAAGBmZgJAScLzjxSuCkArTUpBt3cNQAIa1VB5i6osBWHfHSmrEEJFz0JNAAAAADgQAQDLAQAANQEAAAIAAACGaAIAhWQAAAEAAABVU0QAVVNEANgCWgD2DLoDvgQBAgUCAAIAAAAAox0IPAAAAAA.&tt_code=nydailynews.com&udj=uf%28%27a%27%2C+537%2C+1296224069%29%3Buf%28%27c%27%2C+5740%2C+1296224069%29%3Buf%28%27r%27%2C+157830%2C+1296224069%29%3Bppv%28783%2C+%273218538236873087490%27%2C+1296224069%2C+1297520069%2C+5740%2C+25733%29%3B&cnd=!txXYTwjsLBCG0QkYACCFyQEougcxnEjEH7d3DUBCEwgAEAAYACABKP7__________wFIAFAAWPYZYABotQI.&referrer=http://www.nydailynews.com/blogs70f75 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://www.nydailynews.com/blogs70f75'%3balert(document.cookie)//84f766b9c15/jets/2011/01/live-chat-friday-noon-1 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: icu=EAAYAA..; uuid2=4760492999213801733; anj=Kfu=8fG5+^E:3F.0s]#%2L_'x%SEV/i#-WZ=FzXN9?TZi)>y1-^s2mzPD+@4+<i:[v#mk@cE3+b8?jraDJt@%+`'uLM/Dl+8<5/!Ww5LUeE=7?vbgm<6zEk@/WBJ[MOl!9-@aXV4)=rJOM@R5(?)a%ZJ2Wcbf*>2GHpO^8q6y4.W-*y?$3o38q>cC^S[A.LeTUm`>tMe:Vn15)3V9!][_fmn.CQInWmsln_lnhV2sS:M5*3DU7fN@fu#Pa!9L%Hn?en]; sess=1
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=Sat, 29-Jan-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/javascript Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Date: Fri, 28 Jan 2011 14:14:29 GMT Content-Length: 802
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/K01KQbd3DUBJwvOPFK4KQAAAAGBmZgJAScLzjxSuCkArTUpBt3cNQAIa1VB5i6osBWHfHSmrEEJFz0JNAAAAADgQAQDLAQAANQEAAAIAAACGaAIAhWQAAAEAAABVU0QAVVNEANgCWgD2DLoDvgQBAgUCAAIAAAAAox0IPAAAAAA./cnd=!txXYTwjsLBCG0QkYACCFyQEougcxnEjEH7d3DUBCEwgAEAAYACABKP7__________wFIAFAAWPYZYABotQI./referrer=http:/www.nydailynews.com/blogs70f75/clickenc=http:/www.clickability.com/campaigns/Express_Datasheet.html?sfcid=70180000000fUSJ HTTP/1.1 Host: ib.adnxs.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; icu=EAAYAA..; uuid2=4760492999213801733; sess=1;
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=Sat, 29-Jan-2011 16:46:18 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:46:18 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:46:18 GMT; domain=.adnxs.com; HttpOnly Location: http:/www.clickability.com/campaigns/Express_Datasheet.html?sfcid=70180000000fUSJ Date: Fri, 28 Jan 2011 16:46:18 GMT Content-Length: 0 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 /getuid HTTP/1.1 Host: ib.adnxs.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; icu=EAAYAA..; uuid2=4760492999213801733; sess=1;
Response
HTTP/1.1 302 Moved 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=Sat, 29-Jan-2011 16:46:21 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 16:46:21 GMT; domain=.adnxs.com; HttpOnly Location: .c.7 Date: Fri, 28 Jan 2011 16:46:21 GMT Content-Length: 0 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 /getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://assets.rubiconproject.com/static/rtb/sync-min.html Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: icu=EAAYAA..; sess=1; uuid2=4760492999213801733; anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb
Response
HTTP/1.1 302 Moved 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=Sat, 29-Jan-2011 14:48:49 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:48:49 GMT; domain=.adnxs.com; HttpOnly Location: http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4760492999213801733&expires=30 Date: Fri, 28 Jan 2011 14:48:49 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 /mapuid?member=364&user=914803576615380,rcHW800iZiMAAocf HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://b3.mookie1.com/2/B3DM/DLX/1@x71 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: icu=EAAYAA..; sess=1; uuid2=4760492999213801733; anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb
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=Sat, 29-Jan-2011 14:14:50 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:50 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:50 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:50 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; path=/; expires=Thu, 28-Apr-2011 14:14:50 GMT; domain=.adnxs.com; HttpOnly Content-Length: 43 Content-Type: image/gif Date: Fri, 28 Jan 2011 14:14:50 GMT
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.
Request
GET /ab?enc=K01KQbd3DUBJwvOPFK4KQAAAAGBmZgJAScLzjxSuCkArTUpBt3cNQAIa1VB5i6osBWHfHSmrEEJFz0JNAAAAADgQAQDLAQAANQEAAAIAAACGaAIAhWQAAAEAAABVU0QAVVNEANgCWgD2DLoDvgQBAgUCAAIAAAAAox0IPAAAAAA.&tt_code=nydailynews.com&udj=uf%28%27a%27%2C+537%2C+1296224069%29%3Buf%28%27c%27%2C+5740%2C+1296224069%29%3Buf%28%27r%27%2C+157830%2C+1296224069%29%3Bppv%28783%2C+%273218538236873087490%27%2C+1296224069%2C+1297520069%2C+5740%2C+25733%29%3B&cnd=!txXYTwjsLBCG0QkYACCFyQEougcxnEjEH7d3DUBCEwgAEAAYACABKP7__________wFIAFAAWPYZYABotQI.&referrer=http://www.nydailynews.com/blogs70f75 HTTP/1.1 Host: ib.adnxs.com Proxy-Connection: keep-alive Referer: http://www.nydailynews.com/blogs70f75'%3balert(document.cookie)//84f766b9c15/jets/2011/01/live-chat-friday-noon-1 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: icu=EAAYAA..; uuid2=4760492999213801733; anj=Kfu=8fG5+^E:3F.0s]#%2L_'x%SEV/i#-WZ=FzXN9?TZi)>y1-^s2mzPD+@4+<i:[v#mk@cE3+b8?jraDJt@%+`'uLM/Dl+8<5/!Ww5LUeE=7?vbgm<6zEk@/WBJ[MOl!9-@aXV4)=rJOM@R5(?)a%ZJ2Wcbf*>2GHpO^8q6y4.W-*y?$3o38q>cC^S[A.LeTUm`>tMe:Vn15)3V9!][_fmn.CQInWmsln_lnhV2sS:M5*3DU7fN@fu#Pa!9L%Hn?en]; sess=1
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=Sat, 29-Jan-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Content-Type: text/javascript Set-Cookie: uuid2=4760492999213801733; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Set-Cookie: anj=Kfu=8fG68%E:3F.0s]#%2L_'x%SEV/i#+L9=FzXN9?TZi)>y1-4(^NfPD+@4+=p-.ut5]P'*l.AkLC:ZoWT8jurJFwtQgyR2#Z@Gma]02msi.X/+T:%u.sH%ptkhWT<T7O/!9fZN1X_94IFwbrUH.AC0A)'9DjhifCjr1a#[FbrxvsnEr]VJ@?3JlsWCTM<[<X>vc9aJjqyKfLgisMsE@+/IU*K*VTJy:P4x>H+=q5PufidQD2]*](K9'9kOYZb; path=/; expires=Thu, 28-Apr-2011 14:14:29 GMT; domain=.adnxs.com; HttpOnly Date: Fri, 28 Jan 2011 14:14:29 GMT Content-Length: 802