A Qualys security scan on DX NetOps Performance Management (CAPM) servers reports a vulnerability under QID-19568. The scan identifies a MySQL instance listening on TCP port 3306 and recommends encrypting database information or handling errors that might disclose sensitive information such as the database type or version.
The Qualys scan (QID-19568) is a generic detection for MySQL services running on their default port. In the DX NetOps Performance Management architecture, the MySQL service is required to listen on port 3306 for inter-service database communication. Disabling this port or preventing the service from listening would cause the application to fail.
This finding is considered a False Positive for the following reasons:
No remediation action is required. This information can be used to document an exception for the security scan.
The 4 properties files(PC, DM, EM, SSO) all have db.url that has:
db.url=jdbc:mysql://localhost:3306/netqosportal?characterEncoding=UTF-8&useSSL=true&verifyServerCertificate=false
useSSL=true. We skip validating the self-signed cert that mysql creates on install.
So all our communication is over TLS to MySQL.