vote up 4 vote down star
2

Sometimes, server side will generate strings to be embedded in inline JavaScript code. For example, if "UserName" should be generated by ASP.NET. Then it looks like.

<script>
   var username = "<%UserName%>";
</script>

This is not safe, because a user can have his/her name to be

</script><script>alert('bug')</script></script>

It is XSS vulnerability.

So, basically, the code should be:

<script>
   var username = "<% JavascriptEncode(UserName)%>";
</script>

What JavascriptEncode does is to add charater "\" before "/" and "'" and """. So, the output html is like. var username = "<\/script>alert(\'bug\')<\/script><\/script>";

Browser will not interpret "<\/script>" as end of script block. So, XSS in avoided.

However, there are still "<" and ">" there. It is suggested to escape these two characters as well. First of all, I don't believe it is a good idea to change "<" to "&lt;" and ">" to "&gt;" here. And, I'm not sure changing "<" to "\<" and ">" to "\>" is recognizable to all browsers. It seems it is not necessary to do further encoding for "<" and ">".

Is there any suggestion on this?

Thanks.

flag

53% accept rate

7 Answers

vote up 0 vote down

Example

var store= new Array(1); var clcu='0'; var s='0'; var signs="+-*/="; var strlog=""; function clear1() { //alert("hi"); document.getElementById('txtdata').value=""; store[0]=null; store[1]=null; strlog=""; document.getElementById('log').innerHTML=strlog; //alert("bhj" + obj); } function plusmin() { var mch=document.getElementById('txtdata').value.charAt(0); if(document.getElementById('txtdata').value.charAt(0)=='-') { //alert(mch); //document.getElementById('txtdata').value.charAt(0)=null; var val=document.getElementById('txtdata').value; var val1=val.substr(1,val.length); document.getElementById('txtdata').value='+'+val1; } else if(document.getElementById('txtdata').value.charAt(0)=='+') { //alert(mch); var val=document.getElementById('txtdata').value; var val1=val.substr(1,val.length); document.getElementById('txtdata').value='-'+val1; } else { //alert(mch); document.getElementById('txtdata').value="-"+document.getElementById('txtdata').value; } } function calc(sign) { //alert("Hi"); switch(sign) { case '+': clcu='+'; s='+'; store[0]=parseInt(document.getElementById('txtdata').value); //alert(store); break; case '-': clcu='-'; s='-'; store[0]=parseInt(document.getElementById('txtdata').value); //alert(store); break; case '*': clcu='*'; s='*'; store[0]=parseInt(document.getElementById('txtdata').value); //alert(store); break; case '/': clcu='/'; s='/'; store[0]=parseInt(document.getElementById('txtdata').value); //alert(store); break; case 's': clcu='s'; s='s'; store[0]=parseInt(document.getElementById('txtdata').value); ans=Math.sqrt(store[0]); document.getElementById('txtdata').value=ans; strlog+=store[0]+"'s sqrt is "+ans+"
"; document.getElementById('log').innerHTML=strlog; //alert(store); break; case '=': //store.splice(1,0,document.getElementById('txtdata').value); //alert(s); store[1]=parseInt(document.getElementById('txtdata').value); if(s=='+') { ans=parseInt(store[0])+parseInt(store[1]); document.getElementById('txtdata').value=ans; strlog+=store[0]+" + "+store[1]+" = "+ans+"
"; document.getElementById('log').innerHTML=strlog; store[1]=null; //alert(ans); } else if(s=='-') { ans=parseInt(store[0])-parseInt(store[1]); document.getElementById('txtdata').value=ans; strlog+=store[0]+" - "+store[1]+" = "+ans+"
"; document.getElementById('log').innerHTML=strlog; store[1]=null; //alert(ans); } else if(s=='*') { ans=parseInt(store[0])*parseInt(store[1]); document.getElementById('txtdata').value=ans; strlog+=store[0]+" * "+store[1]+" = "+ans+"
"; document.getElementById('log').innerHTML=strlog; store[1]=null; //alert(ans); } else if(s=='/') { ans=parseInt(store[0])/parseInt(store[1]); document.getElementById('txtdata').value=ans; strlog+=store[0]+" / "+store[1]+" = "+ans+"
"; document.getElementById('log').innerHTML=strlog; store[1]=null; //alert(ans); } break; } } function insval(val) { //alert(parseInt(signs.indexOf(clcu))); var clcuind=parseInt(signs.indexOf(clcu)); //alert(clcu); //alert(clcuind); if(parseInt(signs.indexOf(clcu))>=0) { //alert("hi"); document.getElementById('txtdata').value=""; clcu='0'; document.getElementById('txtdata').value+=val; } else { document.getElementById('txtdata').value+=val; //alert(val); } } var flag=true; function viewlog() { if(flag) { document.getElementById('log').style.visibility="hidden"; flag=false; } else { document.getElementById('log').style.visibility="visible"; flag=true; //document.getElementById('log').innerHTML=strlog; } }

   

link|flag
vote up 0 vote down

var val1 = ""; var val2 = 0; var sign = ""; var ans = 0; var logArray = new Array(); logArray.length = 0 function check(button) { var Ctext= document.getElementById('t1'); if(button.value=='+' || button.value=='-' || button.value=='/' || button.value=='*' || button.value=='C' || button.value=='sqrt') { //alert(Ctext.value); sign = button.value; var temp=Ctext.value; /* while(temp.charAt(0)=="0") { temp=temp.substring(1); } if(temp.charAt(0)==".") { temp="0"+temp; } val1=temp;*/ val2=parseFloat(val1); val1=""; Ctext.value=val1; } else if(button.value == '=') { val1 = parseFloat(val1); switch(sign) { case "+": ans=parseFloat(parseFloat(val2)+parseFloat(val1)); break; case "-": ans=parseFloat(parseFloat(val2)-parseFloat(val1)); break; case "*": ans=parseFloat(parseFloat(val2)*parseFloat(val1)); break; case "/": if(parseFloat(val1)==0) { alert("Second value can not be zero for divid"); exit(); } else { ans=parseFloat(parseInt(val2)/parseInt(val1)); break; } case "sqrt": ans=Math.sqrt(parseFloat(val2)); break; case 'C': Ctext.value = "0"; break; } Ctext.value = ans; var log=val2+" "+sign+" "+val1+" ="+ans; logArray[logArray.length]=log; val1=""; val2=""; sign=""; } else { val1 += button.value; Ctext.value = val1; } }

         <form name="Calcu">
<table cellpadding="0" width="20%" align="center" border="1">


                      <tr>
		<td colspan="5"><input type="text" name="t1" id="t1"></td> 
                      </tr>


                      <tr>
		<td colspan="5" align="right"><input type="button" value="C" name="clear" id="clear" onclick="check(this);"></td> 
                      </tr>


	<tr>                    
		<td width="20%"><input type="button" value="7" name="seven" id="seven" onclick="check(this);"></td> 
            	<td width="20%"><input type="button" value="8" name="eight" id="eight" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="9" name="nine" id="nine" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="/" name="divid" id="divid" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="sqrt" name="sqrt" id="sqrt"onclick= "check(this);" ></td></td> 
	</tr>

	<tr>                    
		<td width="20%"><input type="button" value="4" name="four" id="four" onclick="check(this);"></td> 
            	<td width="20%"><input type="button" value="5" name="eight" id="five" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="6" name="nine" id="six" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="*" name="mul" id="mul" onclick="check(this);"></td></td> 
		<td width="20%">&nbsp;</td></td> 
	</tr>

	<tr>                    
		<td width="20%"><input type="button" value="1" name="onr" id="one" onclick="check(this);"></td> 
            	<td width="20%"><input type="button" value="2" name="two" id="two" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="3" name="three" id="three" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="-" name="min" id="min" onclick="check(this);"></td></td> 
		<td width="20%">&nbsp;</td></td> 
	</tr>

	<tr>                    
		<td width="20%"><input type="button" value="0" name="zero" id="zero" onclick="check(this);"></td>          
		<td width="20%"><input type="button" value="+/-" name="prm" id="prm"></td></td> 

		<td width="20%"><input type="button" value="." name="dot" id="dot" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="+" name="plus" id="plus" onclick="check(this);"></td></td> 
		<td width="20%"><input type="button" value="=" name="result" id="result" onclick="check(this);"></td></td> 
	</tr>


</table>

link|flag
vote up 0 vote down

The cheap and easy way:

<script type="text/javascript">
    var username = "<%= Encode(UserName) %>";
</script>

where the encoding scheme in Encode is to translate each character of input into the associated \xABCD representation compatible with JavaScript.

Another cheap and easy way:

<script type="text/javascript">
    var username = decodeBase64("<%= EncodeBase64(UserName) %>");
</script>

if you are dealing only with ASCII.

Of course, pst hit the nail on the head with the strict way of doing it.

link|flag
vote up 2 vote down

No, you should not escape < and > using HTML entities inside <script> in HTML.

  • Use JavaScript string escaping rules (replace \ with \\ and " with \")
  • and replace all occurances of </ with <\/, to prevent escaping out of the <script> element.

In XHTML it's more complicated.

  • If you send XHTML as XML (the way that's incompatible with IE) and don't use CDATA block, then you need to escape entities, in addition to JavaScript string escaping.
  • If you send XHTML as XML and use CDATA block, then don't escape entities, but replace ]]> with ]]]]><![CDATA[> to prevent escaping out of it (in addition to JavaScript string escaping).
  • If you send XHTML as text/html (what 99% of people does) then you have to use XML CDATA block, XML CDATA escaping and HTML escaping all at once.
link|flag
vote up -1 vote down

I would concentrate more on preventing user's entering <script> or other HTML tags where they shouldn't be. But if it's existing data, why would it be a problem to encode the '<' and '>' as HTML entities?

link|flag
vote up 5 vote down

The problem has different answers depending on what markup language you are using.

If you are using HTML, then you must not represent them with entities as script elements are marked as containing CDATA.

If you are using XHTML, then you may represent them as CDATA with explicit CDATA markers, or you may represent them with entities.

If you are using XHTML, but serving it as text/html, then you need to write something which conforms to the rules of XHTML but still works with a text/html parser. This generally means using explicit CDATA markers and commenting them out in JavaScript.

<script type="text/javascript">
// <![CDATA[
  …
// ]]>
</script>

A while ago, I wrote a bit about the hows and whys of this.

link|flag
But still the > in ]]> inside the CDATA block must be repalced by &gt;. So foo[bar[0]]>1234 must be replaced with foo[bar[0]]&lt;1234 or foo[bar[0]] > 1234. Otherwise the CDATA block would be closed prematurely. – Gumbo May 25 at 21:02
Since CDATA renders & characters as meaning "&" and not "Start of entity" - that wouldn't work. If you need to represent the string "]]>" inside CDATA then I'm pretty sure you are suck and should be using entities to start with (outside a CDATA block) – David Dorward May 26 at 6:55
1  
Or just add a space: foo[bar[0]] > 1234 - or if its a part of a string: 'foo[bar[0]]'+'>1234' - or just contain all your scripts in external .js files. – gnarf Oct 2 at 18:33
vote up -1 vote down

if I understand the question well, the code is in the server side. so why not use the Server.HtmlEncode()

<script>
   var username = "<%=Server.HtmlEncode(UserName)%>";
</script>
link|flag
Yes, it is in server side. The situation is that we want some string to have "<" and ">", but not to be displayed. Change ">" to "&amp;lt;" breaks the semantic. – Morgan Cheng Apr 23 at 1:39
Because encoding needs to be done differently in different contexts, and this is the wrong context for Server.HtmlEncode. – Justice Oct 2 at 19:02

Your Answer

Get an OpenID
or

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