├── README.md ├── doc ├── mysql │ └── README.md └── postgres │ └── README.md ├── docker-compose.yml ├── log └── mysql │ └── query.log ├── mysql ├── init │ └── 1_db.sql ├── my.cnf └── plugin │ └── .gitkeep ├── nginx └── default.conf ├── php-fpm └── Dockerfile ├── postgres ├── Dockerfile └── init │ └── 1_db.sql ├── scripts ├── generate_lo_query.py ├── hex2str.py └── str2hex.py └── src ├── config.php ├── mysql.php └── postgres.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/README.md -------------------------------------------------------------------------------- /doc/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/doc/mysql/README.md -------------------------------------------------------------------------------- /doc/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/doc/postgres/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /log/mysql/query.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/init/1_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/mysql/init/1_db.sql -------------------------------------------------------------------------------- /mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/mysql/my.cnf -------------------------------------------------------------------------------- /mysql/plugin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/php-fpm/Dockerfile -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/init/1_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/postgres/init/1_db.sql -------------------------------------------------------------------------------- /scripts/generate_lo_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/scripts/generate_lo_query.py -------------------------------------------------------------------------------- /scripts/hex2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/scripts/hex2str.py -------------------------------------------------------------------------------- /scripts/str2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/scripts/str2hex.py -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/src/config.php -------------------------------------------------------------------------------- /src/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/src/mysql.php -------------------------------------------------------------------------------- /src/postgres.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/sqli-playground/HEAD/src/postgres.php --------------------------------------------------------------------------------