Skip to content
Snippets Groups Projects
Commit dd047c8b authored by Thibault Debatty's avatar Thibault Debatty
Browse files

update docker-compose def and README

parent ed9cfbe8
No related branches found
No related tags found
No related merge requests found
Pipeline #10301 passed
......@@ -18,6 +18,19 @@ Simply use this search query (for example):
' union select null, username, password from users where username like '%
```
## Running with docker-compose
Easiest way to run the vulnerable app is using docker-compose:
```bash
mkdir sqlite-injection
cd sqlite-injection
curl -o docker-compose.yml https://gitlab.cylab.be/cylab/play/sqlite-injection/-/raw/main/docker-compose.yml
docker-compose up
```
After a few seconds, the app will be available at ```http://127.0.0.1:8000```
## Running with Docker
......
version: '3.3'
services:
sqlite-injection:
web:
image: gitlab.cylab.be:8081/cylab/play/sqlite-injection
ports:
- '8000:80'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment