I'm away from a computer with PHP installed and was wondering what the result of strip_tags() would be on the following text: "<scr<h1>ipt>alert('oh oh')</scr</h1>ipt>"

Would it return: "<script>alert('oh oh')</script>" (i.e. not recognize that by removing the obvious tag it exposed a new one) or "alert('oh oh')

I know that if it returns the first case I can just repeatedly call the function until I get out what I put in, but I'm curious.

Thanks in advance.

link|improve this question
I suppose a valid question would be: Why do you want to do this? If you are looking to avoid XSS contextual encoding is the correct method, not stripping tags. – Erlend Dec 21 '11 at 21:50
feedback

2 Answers

up vote 0 down vote accepted

Great question.

Nope, it doesn't strip anything from that string:

<?php
$b = "ipt>alert('oh oh')ipt>";
echo strip_tags($b);
?>

And the output is your original string: ipt>alert('oh oh')ipt>

Edit

In your second case it will print alert('oh oh') so it strips all that is looking like a tag in a single step

link|improve this answer
Sorry the post had edited my original string because I did not use the HTML character codes, could you take a look at it again for me. Thanks! – Cailen Dec 21 '11 at 5:40
feedback

It returns just:

alert('oh oh')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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