mirror of https://github.com/google/oss-fuzz.git
31 lines
1.0 KiB
Java
31 lines
1.0 KiB
Java
import com.code_intelligence.jazzer.api.FuzzedDataProvider;
|
|
import com.code_intelligence.jazzer.api.FuzzerSecurityIssueHigh;
|
|
import java.sql.Connection;
|
|
import java.sql.DatabaseMetaData;
|
|
import java.sql.ResultSet;
|
|
import java.sql.SQLException;
|
|
import java.sql.Statement;
|
|
import java.sql.PreparedStatement;
|
|
|
|
public class SqlPreparedStatementFuzzer extends TestServer {
|
|
|
|
SqlPreparedStatementFuzzer(boolean verbose) {
|
|
super(verbose);
|
|
}
|
|
|
|
void testOneInput(String fuzzyString) {
|
|
try (Connection connection = getConnection()) {
|
|
PreparedStatement preparedStatement = connection.prepareStatement("UPDATE TestTable SET value=? WHERE key=1");
|
|
preparedStatement.setString(1, fuzzyString);
|
|
preparedStatement.executeUpdate();
|
|
} catch (SQLException ex) {
|
|
/* ignore */
|
|
}
|
|
}
|
|
|
|
public static void fuzzerTestOneInput(FuzzedDataProvider fuzzedDataProvider) throws Exception {
|
|
try (TestServer fuzzer = new SqlStatementFuzzer(false)) {
|
|
fuzzer.testOneInput(fuzzedDataProvider.consumeRemainingAsAsciiString());
|
|
}
|
|
}
|
|
} |