dvwps
dvwps copied to clipboard
Damn Vulnerable WordPress Site
Results
3
dvwps issues
Sort by
recently updated
recently updated
newest added
Currently, I'm trying to run the below docker-compose script ```yml version: '3.3' services: wp_db: image: mysql:5.6 ports: - '3306:3306' volumes: - ./db_data:/var/lib/mysql - ./mysql.cnf:/etc/mysql/conf.d/mysql.cnf restart: always environment: - MYSQL_DATABASE=wordpress -...