The database server has insecure configurations.
Access the database and exploit vulnerabilities in the system configuration to affect the service.
Correctly configure the MySQL server.
Internet user with credentials.
⌚ 60 minutes.
Default score using CVSS 3.1. It may change depending on the context of the src.
Default score using CVSS 4.0. It may change depending on the context of the src.
The db server restricts access only to authorized users
version: "3.9"
services:
web:
build: .
ports:
- "8000:80"
depends_on:
- db
db:
image: "/mssql/server"
environment:
SA_PASSWORD: "Your_password123"
ACCEPT_EULA: "Y"
group_permissions
AllowEdit: admin
The db server allows editing permissions for unauthorized users
version: "3.9"
services:
web:
build: .
ports:
- "8000:80"
depends_on:
- db
db:
image: "/mssql/server"
environment:
SA_PASSWORD: "Your_password123"
ACCEPT_EULA: "Y"
group_permissions
AllowEdit: all