summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-03-26 13:15:34 +0100
committerAndrey Andreev <narf@devilix.net>2015-03-26 13:15:34 +0100
commitaebd039a61cb5135b31ab0b8d9d95ed3fb678c7b (patch)
tree336c1027c95b91c8e792788a9db6aa8e6f9b2f06 /tests/codeigniter/core
parent998608ec0cfbbc1b8fd2646abd4018765e413e99 (diff)
Add FSCommand and seekSegmentTime to evil HTML attributes list
Diffstat (limited to 'tests/codeigniter/core')
-rw-r--r--tests/codeigniter/core/Security_test.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/codeigniter/core/Security_test.php b/tests/codeigniter/core/Security_test.php
index b5524da0f..3acd2a598 100644
--- a/tests/codeigniter/core/Security_test.php
+++ b/tests/codeigniter/core/Security_test.php
@@ -144,6 +144,8 @@ class Security_test extends CI_TestCase {
$this->assertEquals('<foo prefixOnAttribute="bar">', $this->security->remove_evil_attributes('<foo prefixOnAttribute="bar">', FALSE));
$this->assertEquals('<foo>onOutsideOfTag=test</foo>', $this->security->remove_evil_attributes('<foo>onOutsideOfTag=test</foo>', FALSE));
$this->assertEquals('onNoTagAtAll = true', $this->security->remove_evil_attributes('onNoTagAtAll = true', FALSE));
+ $this->assertEquals('<foo [removed]>', $this->security->remove_evil_attributes('<foo fscommand=case-insensitive>', FALSE));
+ $this->assertEquals('<foo [removed]>', $this->security->remove_evil_attributes('<foo seekSegmentTime=whatever>', FALSE));
}
// --------------------------------------------------------------------