vote up 0 vote down star

Hi guys, I am a little bit confused on something, see I am doing an Ajax request via Jquery, I send back encoded data in an xml document ( using htmlentities to prevent XSS ) but the thing is when I parse the XML and get the data it seems Jquery automatically decodes the htmlentities and I end up with vulnerable data.

Do you have any idea how to prevent Jquery from decoding the encoded data, or I am missing an option in the ajax request.

Any help is very appreciated as I am stuck at this point.

here is my current ajax options :

$.ajax({
  url: 'ajax_handle.php',
  data: {pg: cpage, rid: rid},
  type: 'POST',
  cache: false,
  error: function(xhr, ajaxOptions, thrownError){
     $( button ).val( 'Error' );
  },
  success: function(xmldata){ /* Parsing here */ }
}

Somehow When I use Jquery find() and get the text, all the data that has been encoded with htmlentities gets decoded.

Example :

Data : <c><cu>Test</cu><cb>&#160;htmlentitiesgez564&lt;script&gt;</cb></c>

Parsed data :

cu : Test
cb :  htmlentitiesgez564<script>;

You can see how dangerous that can be, any idea how to fix this ?

flag
Please edit your question: Indent source code with 4 spaces to have it look good. – Boldewyn Nov 4 at 12:36
Thanks, first timer here :') – Fennec Nov 4 at 12:54
You mean the xmldata you get in the success function has already the decoded entities? Did you try explicitly setting dataType to xml in the ajax request? – jitter Nov 4 at 13:01
I did, still the same, what I understood is that Jquery automatically decodes the data. – Fennec Nov 4 at 13:07

2 Answers

vote up 0 vote down check

jQuery is automatically decoding the data but as long as you don't eval or inject that data into the DOM nothing will happen. So for example if you wanted to inject this into the DOM you don't have to use the html method but the text method:

$('#someDiv').text('<script>alert("ok");</' + 'script>');
link|flag
Thank you! That's actually a much simpler way to do it, I love K.I.S.S – Fennec Nov 4 at 14:12
Also I have figured out that putting your data inside <![CDATA[ ] ]> prevents the parser from parsing your data, so this as well solves the issue! – Fennec Nov 5 at 14:05
vote up 0 vote down

try adding the dataType option to your ajax config object

$.ajax({
  url: 'ajax_handle.php',
  data: {pg: cpage, rid: rid},
  type: 'POST',
  dataType: "text",
  cache: false,
  error: function(xhr, ajaxOptions, thrownError){
     $( button ).val( 'Error' );
  },
  success: function(xmldata){ /* Parsing here */ }
}

This should tell jQuery that the received response is to be interpreted as text

link|flag
That's true, but I won't be able to parse it, since the respond is XML data. – Fennec Nov 4 at 13:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.