github.com/keysonZZZ/kmg@v0.0.0-20151121023212-05317bfd7d39/kmgView/kmgGoTpl/testFile/test4Xss.gotplhtml (about)

     1  <?
     2  package example
     3  // xss 测试
     4  func tplTest4()string{
     5      a:="http://www.google.com/"
     6      html:="<br/>"
     7  ?>
     8  <a href="<?=a?>"><?=a?></a>
     9  <?=raw(html)?>
    10  <a href="http://www.google.com/?v1=<?=a?>"></a>
    11  <a href="http://www.google.com/?v1=a&v2=<?=a?>"></a>
    12  <script>
    13      var jsA = <?=a?>;
    14  </script>
    15  <? }
    16  ?>