0

The tag works like this:

<a ref="http://googl.com%22 onclick=alert(124)">http://google.com" onclick=alert(124)</a>

Here, the double quote I put is turned into %22. Is there a way to overcome it?

Anders
  • 64,406
  • 24
  • 178
  • 215
AK21
  • 49
  • 2

1 Answers1

0

Here, the double quote I put is turned into %22. Is there a way to overcome it?

No. Double quotes changing into %22 is called url encoding, which is performed so that rendered page doesn't treat it as double quotes.

yeah_well
  • 3,699
  • 1
  • 13
  • 30