Would you like to crash FreeTextBox? Here is the trick. Visit the page http://freetextbox.com/demos/Default.aspx
Click on HTML view and copy/paste the following code.
<script language="javascript">alert("Hi");</script>
Hello
Press “Save” button. This will convert your code into
<script language="javascript">
<![CDATA[lert("Hi");]]>
</script>
Hello
Note that “a” is missing. Pretty interesting!!! hmmmmmm….
Now again click on HTML view and copy/paste following code
<script language="javascript">
<![CDATA[alert("Hi");]]>
</script>
Hello
Now you will see error….. Hurray…… You crashed FreeTextBox !!!!!!!!!!!!!!!!
Now you might think how can I write javascript in FreeTextBox? Here is the solution.
<script language="javascript">
<!-- alert("Hi"); -->
</script>
Hello
Now it will perfectly show you script and will execute without any problem.
Leave a Reply