Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Help hacking Guestbook
Hello,
I have been playing around with this guestbook application lately, and I think its vulnerable to XSS. I'll explain:
I first tried
<script>
in the comment box, and after quite anumber of tests, I figured, it won't allow the word <script>, or even <s. So to make a long story short, I have figured a way around this by "HTML entities encoding" the <script> string, so it passes, so I submitted:
<script language = "Javascript">alert('Hello');</script>
So that managed to get past the filter, but when I viewed the guestbook, the string:
<script language = "Javascript">alert('Hello');
</script>
why was there in plaintext, why didn't the application interpret and output it as javascript? Also it allows images too, is there anything I can do with that?
Thanks.