A website inspired by Ashley Madison that can be hacked with tools like sqlmap.
#
# Hackey Madison
# https://gitlab.cylab.be/cylab/play/hackey-madison
#
services:
web:
image: gitlab.cylab.be:8081/cylab/play/hackey-madison
ports:
- '8000:80'
environment:
WAIT_HOSTS: mysql:3306
mysql:
image: mysql:8.0
environment:
MYSQL_DATABASE: 'cylab'
MYSQL_USER: 'cylab'
MYSQL_PASSWORD: 'cylab'
MYSQL_RANDOM_ROOT_PASSWORD: 'true'
The repository has a docker-compose.yml that you can use to test or contribute:
git clone https://gitlab.cylab.be/cylab/play/hackey-madison.git
cd hackey-madison
docker compose up
Site will be available at http://127.0.0.1:8000