Tofpu / SpeedBridge2

Audit: Prepared query may be susceptible to injection attacks JAVA-A1041
Security
Critical
a year agoa year old
21    private DatabaseQuery(final @NotNull String query) {
22        try {
23            this.preparedStatement =
24                    DatabaseManager.getConnection().prepareStatement(query);25        } catch (final SQLException exception) {
26            throw new IllegalStateException(exception);
27        }