diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-08-08 01:28:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 01:28:56 +0200 |
commit | 1cffe27185419ef45d32d7fbc07d5a24e527546d (patch) | |
tree | d0b8b9c2b455718033ea1baf30e3d8614fe97e7a /docs/vuln_samples/sqlite-heap-overflow.sql | |
parent | 08cb3f8ab5cb4538182926436d203f266f09077b (diff) | |
download | afl++-1cffe27185419ef45d32d7fbc07d5a24e527546d.tar.gz |
Clean up docs folder (#1059)
Changes: - Move files to docs/resources. - Fix references. - Delete unused files.
Diffstat (limited to 'docs/vuln_samples/sqlite-heap-overflow.sql')
-rw-r--r-- | docs/vuln_samples/sqlite-heap-overflow.sql | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/vuln_samples/sqlite-heap-overflow.sql b/docs/vuln_samples/sqlite-heap-overflow.sql deleted file mode 100644 index 066fc835..00000000 --- a/docs/vuln_samples/sqlite-heap-overflow.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP TABLE IF EXISTS t;CREATE VIRTUAL TABLE t0 USING fts4();insert into t0 select zeroblob(0);SAVEPOINT O;insert into t0 -select(0);SAVEPOINT E;insert into t0 SELECT 0 UNION SELECT 0'x'ORDER BY x; |