Blame view

vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/secure-munge.htmlt 426 Bytes
abf1649b   andryeyev   Чистая установка ...
1
2
3
4
5
6
7
8
9
10
11
12
  --SKIPIF--
  return !function_exists('hash_hmac');
  --INI--
  URI.Munge = "/redirect.php?url=%s&check=%t"
  URI.MungeSecretKey = "foo"
  --HTML--
  <a href="http://localhost">foo</a>
  <img src="http://localhost" alt="local" />
  --EXPECT--
  <a href="/redirect.php?url=http%3A%2F%2Flocalhost&amp;check=c0efad89696082f5cb925d28636b0f4260f346391c92c70c8e9eba72591c2a73">foo</a>
  <img src="http://localhost" alt="local" />
  --# vim: et sw=4 sts=4