From 17224d011a824b5ff6a90ef4efcc2200e1a9ad2c Mon Sep 17 00:00:00 2001 From: Tobe O Date: Fri, 16 Aug 2019 10:42:40 -0400 Subject: [PATCH] Roll libinjection --- .idea/workspace.xml | 289 +- CMakeLists.txt | 6 +- .../{angel_security.cc => angel_security.c} | 25 +- lib/src/native/native.dart | 6 +- lib/src/native/sqli.dart | 17 + libinjection/.gitignore | 46 + libinjection/.travis.yml | 14 + libinjection/CHANGELOG | 2 + libinjection/CHANGELOG.md | 288 + libinjection/COPYING | 32 + libinjection/README.md | 109 + libinjection/RELEASE-HOWTO.md | 33 + libinjection/configure-clang-asan.sh | 20 + libinjection/configure-clang.sh | 20 + libinjection/configure-gcc-hardened.sh | 16 + libinjection/configure-gcov.sh | 11 + libinjection/configure-gprof.sh | 9 + libinjection/data/README.md | 12 + libinjection/data/false_positives.txt | 443 + libinjection/data/sqli-@ru_raz0-20160705.txt | 30 + .../data/sqli-arithmetic_blind_sqli.txt | 11 + .../data/sqli-arithmetic_variations.txt | 73 + .../data/sqli-arneswinnen.net-boolean.txt | 15 + .../data/sqli-arneswinnen.net-time.txt | 44 + .../data/sqli-comparitiveprecomputation.txt | 15 + libinjection/data/sqli-edb-17934.txt | 40 + libinjection/data/sqli-forums.txt | 14072 +++ libinjection/data/sqli-fullqueries.txt | 131 + libinjection/data/sqli-fuzz-ischi.txt | 315 + libinjection/data/sqli-github-110.txt | 6 + libinjection/data/sqli-github-114.txt | 4 + libinjection/data/sqli-github-123.txt | 1 + libinjection/data/sqli-github-125.txt | 11 + libinjection/data/sqli-github-modsec-782.txt | 3 + libinjection/data/sqli-hackers.txt | 265 + libinjection/data/sqli-ibm.txt | 4 + libinjection/data/sqli-insert_attacks.txt | 20 + libinjection/data/sqli-isc_sans.txt | 8 + libinjection/data/sqli-left.txt | 7 + libinjection/data/sqli-misc.txt | 640 + libinjection/data/sqli-mysql-implicit.txt | 132 + libinjection/data/sqli-phpids.txt | 275 + libinjection/data/sqli-rsalgado-bhusa2013.txt | 151 + libinjection/data/sqli-spiderlabs-201107.txt | 24 + libinjection/data/sqli-spiderlabs-201112.txt | 24 + libinjection/data/sqli-spiderlabs-201205.txt | 12 + libinjection/data/sqli-sqlmap-20130419.txt | 36765 +++++++ libinjection/data/sqli-sqlmap-20160724.txt | 100 + libinjection/data/sqli-sqlmap.txt | 31886 +++++++ libinjection/data/sqli-sqlmap_examples.txt | 22 + libinjection/data/sqli-themole.txt | 56 + libinjection/data/sqli-wordpress_rbarnett.txt | 1124 + libinjection/data/tbd-xss-github-issue-68.txt | 3 + .../xss-0x6D6172696F-394932823645503488.txt | 3 + libinjection/data/xss-angular-pull-11290.txt | 4 + libinjection/data/xss-html5secorg.txt | 488 + libinjection/data/xss-mgentile-2013.txt | 7 + libinjection/data/xss-modsecurity-2013-1.txt | 2 + libinjection/data/xss-modsecurity-2013-2.txt | 3 + .../data/xss-owasp-cheatsheet-20131120.txt | 259 + libinjection/data/xss-shazzer.txt | 79561 ++++++++++++++++ libinjection/data/xss-smoke-test.txt | 86 + .../xss-soaj1664ashar-pastebin-u6FY1xDA.txt | 105 + libinjection/data/xss-soaj1664ashar.txt | 57 + libinjection/data/xss-xenotix.txt | 1204 + libinjection/go/main.go | 33 + libinjection/install-sh | 527 + libinjection/lua/.gitignore | 1 + libinjection/lua/data2lua.py | 41 + libinjection/lua/generate_lua_fingerprints.py | 26 + libinjection/lua/libinjection.i | 62 + libinjection/lua/luatest.lua | 107 + libinjection/lua/make_test.py | 74 + libinjection/lua/testdriver.lua | 90 + libinjection/make-ci.sh | 85 + libinjection/misc/gittag.sh | 28 + libinjection/misc/home.md | 45 + libinjection/misc/logscanner.py | 64 + libinjection/misc/logscanner2.py | 213 + libinjection/misc/mdgen.sh | 8 + libinjection/misc/modsecurity-merge.sh | 79 + libinjection/misc/mysql_implicit_tests.py | 47 + libinjection/misc/nullserver.py | 111 + libinjection/misc/run_sqlmap.sh | 29 + libinjection/misc/sqliserver.py | 339 + libinjection/misc/static/favicon.gif | Bin 0 -> 1907 bytes libinjection/misc/static/favicon.ico | Bin 0 -> 4286 bytes libinjection/misc/static/favicon.png | Bin 0 -> 3128 bytes libinjection/misc/static/robots.txt | 2 + libinjection/php/config.m4 | 13 + libinjection/php/example.php | 25 + libinjection/php/gentests.py | 136 + libinjection/php/json2php.py | 53 + libinjection/php/libinjection.i | 18 + libinjection/php/testsupport.php | 35 + libinjection/python/apitest.py | 58 + libinjection/python/json2python.py | 52 + libinjection/python/libinjection/__init__.py | 1 + .../python/libinjection/libinjection.i | 81 + .../python/libinjection/sqli_fingerprints.py | 4 + libinjection/python/pytest.py | 35 + libinjection/python/setup.py | 49 + libinjection/python/speedtest.py | 89 + libinjection/python/test_driver.py | 139 + libinjection/run-clang-asan.sh | 11 + libinjection/run-gcov-samples.sh | 16 + libinjection/run-gcov-unittests.sh | 18 + libinjection/src/.gitignore | 23 + libinjection/src/CMakeLists.txt | 3 + libinjection/src/alpine.supp | 18 + libinjection/src/clang.sh | 17 + libinjection/src/example1.c | 30 + libinjection/src/fingerprints.txt | 8367 ++ libinjection/src/fingerprints2sqli.py | 60 + libinjection/src/fptool.c | 79 + libinjection/src/html5_cli.c | 168 + libinjection/src/libinjection.h | 65 + libinjection/src/libinjection_html5.c | 850 + libinjection/src/libinjection_html5.h | 54 + libinjection/src/libinjection_sqli.c | 2325 + libinjection/src/libinjection_sqli.h | 294 + libinjection/src/libinjection_sqli_data.h | 9652 ++ libinjection/src/libinjection_xss.c | 532 + libinjection/src/libinjection_xss.h | 21 + libinjection/src/make_parens.py | 420 + libinjection/src/reader.c | 313 + libinjection/src/sqli_cli.c | 164 + libinjection/src/sqlparse2c.py | 132 + libinjection/src/sqlparse_data.json | 9616 ++ libinjection/src/sqlparse_map.py | 1569 + libinjection/src/test-cppcheck.sh | 9 + libinjection/src/test-driver.sh | 15 + .../src/test-samples-sqli-negative.sh | 6 + .../src/test-samples-sqli-positive.sh | 7 + libinjection/src/test-samples-xss-positive.sh | 6 + libinjection/src/test-speed-sqli.sh | 3 + libinjection/src/test-speed-xss.sh | 3 + libinjection/src/test-unit.sh | 6 + libinjection/src/test_speed_sqli.c | 68 + libinjection/src/test_speed_xss.c | 84 + libinjection/src/testdriver.c | 313 + libinjection/tags.sh | 12 + libinjection/test-gprof.sh | 10 + libinjection/tests/test-folding-001.txt | 8 + libinjection/tests/test-folding-002.txt | 8 + libinjection/tests/test-folding-003.txt | 9 + libinjection/tests/test-folding-004.txt | 9 + libinjection/tests/test-folding-005.txt | 9 + libinjection/tests/test-folding-006.txt | 9 + libinjection/tests/test-folding-007.txt | 5 + libinjection/tests/test-folding-008.txt | 6 + libinjection/tests/test-folding-009.txt | 7 + libinjection/tests/test-folding-010.txt | 7 + libinjection/tests/test-folding-011.txt | 8 + libinjection/tests/test-folding-012.txt | 6 + libinjection/tests/test-folding-013.txt | 6 + libinjection/tests/test-folding-014.txt | 6 + libinjection/tests/test-folding-015.txt | 7 + libinjection/tests/test-folding-016.txt | 7 + libinjection/tests/test-folding-017.txt | 7 + libinjection/tests/test-folding-018.txt | 10 + libinjection/tests/test-folding-019.txt | 11 + libinjection/tests/test-folding-020.txt | 11 + libinjection/tests/test-folding-021.txt | 6 + libinjection/tests/test-folding-022.txt | 8 + libinjection/tests/test-folding-023.txt | 8 + libinjection/tests/test-folding-024.txt | 5 + libinjection/tests/test-folding-025.txt | 6 + libinjection/tests/test-folding-026.txt | 6 + libinjection/tests/test-folding-027.txt | 6 + libinjection/tests/test-folding-028.txt | 5 + libinjection/tests/test-folding-029.txt | 8 + libinjection/tests/test-folding-030.txt | 8 + libinjection/tests/test-folding-031.txt | 8 + libinjection/tests/test-folding-032.txt | 8 + libinjection/tests/test-folding-033.txt | 8 + libinjection/tests/test-folding-034.txt | 8 + libinjection/tests/test-folding-035.txt | 10 + libinjection/tests/test-folding-036.txt | 8 + libinjection/tests/test-folding-037.txt | 8 + libinjection/tests/test-folding-038.txt | 8 + libinjection/tests/test-folding-039.txt | 10 + libinjection/tests/test-folding-040.txt | 8 + libinjection/tests/test-folding-041.txt | 10 + libinjection/tests/test-folding-042.txt | 8 + libinjection/tests/test-folding-043.txt | 10 + libinjection/tests/test-folding-044.txt | 10 + libinjection/tests/test-folding-045.txt | 9 + libinjection/tests/test-folding-046.txt | 11 + libinjection/tests/test-folding-047.txt | 7 + libinjection/tests/test-folding-048.txt | 7 + libinjection/tests/test-folding-049.txt | 9 + libinjection/tests/test-folding-050.txt | 9 + libinjection/tests/test-folding-051.txt | 9 + libinjection/tests/test-folding-052.txt | 9 + libinjection/tests/test-folding-053.txt | 9 + libinjection/tests/test-folding-054.txt | 10 + libinjection/tests/test-folding-055.txt | 8 + libinjection/tests/test-folding-056.txt | 8 + libinjection/tests/test-folding-057.txt | 8 + libinjection/tests/test-folding-058.txt | 10 + libinjection/tests/test-folding-059.txt | 10 + libinjection/tests/test-folding-060.txt | 10 + libinjection/tests/test-folding-061.txt | 10 + libinjection/tests/test-folding-062.txt | 10 + libinjection/tests/test-folding-063.txt | 10 + libinjection/tests/test-folding-064.txt | 10 + libinjection/tests/test-folding-065.txt | 9 + libinjection/tests/test-folding-066.txt | 11 + libinjection/tests/test-folding-067.txt | 10 + libinjection/tests/test-folding-068.txt | 10 + libinjection/tests/test-folding-069.txt | 10 + libinjection/tests/test-folding-070.txt | 13 + libinjection/tests/test-folding-071.txt | 10 + libinjection/tests/test-folding-072.txt | 11 + libinjection/tests/test-folding-073.txt | 8 + libinjection/tests/test-folding-074.txt | 10 + libinjection/tests/test-folding-075.txt | 10 + libinjection/tests/test-folding-076.txt | 10 + libinjection/tests/test-folding-077.txt | 10 + libinjection/tests/test-folding-078.txt | 10 + libinjection/tests/test-folding-079.txt | 12 + libinjection/tests/test-folding-080.txt | 12 + libinjection/tests/test-folding-081.txt | 6 + libinjection/tests/test-folding-082.txt | 12 + libinjection/tests/test-folding-083.txt | 9 + libinjection/tests/test-folding-084.txt | 9 + libinjection/tests/test-folding-085.txt | 9 + libinjection/tests/test-folding-086.txt | 12 + libinjection/tests/test-folding-087.txt | 12 + libinjection/tests/test-folding-088.txt | 10 + libinjection/tests/test-folding-089.txt | 10 + libinjection/tests/test-folding-090.txt | 10 + libinjection/tests/test-folding-091.txt | 10 + libinjection/tests/test-folding-092.txt | 10 + libinjection/tests/test-folding-093.txt | 12 + libinjection/tests/test-folding-094.txt | 12 + libinjection/tests/test-folding-095.txt | 14 + libinjection/tests/test-folding-096.txt | 14 + libinjection/tests/test-folding-097.txt | 14 + libinjection/tests/test-folding-098.txt | 12 + libinjection/tests/test-folding-099.txt | 13 + libinjection/tests/test-folding-100.txt | 13 + libinjection/tests/test-folding-101.txt | 13 + libinjection/tests/test-folding-102.txt | 15 + libinjection/tests/test-folding-103.txt | 15 + libinjection/tests/test-folding-104.txt | 13 + libinjection/tests/test-folding-105.txt | 13 + libinjection/tests/test-folding-106.txt | 14 + libinjection/tests/test-folding-107.txt | 14 + libinjection/tests/test-folding-108.txt | 18 + libinjection/tests/test-folding-109.txt | 14 + libinjection/tests/test-folding-110.txt | 14 + libinjection/tests/test-folding-111.txt | 14 + libinjection/tests/test-folding-112.txt | 15 + libinjection/tests/test-folding-113.txt | 12 + libinjection/tests/test-folding-114.txt | 11 + libinjection/tests/test-folding-115.txt | 7 + libinjection/tests/test-folding-116.txt | 10 + libinjection/tests/test-folding-117.txt | 10 + libinjection/tests/test-folding-118.txt | 11 + libinjection/tests/test-html5-001.txt | 6 + libinjection/tests/test-html5-002.txt | 6 + libinjection/tests/test-html5-003.txt | 4 + libinjection/tests/test-html5-004.txt | 10 + libinjection/tests/test-html5-005.txt | 10 + libinjection/tests/test-html5-006.txt | 9 + libinjection/tests/test-html5-007.txt | 9 + libinjection/tests/test-html5-008.txt | 9 + libinjection/tests/test-html5-009.txt | 9 + libinjection/tests/test-html5-010.txt | 9 + libinjection/tests/test-html5-011.txt | 9 + libinjection/tests/test-html5-012.txt | 9 + libinjection/tests/test-html5-013.txt | 9 + libinjection/tests/test-html5-014.txt | 9 + libinjection/tests/test-html5-015.txt | 10 + libinjection/tests/test-html5-016.txt | 7 + libinjection/tests/test-html5-017.txt | 9 + libinjection/tests/test-html5-018.txt | 11 + libinjection/tests/test-html5-019.txt | 9 + libinjection/tests/test-html5-020.txt | 10 + libinjection/tests/test-html5-021.txt | 10 + libinjection/tests/test-html5-022.txt | 9 + libinjection/tests/test-html5-023.txt | 9 + libinjection/tests/test-html5-024.txt | 9 + libinjection/tests/test-html5-025.txt | 9 + libinjection/tests/test-html5-026.txt | 9 + libinjection/tests/test-html5-027.txt | 9 + libinjection/tests/test-html5-028.txt | 9 + libinjection/tests/test-html5-029.txt | 9 + libinjection/tests/test-html5-030.txt | 8 + libinjection/tests/test-html5-031.txt | 8 + libinjection/tests/test-html5-032.txt | 10 + libinjection/tests/test-html5-033.txt | 9 + libinjection/tests/test-html5-034.txt | 9 + libinjection/tests/test-html5-035.txt | 9 + libinjection/tests/test-html5-036.txt | 9 + libinjection/tests/test-html5-037.txt | 11 + libinjection/tests/test-html5-038.txt | 12 + libinjection/tests/test-html5-039.txt | 10 + libinjection/tests/test-html5-040.txt | 9 + libinjection/tests/test-html5-041.txt | 9 + libinjection/tests/test-html5-042.txt | 9 + libinjection/tests/test-html5-043.txt | 11 + libinjection/tests/test-html5-044.txt | 13 + libinjection/tests/test-html5-045.txt | 9 + libinjection/tests/test-html5-046.txt | 9 + libinjection/tests/test-html5-047.txt | 9 + libinjection/tests/test-html5-048.txt | 9 + libinjection/tests/test-html5-049.txt | 9 + libinjection/tests/test-html5-050.txt | 9 + libinjection/tests/test-html5-051.txt | 9 + libinjection/tests/test-html5-052.txt | 9 + libinjection/tests/test-html5-053.txt | 9 + libinjection/tests/test-html5-054.txt | 9 + libinjection/tests/test-html5-055.txt | 9 + libinjection/tests/test-html5-056.txt | 9 + libinjection/tests/test-html5-059.txt | 9 + libinjection/tests/test-html5-061.txt | 11 + libinjection/tests/test-html5-062.txt | 9 + libinjection/tests/test-html5-063.txt | 9 + libinjection/tests/test-html5-064.txt | 9 + libinjection/tests/test-html5-065.txt | 9 + libinjection/tests/test-html5-066.txt | 10 + libinjection/tests/test-sqli-001.txt | 6 + libinjection/tests/test-sqli-002.txt | 6 + libinjection/tests/test-sqli-003.txt | 6 + libinjection/tests/test-sqli-004.txt | 7 + libinjection/tests/test-sqli-005.txt | 7 + libinjection/tests/test-sqli-006.txt | 7 + libinjection/tests/test-sqli-007.txt | 7 + libinjection/tests/test-sqli-008.txt | 7 + libinjection/tests/test-sqli-009.txt | 7 + libinjection/tests/test-sqli-010.txt | 7 + libinjection/tests/test-sqli-011.txt | 7 + libinjection/tests/test-sqli-012.txt | 7 + libinjection/tests/test-sqli-013.txt | 7 + libinjection/tests/test-sqli-014.txt | 7 + libinjection/tests/test-sqli-015.txt | 7 + libinjection/tests/test-sqli-016.txt | 7 + libinjection/tests/test-sqli-017.txt | 7 + libinjection/tests/test-sqli-018.txt | 7 + libinjection/tests/test-sqli-019.txt | 7 + libinjection/tests/test-sqli-020.txt | 7 + libinjection/tests/test-sqli-021.txt | 7 + libinjection/tests/test-sqli-022.txt | 7 + libinjection/tests/test-sqli-023.txt | 7 + libinjection/tests/test-sqli-024.txt | 7 + libinjection/tests/test-sqli-025.txt | 7 + libinjection/tests/test-sqli-026.txt | 7 + libinjection/tests/test-sqli-027.txt | 7 + libinjection/tests/test-sqli-028.txt | 7 + libinjection/tests/test-sqli-029.txt | 7 + libinjection/tests/test-sqli-030.txt | 8 + libinjection/tests/test-sqli-031.txt | 8 + libinjection/tests/test-sqli-032.txt | 8 + libinjection/tests/test-sqli-033.txt | 8 + libinjection/tests/test-sqli-034.txt | 8 + libinjection/tests/test-sqli-035.txt | 7 + libinjection/tests/test-sqli-036.txt | 9 + libinjection/tests/test-sqli-037.txt | 9 + libinjection/tests/test-sqli-038.txt | 9 + libinjection/tests/test-sqli-039.txt | 10 + libinjection/tests/test-sqli-040.txt | 10 + libinjection/tests/test-sqli-041.txt | 10 + libinjection/tests/test-sqli-042.txt | 10 + libinjection/tests/test-sqli-043.txt | 10 + libinjection/tests/test-sqli-044.txt | 10 + libinjection/tests/test-sqli-045.txt | 10 + libinjection/tests/test-sqli-046.txt | 10 + libinjection/tests/test-sqli-047.txt | 10 + libinjection/tests/test-sqli-048.txt | 10 + libinjection/tests/test-sqli-049.txt | 10 + libinjection/tests/test-sqli-050.txt | 10 + libinjection/tests/test-tokens-061.txt | 14 + libinjection/tests/test-tokens-062.txt | 14 + .../tests/test-tokens-backquotes-001.txt | 10 + .../tests/test-tokens-backquotes-002.txt | 8 + .../tests/test-tokens-backquotes-003.txt | 8 + .../tests/test-tokens-backquotes-004.txt | 10 + .../tests/test-tokens-backquotes-005.txt | 10 + .../tests/test-tokens-backquotes-006.txt | 8 + .../tests/test-tokens-backquotes-007.txt | 8 + .../tests/test-tokens-backquotes-008.txt | 8 + .../tests/test-tokens-backquotes-009.txt | 8 + .../tests/test-tokens-backquotes-010.txt | 9 + .../tests/test-tokens-backquotes-011.txt | 8 + .../tests/test-tokens-backquotes-012.txt | 8 + libinjection/tests/test-tokens-braces-001.txt | 12 + libinjection/tests/test-tokens-braces-002.txt | 12 + libinjection/tests/test-tokens-chars-001.txt | 8 + libinjection/tests/test-tokens-chars-002.txt | 9 + libinjection/tests/test-tokens-chars-003.txt | 7 + libinjection/tests/test-tokens-chars-004.txt | 8 + libinjection/tests/test-tokens-chars-005.txt | 11 + libinjection/tests/test-tokens-chars-006.txt | 7 + libinjection/tests/test-tokens-cimpl-001.txt | 7 + libinjection/tests/test-tokens-cimpl-002.txt | 8 + libinjection/tests/test-tokens-cimpl-003.txt | 8 + libinjection/tests/test-tokens-cimpl-004.txt | 8 + .../tests/test-tokens-comments-cstyle-001.txt | 9 + .../tests/test-tokens-comments-cstyle-002.txt | 8 + .../tests/test-tokens-comments-cstyle-003.txt | 8 + .../tests/test-tokens-comments-cstyle-004.txt | 8 + .../tests/test-tokens-comments-cstyle-005.txt | 8 + .../tests/test-tokens-comments-cstyle-006.txt | 8 + .../test-tokens-comments-cstylenested-001.txt | 10 + .../test-tokens-comments-cstylenested-002.txt | 10 + .../tests/test-tokens-comments-ddash-001.txt | 8 + .../tests/test-tokens-comments-ddash-002.txt | 8 + .../tests/test-tokens-comments-ddash-003.txt | 10 + .../tests/test-tokens-comments-ddash-004.txt | 10 + .../tests/test-tokens-comments-ddash-005.txt | 9 + .../tests/test-tokens-comments-mysql-001.txt | 9 + .../tests/test-tokens-comments-mysql-002.txt | 9 + .../tests/test-tokens-comments-mysql-006.txt | 8 + .../tests/test-tokens-comments-mysql-007.txt | 8 + .../tests/test-tokens-comments-mysql-009.txt | 8 + .../tests/test-tokens-comments-mysql-010.txt | 8 + .../tests/test-tokens-comments-mysql-011.txt | 9 + libinjection/tests/test-tokens-i18n-001.txt | 9 + libinjection/tests/test-tokens-i18n-002.txt | 9 + libinjection/tests/test-tokens-i18n-003.txt | 9 + .../tests/test-tokens-intents-001.txt | 9 + .../tests/test-tokens-intents-002.txt | 9 + .../tests/test-tokens-intents-003.txt | 10 + .../tests/test-tokens-intents-004.txt | 10 + .../tests/test-tokens-intents-005.txt | 11 + .../tests/test-tokens-intents-006.txt | 11 + .../tests/test-tokens-intents-007.txt | 9 + .../tests/test-tokens-numbers-binary-001.txt | 8 + .../tests/test-tokens-numbers-binary-002.txt | 8 + .../tests/test-tokens-numbers-binary-003.txt | 9 + .../tests/test-tokens-numbers-exp-001.txt | 8 + .../tests/test-tokens-numbers-exp-002.txt | 8 + .../tests/test-tokens-numbers-exp-003.txt | 8 + .../tests/test-tokens-numbers-exp-004.txt | 9 + .../tests/test-tokens-numbers-exp-005.txt | 9 + .../tests/test-tokens-numbers-exp-006.txt | 9 + .../tests/test-tokens-numbers-exp-007.txt | 8 + .../tests/test-tokens-numbers-exp-008.txt | 9 + .../tests/test-tokens-numbers-exp-009.txt | 8 + .../tests/test-tokens-numbers-exp-010.txt | 8 + .../tests/test-tokens-numbers-exp-011.txt | 9 + .../tests/test-tokens-numbers-exp-012.txt | 9 + .../tests/test-tokens-numbers-floats-001.txt | 7 + .../tests/test-tokens-numbers-floats-002.txt | 8 + .../tests/test-tokens-numbers-floats-003.txt | 8 + .../tests/test-tokens-numbers-floats-004.txt | 10 + .../tests/test-tokens-numbers-floats-005.txt | 9 + .../tests/test-tokens-numbers-floats-006.txt | 8 + .../tests/test-tokens-numbers-hex-001.txt | 8 + .../tests/test-tokens-numbers-hex-002.txt | 9 + .../tests/test-tokens-numbers-hex-003.txt | 9 + .../tests/test-tokens-numbers-ints-001.txt | 7 + .../tests/test-tokens-numbers-ints-002.txt | 8 + .../tests/test-tokens-numbers-ints-003.txt | 8 + .../tests/test-tokens-numbers-ints-004.txt | 9 + .../tests/test-tokens-numbers-ints-005.txt | 12 + .../tests/test-tokens-numbers-money-001.txt | 7 + .../tests/test-tokens-numbers-money-002.txt | 7 + .../tests/test-tokens-numbers-money-003.txt | 7 + .../tests/test-tokens-numbers-money-004.txt | 7 + .../tests/test-tokens-numbers-money-005.txt | 7 + .../tests/test-tokens-numbers-money-006.txt | 7 + .../tests/test-tokens-numbers-money-007.txt | 7 + .../tests/test-tokens-numbers-money-008.txt | 7 + .../tests/test-tokens-numbers-money-009.txt | 8 + .../tests/test-tokens-numbers-money-010.txt | 8 + .../tests/test-tokens-numbers-nan-001.txt | 7 + .../tests/test-tokens-numbers-nan-002.txt | 7 + .../tests/test-tokens-numbers-nan-003.txt | 7 + .../tests/test-tokens-numbers-nan-004.txt | 7 + .../tests/test-tokens-numbers-null-001.txt | 9 + .../tests/test-tokens-numbers-null-002.txt | 9 + .../tests/test-tokens-numbers-oracle-001.txt | 8 + .../tests/test-tokens-numbers-oracle-002.txt | 8 + .../tests/test-tokens-numbers-oracle-003.txt | 9 + .../tests/test-tokens-numbers-oracle-004.txt | 7 + .../tests/test-tokens-numbers-oracle-005.txt | 10 + .../tests/test-tokens-numbers-oracle-006.txt | 10 + .../tests/test-tokens-numbers-parser-001.txt | 10 + .../tests/test-tokens-numbers-parser-002.txt | 10 + .../tests/test-tokens-numbers-string-001.txt | 8 + .../tests/test-tokens-numbers-string-002.txt | 8 + .../tests/test-tokens-numbers-string-003.txt | 8 + .../tests/test-tokens-numbers-string-004.txt | 8 + .../tests/test-tokens-numbers-string-005.txt | 9 + .../tests/test-tokens-numbers-string-006.txt | 9 + .../tests/test-tokens-numbers-string-007.txt | 9 + .../tests/test-tokens-numbers-string-008.txt | 9 + .../tests/test-tokens-numbers-string-009.txt | 10 + .../tests/test-tokens-numbers-string-010.txt | 9 + .../tests/test-tokens-numbers-string-011.txt | 9 + .../tests/test-tokens-numbers-string-012.txt | 10 + .../tests/test-tokens-operators-001.txt | 10 + .../tests/test-tokens-operators-002.txt | 10 + .../tests/test-tokens-operators-003.txt | 10 + .../tests/test-tokens-operators-004.txt | 8 + .../tests/test-tokens-operators-005.txt | 10 + .../tests/test-tokens-operators-006.txt | 10 + .../tests/test-tokens-operators-007.txt | 10 + .../tests/test-tokens-operators-008.txt | 10 + .../tests/test-tokens-operators-009.txt | 10 + .../tests/test-tokens-operators-010.txt | 10 + .../tests/test-tokens-operators-011.txt | 8 + .../tests/test-tokens-operators-012.txt | 9 + .../tests/test-tokens-operators-013.txt | 9 + .../tests/test-tokens-operators-014.txt | 11 + .../tests/test-tokens-operators-015.txt | 10 + .../tests/test-tokens-operators-016.txt | 10 + .../tests/test-tokens-operators-017.txt | 9 + .../tests/test-tokens-operators-018.txt | 11 + .../tests/test-tokens-operators-019.txt | 11 + .../tests/test-tokens-operators-020.txt | 11 + libinjection/tests/test-tokens-string-001.txt | 8 + libinjection/tests/test-tokens-string-003.txt | 8 + libinjection/tests/test-tokens-string-004.txt | 8 + libinjection/tests/test-tokens-string-005.txt | 8 + libinjection/tests/test-tokens-string-006.txt | 8 + libinjection/tests/test-tokens-string-007.txt | 8 + libinjection/tests/test-tokens-string-008.txt | 8 + libinjection/tests/test-tokens-string-009.txt | 8 + libinjection/tests/test-tokens-string-010.txt | 8 + libinjection/tests/test-tokens-string-011.txt | 8 + libinjection/tests/test-tokens-string-012.txt | 8 + libinjection/tests/test-tokens-string-013.txt | 8 + libinjection/tests/test-tokens-string-014.txt | 8 + libinjection/tests/test-tokens-string-015.txt | 8 + libinjection/tests/test-tokens-string-016.txt | 8 + libinjection/tests/test-tokens-string-017.txt | 9 + libinjection/tests/test-tokens-string-018.txt | 9 + libinjection/tests/test-tokens-string-019.txt | 9 + libinjection/tests/test-tokens-string-020.txt | 9 + libinjection/tests/test-tokens-string-021.txt | 8 + libinjection/tests/test-tokens-string-022.txt | 7 + libinjection/tests/test-tokens-string-023.txt | 7 + libinjection/tests/test-tokens-string-024.txt | 8 + libinjection/tests/test-tokens-string-025.txt | 7 + libinjection/tests/test-tokens-string-026.txt | 8 + libinjection/tests/test-tokens-string-027.txt | 8 + libinjection/tests/test-tokens-string-028.txt | 8 + libinjection/tests/test-tokens-string-029.txt | 8 + libinjection/tests/test-tokens-string-030.txt | 9 + libinjection/tests/test-tokens-string-031.txt | 10 + libinjection/tests/test-tokens-string-032.txt | 10 + libinjection/tests/test-tokens-string-033.txt | 9 + libinjection/tests/test-tokens-string-034.txt | 9 + libinjection/tests/test-tokens-string-035.txt | 8 + libinjection/tests/test-tokens-string-036.txt | 8 + libinjection/tests/test-tokens-string-037.txt | 8 + libinjection/tests/test-tokens-string-038.txt | 8 + libinjection/tests/test-tokens-string-039.txt | 9 + libinjection/tests/test-tokens-string-040.txt | 8 + libinjection/tests/test-tokens-string-041.txt | 8 + libinjection/tests/test-tokens-string-042.txt | 8 + libinjection/tests/test-tokens-string-043.txt | 8 + libinjection/tests/test-tokens-string-044.txt | 8 + libinjection/tests/test-tokens-string-045.txt | 9 + libinjection/tests/test-tokens-string-046.txt | 9 + libinjection/tests/test-tokens-string-047.txt | 9 + libinjection/tests/test-tokens-string-048.txt | 9 + libinjection/tests/test-tokens-string-049.txt | 9 + libinjection/tests/test-tokens-string-050.txt | 9 + libinjection/tests/test-tokens-string-051.txt | 9 + libinjection/tests/test-tokens-string-052.txt | 9 + libinjection/tests/test-tokens-string-053.txt | 9 + libinjection/tests/test-tokens-string-054.txt | 9 + libinjection/tests/test-tokens-string-055.txt | 9 + libinjection/tests/test-tokens-string-056.txt | 9 + libinjection/tests/test-tokens-string-057.txt | 9 + libinjection/tests/test-tokens-string-058.txt | 9 + libinjection/tests/test-tokens-string-059.txt | 10 + libinjection/tests/test-tokens-string-060.txt | 14 + libinjection/tests/test-tokens-string-061.txt | 10 + libinjection/tests/test-tokens-string-062.txt | 10 + libinjection/tests/test-tokens-string-063.txt | 10 + libinjection/tests/test-tokens-string-064.txt | 11 + libinjection/tests/test-tokens-string-065.txt | 10 + libinjection/tests/test-tokens-string-066.txt | 10 + libinjection/tests/test-tokens-string-067.txt | 10 + libinjection/tests/test-tokens-string-068.txt | 10 + libinjection/tests/test-tokens-string-069.txt | 11 + libinjection/tests/test-tokens-string-070.txt | 10 + libinjection/tests/test-tokens-string-071.txt | 8 + .../tests/test-tokens-variables-001.txt | 8 + .../tests/test-tokens-variables-002.txt | 8 + .../tests/test-tokens-variables-003.txt | 8 + .../tests/test-tokens-variables-004.txt | 8 + .../tests/test-tokens-variables-005.txt | 7 + .../tests/test-tokens-variables-006.txt | 7 + .../tests/test-tokens-variables-007.txt | 7 + .../tests/test-tokens-variables-008.txt | 8 + .../tests/test-tokens-variables-009.txt | 8 + .../tests/test-tokens-variables-010.txt | 8 + .../tests/test-tokens-variables-011.txt | 8 + .../tests/test-tokens-variables-012.txt | 8 + .../tests/test-tokens-variables-013.txt | 8 + .../tests/test-tokens-variables-014.txt | 8 + .../tests/test-tokens-variables-015.txt | 8 + libinjection/tests/test-tokens-words-002.txt | 8 + libinjection/tests/test-tokens-words-003.txt | 11 + libinjection/tests/test-tokens-words-004.txt | 11 + libinjection/tests/test-tokens-words-005.txt | 11 + libinjection/tests/test-tokens-words-006.txt | 11 + libinjection/tests/test-tokens-words-007.txt | 9 + libinjection/tests/test-tokens-words-008.txt | 9 + libinjection/tests/test-tokens-words-009.txt | 8 + libinjection/tests/test-tokens-words-010.txt | 13 + libinjection/tests/test-tokens-words-011.txt | 13 + libinjection/tests/test-tokens-words-012.txt | 8 + libinjection/tests/test-tokens-words-013.txt | 8 + libinjection/tests/test-tokens-words-014.txt | 8 + libinjection/tests/test-tokens-words-015.txt | 6 + libinjection/tests/test-tokens-words-016.txt | 12 + libinjection/tests/test-tokens-words-017.txt | 9 + libinjection/tests/test-tokens-words-018.txt | 8 + libinjection/tests/test-tokens-words-019.txt | 8 + libinjection/tests/test-tokens-words-020.txt | 10 + libinjection/tests/test-tokens-words-021.txt | 10 + libinjection/tests/test-tokens-words-023.txt | 9 + libinjection/tests/test-tokens-words-024.txt | 11 + libinjection/tests/test-tokens-words-025.txt | 12 + 623 files changed, 211930 insertions(+), 10 deletions(-) rename lib/src/native/{angel_security.cc => angel_security.c} (56%) create mode 100644 lib/src/native/sqli.dart create mode 100644 libinjection/.gitignore create mode 100644 libinjection/.travis.yml create mode 100644 libinjection/CHANGELOG create mode 100644 libinjection/CHANGELOG.md create mode 100644 libinjection/COPYING create mode 100644 libinjection/README.md create mode 100644 libinjection/RELEASE-HOWTO.md create mode 100755 libinjection/configure-clang-asan.sh create mode 100755 libinjection/configure-clang.sh create mode 100755 libinjection/configure-gcc-hardened.sh create mode 100755 libinjection/configure-gcov.sh create mode 100755 libinjection/configure-gprof.sh create mode 100644 libinjection/data/README.md create mode 100644 libinjection/data/false_positives.txt create mode 100644 libinjection/data/sqli-@ru_raz0-20160705.txt create mode 100644 libinjection/data/sqli-arithmetic_blind_sqli.txt create mode 100644 libinjection/data/sqli-arithmetic_variations.txt create mode 100644 libinjection/data/sqli-arneswinnen.net-boolean.txt create mode 100755 libinjection/data/sqli-arneswinnen.net-time.txt create mode 100644 libinjection/data/sqli-comparitiveprecomputation.txt create mode 100644 libinjection/data/sqli-edb-17934.txt create mode 100755 libinjection/data/sqli-forums.txt create mode 100644 libinjection/data/sqli-fullqueries.txt create mode 100644 libinjection/data/sqli-fuzz-ischi.txt create mode 100644 libinjection/data/sqli-github-110.txt create mode 100644 libinjection/data/sqli-github-114.txt create mode 100644 libinjection/data/sqli-github-123.txt create mode 100644 libinjection/data/sqli-github-125.txt create mode 100644 libinjection/data/sqli-github-modsec-782.txt create mode 100644 libinjection/data/sqli-hackers.txt create mode 100644 libinjection/data/sqli-ibm.txt create mode 100644 libinjection/data/sqli-insert_attacks.txt create mode 100644 libinjection/data/sqli-isc_sans.txt create mode 100644 libinjection/data/sqli-left.txt create mode 100644 libinjection/data/sqli-misc.txt create mode 100644 libinjection/data/sqli-mysql-implicit.txt create mode 100644 libinjection/data/sqli-phpids.txt create mode 100644 libinjection/data/sqli-rsalgado-bhusa2013.txt create mode 100644 libinjection/data/sqli-spiderlabs-201107.txt create mode 100644 libinjection/data/sqli-spiderlabs-201112.txt create mode 100644 libinjection/data/sqli-spiderlabs-201205.txt create mode 100644 libinjection/data/sqli-sqlmap-20130419.txt create mode 100644 libinjection/data/sqli-sqlmap-20160724.txt create mode 100644 libinjection/data/sqli-sqlmap.txt create mode 100644 libinjection/data/sqli-sqlmap_examples.txt create mode 100644 libinjection/data/sqli-themole.txt create mode 100644 libinjection/data/sqli-wordpress_rbarnett.txt create mode 100644 libinjection/data/tbd-xss-github-issue-68.txt create mode 100644 libinjection/data/xss-0x6D6172696F-394932823645503488.txt create mode 100644 libinjection/data/xss-angular-pull-11290.txt create mode 100644 libinjection/data/xss-html5secorg.txt create mode 100644 libinjection/data/xss-mgentile-2013.txt create mode 100644 libinjection/data/xss-modsecurity-2013-1.txt create mode 100644 libinjection/data/xss-modsecurity-2013-2.txt create mode 100644 libinjection/data/xss-owasp-cheatsheet-20131120.txt create mode 100644 libinjection/data/xss-shazzer.txt create mode 100644 libinjection/data/xss-smoke-test.txt create mode 100644 libinjection/data/xss-soaj1664ashar-pastebin-u6FY1xDA.txt create mode 100644 libinjection/data/xss-soaj1664ashar.txt create mode 100644 libinjection/data/xss-xenotix.txt create mode 100644 libinjection/go/main.go create mode 100755 libinjection/install-sh create mode 100644 libinjection/lua/.gitignore create mode 100755 libinjection/lua/data2lua.py create mode 100755 libinjection/lua/generate_lua_fingerprints.py create mode 100644 libinjection/lua/libinjection.i create mode 100644 libinjection/lua/luatest.lua create mode 100755 libinjection/lua/make_test.py create mode 100644 libinjection/lua/testdriver.lua create mode 100755 libinjection/make-ci.sh create mode 100755 libinjection/misc/gittag.sh create mode 100644 libinjection/misc/home.md create mode 100755 libinjection/misc/logscanner.py create mode 100755 libinjection/misc/logscanner2.py create mode 100755 libinjection/misc/mdgen.sh create mode 100755 libinjection/misc/modsecurity-merge.sh create mode 100755 libinjection/misc/mysql_implicit_tests.py create mode 100755 libinjection/misc/nullserver.py create mode 100755 libinjection/misc/run_sqlmap.sh create mode 100755 libinjection/misc/sqliserver.py create mode 100644 libinjection/misc/static/favicon.gif create mode 100644 libinjection/misc/static/favicon.ico create mode 100644 libinjection/misc/static/favicon.png create mode 100644 libinjection/misc/static/robots.txt create mode 100644 libinjection/php/config.m4 create mode 100644 libinjection/php/example.php create mode 100755 libinjection/php/gentests.py create mode 100755 libinjection/php/json2php.py create mode 100644 libinjection/php/libinjection.i create mode 100644 libinjection/php/testsupport.php create mode 100755 libinjection/python/apitest.py create mode 100755 libinjection/python/json2python.py create mode 100644 libinjection/python/libinjection/__init__.py create mode 100644 libinjection/python/libinjection/libinjection.i create mode 100644 libinjection/python/libinjection/sqli_fingerprints.py create mode 100755 libinjection/python/pytest.py create mode 100644 libinjection/python/setup.py create mode 100755 libinjection/python/speedtest.py create mode 100755 libinjection/python/test_driver.py create mode 100755 libinjection/run-clang-asan.sh create mode 100755 libinjection/run-gcov-samples.sh create mode 100755 libinjection/run-gcov-unittests.sh create mode 100644 libinjection/src/.gitignore create mode 100644 libinjection/src/CMakeLists.txt create mode 100644 libinjection/src/alpine.supp create mode 100755 libinjection/src/clang.sh create mode 100644 libinjection/src/example1.c create mode 100644 libinjection/src/fingerprints.txt create mode 100755 libinjection/src/fingerprints2sqli.py create mode 100644 libinjection/src/fptool.c create mode 100644 libinjection/src/html5_cli.c create mode 100644 libinjection/src/libinjection.h create mode 100644 libinjection/src/libinjection_html5.c create mode 100644 libinjection/src/libinjection_html5.h create mode 100644 libinjection/src/libinjection_sqli.c create mode 100644 libinjection/src/libinjection_sqli.h create mode 100644 libinjection/src/libinjection_sqli_data.h create mode 100644 libinjection/src/libinjection_xss.c create mode 100644 libinjection/src/libinjection_xss.h create mode 100755 libinjection/src/make_parens.py create mode 100644 libinjection/src/reader.c create mode 100644 libinjection/src/sqli_cli.c create mode 100755 libinjection/src/sqlparse2c.py create mode 100644 libinjection/src/sqlparse_data.json create mode 100755 libinjection/src/sqlparse_map.py create mode 100755 libinjection/src/test-cppcheck.sh create mode 100755 libinjection/src/test-driver.sh create mode 100755 libinjection/src/test-samples-sqli-negative.sh create mode 100755 libinjection/src/test-samples-sqli-positive.sh create mode 100755 libinjection/src/test-samples-xss-positive.sh create mode 100755 libinjection/src/test-speed-sqli.sh create mode 100755 libinjection/src/test-speed-xss.sh create mode 100755 libinjection/src/test-unit.sh create mode 100644 libinjection/src/test_speed_sqli.c create mode 100644 libinjection/src/test_speed_xss.c create mode 100644 libinjection/src/testdriver.c create mode 100755 libinjection/tags.sh create mode 100755 libinjection/test-gprof.sh create mode 100644 libinjection/tests/test-folding-001.txt create mode 100644 libinjection/tests/test-folding-002.txt create mode 100644 libinjection/tests/test-folding-003.txt create mode 100644 libinjection/tests/test-folding-004.txt create mode 100644 libinjection/tests/test-folding-005.txt create mode 100644 libinjection/tests/test-folding-006.txt create mode 100644 libinjection/tests/test-folding-007.txt create mode 100644 libinjection/tests/test-folding-008.txt create mode 100644 libinjection/tests/test-folding-009.txt create mode 100644 libinjection/tests/test-folding-010.txt create mode 100644 libinjection/tests/test-folding-011.txt create mode 100644 libinjection/tests/test-folding-012.txt create mode 100644 libinjection/tests/test-folding-013.txt create mode 100644 libinjection/tests/test-folding-014.txt create mode 100644 libinjection/tests/test-folding-015.txt create mode 100644 libinjection/tests/test-folding-016.txt create mode 100644 libinjection/tests/test-folding-017.txt create mode 100644 libinjection/tests/test-folding-018.txt create mode 100644 libinjection/tests/test-folding-019.txt create mode 100644 libinjection/tests/test-folding-020.txt create mode 100644 libinjection/tests/test-folding-021.txt create mode 100644 libinjection/tests/test-folding-022.txt create mode 100644 libinjection/tests/test-folding-023.txt create mode 100644 libinjection/tests/test-folding-024.txt create mode 100644 libinjection/tests/test-folding-025.txt create mode 100644 libinjection/tests/test-folding-026.txt create mode 100644 libinjection/tests/test-folding-027.txt create mode 100644 libinjection/tests/test-folding-028.txt create mode 100644 libinjection/tests/test-folding-029.txt create mode 100644 libinjection/tests/test-folding-030.txt create mode 100644 libinjection/tests/test-folding-031.txt create mode 100644 libinjection/tests/test-folding-032.txt create mode 100644 libinjection/tests/test-folding-033.txt create mode 100644 libinjection/tests/test-folding-034.txt create mode 100644 libinjection/tests/test-folding-035.txt create mode 100644 libinjection/tests/test-folding-036.txt create mode 100644 libinjection/tests/test-folding-037.txt create mode 100644 libinjection/tests/test-folding-038.txt create mode 100644 libinjection/tests/test-folding-039.txt create mode 100644 libinjection/tests/test-folding-040.txt create mode 100644 libinjection/tests/test-folding-041.txt create mode 100644 libinjection/tests/test-folding-042.txt create mode 100644 libinjection/tests/test-folding-043.txt create mode 100644 libinjection/tests/test-folding-044.txt create mode 100644 libinjection/tests/test-folding-045.txt create mode 100644 libinjection/tests/test-folding-046.txt create mode 100644 libinjection/tests/test-folding-047.txt create mode 100644 libinjection/tests/test-folding-048.txt create mode 100644 libinjection/tests/test-folding-049.txt create mode 100644 libinjection/tests/test-folding-050.txt create mode 100644 libinjection/tests/test-folding-051.txt create mode 100644 libinjection/tests/test-folding-052.txt create mode 100644 libinjection/tests/test-folding-053.txt create mode 100644 libinjection/tests/test-folding-054.txt create mode 100644 libinjection/tests/test-folding-055.txt create mode 100644 libinjection/tests/test-folding-056.txt create mode 100644 libinjection/tests/test-folding-057.txt create mode 100644 libinjection/tests/test-folding-058.txt create mode 100644 libinjection/tests/test-folding-059.txt create mode 100644 libinjection/tests/test-folding-060.txt create mode 100644 libinjection/tests/test-folding-061.txt create mode 100644 libinjection/tests/test-folding-062.txt create mode 100644 libinjection/tests/test-folding-063.txt create mode 100644 libinjection/tests/test-folding-064.txt create mode 100644 libinjection/tests/test-folding-065.txt create mode 100644 libinjection/tests/test-folding-066.txt create mode 100644 libinjection/tests/test-folding-067.txt create mode 100644 libinjection/tests/test-folding-068.txt create mode 100644 libinjection/tests/test-folding-069.txt create mode 100644 libinjection/tests/test-folding-070.txt create mode 100644 libinjection/tests/test-folding-071.txt create mode 100644 libinjection/tests/test-folding-072.txt create mode 100644 libinjection/tests/test-folding-073.txt create mode 100644 libinjection/tests/test-folding-074.txt create mode 100644 libinjection/tests/test-folding-075.txt create mode 100644 libinjection/tests/test-folding-076.txt create mode 100644 libinjection/tests/test-folding-077.txt create mode 100644 libinjection/tests/test-folding-078.txt create mode 100644 libinjection/tests/test-folding-079.txt create mode 100644 libinjection/tests/test-folding-080.txt create mode 100644 libinjection/tests/test-folding-081.txt create mode 100644 libinjection/tests/test-folding-082.txt create mode 100644 libinjection/tests/test-folding-083.txt create mode 100644 libinjection/tests/test-folding-084.txt create mode 100644 libinjection/tests/test-folding-085.txt create mode 100644 libinjection/tests/test-folding-086.txt create mode 100644 libinjection/tests/test-folding-087.txt create mode 100644 libinjection/tests/test-folding-088.txt create mode 100644 libinjection/tests/test-folding-089.txt create mode 100644 libinjection/tests/test-folding-090.txt create mode 100644 libinjection/tests/test-folding-091.txt create mode 100644 libinjection/tests/test-folding-092.txt create mode 100644 libinjection/tests/test-folding-093.txt create mode 100644 libinjection/tests/test-folding-094.txt create mode 100644 libinjection/tests/test-folding-095.txt create mode 100644 libinjection/tests/test-folding-096.txt create mode 100644 libinjection/tests/test-folding-097.txt create mode 100644 libinjection/tests/test-folding-098.txt create mode 100644 libinjection/tests/test-folding-099.txt create mode 100644 libinjection/tests/test-folding-100.txt create mode 100644 libinjection/tests/test-folding-101.txt create mode 100644 libinjection/tests/test-folding-102.txt create mode 100644 libinjection/tests/test-folding-103.txt create mode 100644 libinjection/tests/test-folding-104.txt create mode 100644 libinjection/tests/test-folding-105.txt create mode 100644 libinjection/tests/test-folding-106.txt create mode 100644 libinjection/tests/test-folding-107.txt create mode 100644 libinjection/tests/test-folding-108.txt create mode 100644 libinjection/tests/test-folding-109.txt create mode 100644 libinjection/tests/test-folding-110.txt create mode 100644 libinjection/tests/test-folding-111.txt create mode 100644 libinjection/tests/test-folding-112.txt create mode 100644 libinjection/tests/test-folding-113.txt create mode 100644 libinjection/tests/test-folding-114.txt create mode 100644 libinjection/tests/test-folding-115.txt create mode 100644 libinjection/tests/test-folding-116.txt create mode 100644 libinjection/tests/test-folding-117.txt create mode 100644 libinjection/tests/test-folding-118.txt create mode 100644 libinjection/tests/test-html5-001.txt create mode 100644 libinjection/tests/test-html5-002.txt create mode 100644 libinjection/tests/test-html5-003.txt create mode 100644 libinjection/tests/test-html5-004.txt create mode 100644 libinjection/tests/test-html5-005.txt create mode 100644 libinjection/tests/test-html5-006.txt create mode 100644 libinjection/tests/test-html5-007.txt create mode 100644 libinjection/tests/test-html5-008.txt create mode 100644 libinjection/tests/test-html5-009.txt create mode 100644 libinjection/tests/test-html5-010.txt create mode 100644 libinjection/tests/test-html5-011.txt create mode 100644 libinjection/tests/test-html5-012.txt create mode 100644 libinjection/tests/test-html5-013.txt create mode 100644 libinjection/tests/test-html5-014.txt create mode 100644 libinjection/tests/test-html5-015.txt create mode 100644 libinjection/tests/test-html5-016.txt create mode 100644 libinjection/tests/test-html5-017.txt create mode 100644 libinjection/tests/test-html5-018.txt create mode 100644 libinjection/tests/test-html5-019.txt create mode 100644 libinjection/tests/test-html5-020.txt create mode 100644 libinjection/tests/test-html5-021.txt create mode 100644 libinjection/tests/test-html5-022.txt create mode 100644 libinjection/tests/test-html5-023.txt create mode 100644 libinjection/tests/test-html5-024.txt create mode 100644 libinjection/tests/test-html5-025.txt create mode 100644 libinjection/tests/test-html5-026.txt create mode 100644 libinjection/tests/test-html5-027.txt create mode 100644 libinjection/tests/test-html5-028.txt create mode 100644 libinjection/tests/test-html5-029.txt create mode 100644 libinjection/tests/test-html5-030.txt create mode 100644 libinjection/tests/test-html5-031.txt create mode 100644 libinjection/tests/test-html5-032.txt create mode 100644 libinjection/tests/test-html5-033.txt create mode 100644 libinjection/tests/test-html5-034.txt create mode 100644 libinjection/tests/test-html5-035.txt create mode 100644 libinjection/tests/test-html5-036.txt create mode 100644 libinjection/tests/test-html5-037.txt create mode 100644 libinjection/tests/test-html5-038.txt create mode 100644 libinjection/tests/test-html5-039.txt create mode 100644 libinjection/tests/test-html5-040.txt create mode 100644 libinjection/tests/test-html5-041.txt create mode 100644 libinjection/tests/test-html5-042.txt create mode 100644 libinjection/tests/test-html5-043.txt create mode 100644 libinjection/tests/test-html5-044.txt create mode 100644 libinjection/tests/test-html5-045.txt create mode 100644 libinjection/tests/test-html5-046.txt create mode 100644 libinjection/tests/test-html5-047.txt create mode 100644 libinjection/tests/test-html5-048.txt create mode 100644 libinjection/tests/test-html5-049.txt create mode 100644 libinjection/tests/test-html5-050.txt create mode 100644 libinjection/tests/test-html5-051.txt create mode 100644 libinjection/tests/test-html5-052.txt create mode 100644 libinjection/tests/test-html5-053.txt create mode 100644 libinjection/tests/test-html5-054.txt create mode 100644 libinjection/tests/test-html5-055.txt create mode 100644 libinjection/tests/test-html5-056.txt create mode 100644 libinjection/tests/test-html5-059.txt create mode 100644 libinjection/tests/test-html5-061.txt create mode 100644 libinjection/tests/test-html5-062.txt create mode 100644 libinjection/tests/test-html5-063.txt create mode 100644 libinjection/tests/test-html5-064.txt create mode 100644 libinjection/tests/test-html5-065.txt create mode 100644 libinjection/tests/test-html5-066.txt create mode 100644 libinjection/tests/test-sqli-001.txt create mode 100644 libinjection/tests/test-sqli-002.txt create mode 100644 libinjection/tests/test-sqli-003.txt create mode 100644 libinjection/tests/test-sqli-004.txt create mode 100644 libinjection/tests/test-sqli-005.txt create mode 100644 libinjection/tests/test-sqli-006.txt create mode 100644 libinjection/tests/test-sqli-007.txt create mode 100644 libinjection/tests/test-sqli-008.txt create mode 100644 libinjection/tests/test-sqli-009.txt create mode 100644 libinjection/tests/test-sqli-010.txt create mode 100644 libinjection/tests/test-sqli-011.txt create mode 100644 libinjection/tests/test-sqli-012.txt create mode 100644 libinjection/tests/test-sqli-013.txt create mode 100644 libinjection/tests/test-sqli-014.txt create mode 100644 libinjection/tests/test-sqli-015.txt create mode 100644 libinjection/tests/test-sqli-016.txt create mode 100644 libinjection/tests/test-sqli-017.txt create mode 100644 libinjection/tests/test-sqli-018.txt create mode 100644 libinjection/tests/test-sqli-019.txt create mode 100644 libinjection/tests/test-sqli-020.txt create mode 100644 libinjection/tests/test-sqli-021.txt create mode 100644 libinjection/tests/test-sqli-022.txt create mode 100644 libinjection/tests/test-sqli-023.txt create mode 100644 libinjection/tests/test-sqli-024.txt create mode 100644 libinjection/tests/test-sqli-025.txt create mode 100644 libinjection/tests/test-sqli-026.txt create mode 100644 libinjection/tests/test-sqli-027.txt create mode 100644 libinjection/tests/test-sqli-028.txt create mode 100644 libinjection/tests/test-sqli-029.txt create mode 100644 libinjection/tests/test-sqli-030.txt create mode 100644 libinjection/tests/test-sqli-031.txt create mode 100644 libinjection/tests/test-sqli-032.txt create mode 100644 libinjection/tests/test-sqli-033.txt create mode 100644 libinjection/tests/test-sqli-034.txt create mode 100644 libinjection/tests/test-sqli-035.txt create mode 100644 libinjection/tests/test-sqli-036.txt create mode 100644 libinjection/tests/test-sqli-037.txt create mode 100644 libinjection/tests/test-sqli-038.txt create mode 100644 libinjection/tests/test-sqli-039.txt create mode 100644 libinjection/tests/test-sqli-040.txt create mode 100644 libinjection/tests/test-sqli-041.txt create mode 100644 libinjection/tests/test-sqli-042.txt create mode 100644 libinjection/tests/test-sqli-043.txt create mode 100644 libinjection/tests/test-sqli-044.txt create mode 100644 libinjection/tests/test-sqli-045.txt create mode 100644 libinjection/tests/test-sqli-046.txt create mode 100644 libinjection/tests/test-sqli-047.txt create mode 100644 libinjection/tests/test-sqli-048.txt create mode 100644 libinjection/tests/test-sqli-049.txt create mode 100644 libinjection/tests/test-sqli-050.txt create mode 100644 libinjection/tests/test-tokens-061.txt create mode 100644 libinjection/tests/test-tokens-062.txt create mode 100644 libinjection/tests/test-tokens-backquotes-001.txt create mode 100644 libinjection/tests/test-tokens-backquotes-002.txt create mode 100644 libinjection/tests/test-tokens-backquotes-003.txt create mode 100644 libinjection/tests/test-tokens-backquotes-004.txt create mode 100644 libinjection/tests/test-tokens-backquotes-005.txt create mode 100644 libinjection/tests/test-tokens-backquotes-006.txt create mode 100644 libinjection/tests/test-tokens-backquotes-007.txt create mode 100644 libinjection/tests/test-tokens-backquotes-008.txt create mode 100644 libinjection/tests/test-tokens-backquotes-009.txt create mode 100644 libinjection/tests/test-tokens-backquotes-010.txt create mode 100644 libinjection/tests/test-tokens-backquotes-011.txt create mode 100644 libinjection/tests/test-tokens-backquotes-012.txt create mode 100644 libinjection/tests/test-tokens-braces-001.txt create mode 100644 libinjection/tests/test-tokens-braces-002.txt create mode 100644 libinjection/tests/test-tokens-chars-001.txt create mode 100644 libinjection/tests/test-tokens-chars-002.txt create mode 100644 libinjection/tests/test-tokens-chars-003.txt create mode 100644 libinjection/tests/test-tokens-chars-004.txt create mode 100644 libinjection/tests/test-tokens-chars-005.txt create mode 100644 libinjection/tests/test-tokens-chars-006.txt create mode 100644 libinjection/tests/test-tokens-cimpl-001.txt create mode 100644 libinjection/tests/test-tokens-cimpl-002.txt create mode 100644 libinjection/tests/test-tokens-cimpl-003.txt create mode 100644 libinjection/tests/test-tokens-cimpl-004.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-001.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-002.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-003.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-004.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-005.txt create mode 100644 libinjection/tests/test-tokens-comments-cstyle-006.txt create mode 100644 libinjection/tests/test-tokens-comments-cstylenested-001.txt create mode 100644 libinjection/tests/test-tokens-comments-cstylenested-002.txt create mode 100644 libinjection/tests/test-tokens-comments-ddash-001.txt create mode 100644 libinjection/tests/test-tokens-comments-ddash-002.txt create mode 100644 libinjection/tests/test-tokens-comments-ddash-003.txt create mode 100644 libinjection/tests/test-tokens-comments-ddash-004.txt create mode 100644 libinjection/tests/test-tokens-comments-ddash-005.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-001.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-002.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-006.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-007.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-009.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-010.txt create mode 100644 libinjection/tests/test-tokens-comments-mysql-011.txt create mode 100644 libinjection/tests/test-tokens-i18n-001.txt create mode 100644 libinjection/tests/test-tokens-i18n-002.txt create mode 100644 libinjection/tests/test-tokens-i18n-003.txt create mode 100644 libinjection/tests/test-tokens-intents-001.txt create mode 100644 libinjection/tests/test-tokens-intents-002.txt create mode 100644 libinjection/tests/test-tokens-intents-003.txt create mode 100644 libinjection/tests/test-tokens-intents-004.txt create mode 100644 libinjection/tests/test-tokens-intents-005.txt create mode 100644 libinjection/tests/test-tokens-intents-006.txt create mode 100644 libinjection/tests/test-tokens-intents-007.txt create mode 100644 libinjection/tests/test-tokens-numbers-binary-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-binary-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-binary-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-006.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-007.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-008.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-009.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-010.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-011.txt create mode 100644 libinjection/tests/test-tokens-numbers-exp-012.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-floats-006.txt create mode 100644 libinjection/tests/test-tokens-numbers-hex-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-hex-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-hex-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-ints-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-ints-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-ints-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-ints-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-ints-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-006.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-007.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-008.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-009.txt create mode 100644 libinjection/tests/test-tokens-numbers-money-010.txt create mode 100644 libinjection/tests/test-tokens-numbers-nan-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-nan-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-nan-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-nan-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-null-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-null-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-oracle-006.txt create mode 100644 libinjection/tests/test-tokens-numbers-parser-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-parser-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-001.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-002.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-003.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-004.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-005.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-006.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-007.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-008.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-009.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-010.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-011.txt create mode 100644 libinjection/tests/test-tokens-numbers-string-012.txt create mode 100644 libinjection/tests/test-tokens-operators-001.txt create mode 100644 libinjection/tests/test-tokens-operators-002.txt create mode 100644 libinjection/tests/test-tokens-operators-003.txt create mode 100644 libinjection/tests/test-tokens-operators-004.txt create mode 100644 libinjection/tests/test-tokens-operators-005.txt create mode 100644 libinjection/tests/test-tokens-operators-006.txt create mode 100644 libinjection/tests/test-tokens-operators-007.txt create mode 100644 libinjection/tests/test-tokens-operators-008.txt create mode 100644 libinjection/tests/test-tokens-operators-009.txt create mode 100644 libinjection/tests/test-tokens-operators-010.txt create mode 100644 libinjection/tests/test-tokens-operators-011.txt create mode 100644 libinjection/tests/test-tokens-operators-012.txt create mode 100644 libinjection/tests/test-tokens-operators-013.txt create mode 100644 libinjection/tests/test-tokens-operators-014.txt create mode 100644 libinjection/tests/test-tokens-operators-015.txt create mode 100644 libinjection/tests/test-tokens-operators-016.txt create mode 100644 libinjection/tests/test-tokens-operators-017.txt create mode 100644 libinjection/tests/test-tokens-operators-018.txt create mode 100644 libinjection/tests/test-tokens-operators-019.txt create mode 100644 libinjection/tests/test-tokens-operators-020.txt create mode 100644 libinjection/tests/test-tokens-string-001.txt create mode 100644 libinjection/tests/test-tokens-string-003.txt create mode 100644 libinjection/tests/test-tokens-string-004.txt create mode 100644 libinjection/tests/test-tokens-string-005.txt create mode 100644 libinjection/tests/test-tokens-string-006.txt create mode 100644 libinjection/tests/test-tokens-string-007.txt create mode 100644 libinjection/tests/test-tokens-string-008.txt create mode 100644 libinjection/tests/test-tokens-string-009.txt create mode 100644 libinjection/tests/test-tokens-string-010.txt create mode 100644 libinjection/tests/test-tokens-string-011.txt create mode 100644 libinjection/tests/test-tokens-string-012.txt create mode 100644 libinjection/tests/test-tokens-string-013.txt create mode 100644 libinjection/tests/test-tokens-string-014.txt create mode 100644 libinjection/tests/test-tokens-string-015.txt create mode 100644 libinjection/tests/test-tokens-string-016.txt create mode 100644 libinjection/tests/test-tokens-string-017.txt create mode 100644 libinjection/tests/test-tokens-string-018.txt create mode 100644 libinjection/tests/test-tokens-string-019.txt create mode 100644 libinjection/tests/test-tokens-string-020.txt create mode 100644 libinjection/tests/test-tokens-string-021.txt create mode 100644 libinjection/tests/test-tokens-string-022.txt create mode 100644 libinjection/tests/test-tokens-string-023.txt create mode 100644 libinjection/tests/test-tokens-string-024.txt create mode 100644 libinjection/tests/test-tokens-string-025.txt create mode 100644 libinjection/tests/test-tokens-string-026.txt create mode 100644 libinjection/tests/test-tokens-string-027.txt create mode 100644 libinjection/tests/test-tokens-string-028.txt create mode 100644 libinjection/tests/test-tokens-string-029.txt create mode 100644 libinjection/tests/test-tokens-string-030.txt create mode 100644 libinjection/tests/test-tokens-string-031.txt create mode 100644 libinjection/tests/test-tokens-string-032.txt create mode 100644 libinjection/tests/test-tokens-string-033.txt create mode 100644 libinjection/tests/test-tokens-string-034.txt create mode 100644 libinjection/tests/test-tokens-string-035.txt create mode 100644 libinjection/tests/test-tokens-string-036.txt create mode 100644 libinjection/tests/test-tokens-string-037.txt create mode 100644 libinjection/tests/test-tokens-string-038.txt create mode 100644 libinjection/tests/test-tokens-string-039.txt create mode 100644 libinjection/tests/test-tokens-string-040.txt create mode 100644 libinjection/tests/test-tokens-string-041.txt create mode 100644 libinjection/tests/test-tokens-string-042.txt create mode 100644 libinjection/tests/test-tokens-string-043.txt create mode 100644 libinjection/tests/test-tokens-string-044.txt create mode 100644 libinjection/tests/test-tokens-string-045.txt create mode 100644 libinjection/tests/test-tokens-string-046.txt create mode 100644 libinjection/tests/test-tokens-string-047.txt create mode 100644 libinjection/tests/test-tokens-string-048.txt create mode 100644 libinjection/tests/test-tokens-string-049.txt create mode 100644 libinjection/tests/test-tokens-string-050.txt create mode 100644 libinjection/tests/test-tokens-string-051.txt create mode 100644 libinjection/tests/test-tokens-string-052.txt create mode 100644 libinjection/tests/test-tokens-string-053.txt create mode 100644 libinjection/tests/test-tokens-string-054.txt create mode 100644 libinjection/tests/test-tokens-string-055.txt create mode 100644 libinjection/tests/test-tokens-string-056.txt create mode 100644 libinjection/tests/test-tokens-string-057.txt create mode 100644 libinjection/tests/test-tokens-string-058.txt create mode 100644 libinjection/tests/test-tokens-string-059.txt create mode 100644 libinjection/tests/test-tokens-string-060.txt create mode 100644 libinjection/tests/test-tokens-string-061.txt create mode 100644 libinjection/tests/test-tokens-string-062.txt create mode 100644 libinjection/tests/test-tokens-string-063.txt create mode 100644 libinjection/tests/test-tokens-string-064.txt create mode 100644 libinjection/tests/test-tokens-string-065.txt create mode 100644 libinjection/tests/test-tokens-string-066.txt create mode 100644 libinjection/tests/test-tokens-string-067.txt create mode 100644 libinjection/tests/test-tokens-string-068.txt create mode 100644 libinjection/tests/test-tokens-string-069.txt create mode 100644 libinjection/tests/test-tokens-string-070.txt create mode 100644 libinjection/tests/test-tokens-string-071.txt create mode 100644 libinjection/tests/test-tokens-variables-001.txt create mode 100644 libinjection/tests/test-tokens-variables-002.txt create mode 100644 libinjection/tests/test-tokens-variables-003.txt create mode 100644 libinjection/tests/test-tokens-variables-004.txt create mode 100644 libinjection/tests/test-tokens-variables-005.txt create mode 100644 libinjection/tests/test-tokens-variables-006.txt create mode 100644 libinjection/tests/test-tokens-variables-007.txt create mode 100644 libinjection/tests/test-tokens-variables-008.txt create mode 100644 libinjection/tests/test-tokens-variables-009.txt create mode 100644 libinjection/tests/test-tokens-variables-010.txt create mode 100644 libinjection/tests/test-tokens-variables-011.txt create mode 100644 libinjection/tests/test-tokens-variables-012.txt create mode 100644 libinjection/tests/test-tokens-variables-013.txt create mode 100644 libinjection/tests/test-tokens-variables-014.txt create mode 100644 libinjection/tests/test-tokens-variables-015.txt create mode 100644 libinjection/tests/test-tokens-words-002.txt create mode 100644 libinjection/tests/test-tokens-words-003.txt create mode 100644 libinjection/tests/test-tokens-words-004.txt create mode 100644 libinjection/tests/test-tokens-words-005.txt create mode 100644 libinjection/tests/test-tokens-words-006.txt create mode 100644 libinjection/tests/test-tokens-words-007.txt create mode 100644 libinjection/tests/test-tokens-words-008.txt create mode 100644 libinjection/tests/test-tokens-words-009.txt create mode 100644 libinjection/tests/test-tokens-words-010.txt create mode 100644 libinjection/tests/test-tokens-words-011.txt create mode 100644 libinjection/tests/test-tokens-words-012.txt create mode 100644 libinjection/tests/test-tokens-words-013.txt create mode 100644 libinjection/tests/test-tokens-words-014.txt create mode 100644 libinjection/tests/test-tokens-words-015.txt create mode 100644 libinjection/tests/test-tokens-words-016.txt create mode 100644 libinjection/tests/test-tokens-words-017.txt create mode 100644 libinjection/tests/test-tokens-words-018.txt create mode 100644 libinjection/tests/test-tokens-words-019.txt create mode 100644 libinjection/tests/test-tokens-words-020.txt create mode 100644 libinjection/tests/test-tokens-words-021.txt create mode 100644 libinjection/tests/test-tokens-words-023.txt create mode 100644 libinjection/tests/test-tokens-words-024.txt create mode 100644 libinjection/tests/test-tokens-words-025.txt diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 1d389a26..1bcf73c8 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,26 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test 8 + +test 9 X + +test 10 + +test 11 + +test 12





...



+ +# opera only, only "DoS" +# test 13 01 + +# opera only, "DoS" +# test 14 + +test 15 + +test 16 X + +test 17 + +test 18 + +# obsolete firefox 3 +# test 19 ¼script ¾alert(1)//¼/script ¾ + +test 20 + +test 21 + +test 22 + +test 23
+ +test 24 1 + +test 25 ;1 + +# obsolete firefox 4 and under +# test 26 +ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input); + +test 27 + +test 28 1 + +test 29 @import "data:,*%7bx:expression(write(1))%7D"; + +test 31_1 + +test 31_2 + +test 32
+ +test 33 XXXXXX + +test 34 1 + +test 35 1 + +test 36 XXX + +test 37 + +test 38 + +# obsolete, FF 3.6 and Opera 11 +#test 39_1 + +test 39_2 ><image xlink:href=" + +test 40 + +test 41
  • + +test 42 XXX + +test 43 + +test 44 X + +test 45
    XXX
    + +test 46
    XXX
    + +test 47 + +test 48 + +test 49 + +test 50 + +test 51 + +test 52 + +test 53_1 + +test 53_2 + +test 54 +test 55_2