Java developers have a rich ecosystem available to them, including robust application frameworks and proven Object-Relational Mapping (ORM). Unfortunately, frameworks and ORMs arenāt enough to make a language secure from SQL injection. For example, 70% of security threats to Ruby apps are still SQL Injections, despite counting with Rails as a stable development framework. In this blog post we are going to cover SQL injection in Java programming language and how to stay protected.
In this article:
- What is SQL Injection in Java?
- SQL Injection in Java
- How to prevent SQL injections in Java
- Secure your Java applications with the help of Bright
What is SQL Injection in Java?
Before we talk about SQL injection in Java, letās first cover what an SQL injection attack is.
SQL injection represents one of the top ten web application vulnerabilities according to OWASP Top 10. In simple terms, in an SQL injection attack, the attacker is trying to inject/insert SQL code in a query, to gain unauthorised viewing of user lists, detection of entire tables, or in some cases, the attacker could gain administrative privileges to a database. One important aspect when we talk about SQLi is the potential loss of customer trust should personal information be stolen.
The victim of an SQL injection attack can be any application using relational databases like Oracle, MySQL, PostgreSQL and SQL Server. So, if your Java application uses a relational database, and there is a huge chance it is, it could be vulnerable to SQL injection attacks.
SQL Injection in Java
Java SQL injection example
Take a look at the following lines of code:
//Get name of item
String name=āAppleā;
//check the database
String query=āSELECT * FROM items WHERE item_name=āā + name + āāā;
The property ānameā is user-supplied. What if the user enters something else instead of āAppleā. Letās take for example the following:
testā OR ā1ā=ā1
The final query would look like this:
SELECT * FROM items WHERE item_name=ātestā or ā1ā=ā1ā;
While this example may look trivial, as we only return all the records from the āitemsā table, you need little imagination to see how devastating this can be for the business if we were, for example, to dump the table of āusersā.
How to prevent SQL injections in Java
Use parameterized queries
The usage of parameterized queries instead of concatenating values should be the first and most important step you can take against SQL injection in Java. Here is an example how that would look in practice:
String sql = "select id, title, excerpt, body from Posts where slug = ?";
The values that we would concatenate are replaced with a placeholder, in the form of a question mark. In the next step we have to create a prepared statement to bind the parameterās value to it:
Connection connection = dataSource.getConnection();
PreparedStatement p = c.prepareStatement(sql);
p.setString(1, slug);
Parameterized queries allow us to safely assemble queries with user-submitted values.
Allow list input validation
A list input validation can be used to complement using parameterized queries, as opposed to being an alternative.
The process of whitelisting input validation is made up of restricting inputs to a pre-compiled list of known, valid values and blocking everything else. That, for example, includes things such as the use of regular expressions to validate some parts of information, verifying that the numeric parameters fall into expected ranges, and ensuring that parameters meet the expected data type.
Allow list input validation should be carried out for all user inputs, whether URL parameters, form fields, content from imported files amongst others.
Execute queries with the least possible privilege
While more of an alleviation of the effects, as opposed to a fully preventative measure, itās one thatās essential to have, nonetheless. If the previously mentioned preventative steps donāt help and the attacker finds a way to succeed in his SQLi attempt, itās important that your application uses a connection string whose user has the least possible privilege.
Sometimes the only database privileges the app needs are reading ones. In that case, use a connection string that only has reading privileges. That way if an attacker is able to inject malicious code, at least they wonāt be able to alter or delete data.Ā
Use Java Persistence
Another option when it comes to preventing SQL injection in Java is using Java Persistence Query Language, or JPQL. There are several implementations of the Java Persistence API. The two most popular are Spring Data JPA and Hibernate. Java Persistence API adds an extra data layer for apps, and helps limit an attackerās ability to use and leverage SQL injections.
Detecting SQL injection in Java applications with Bright
Bright helps automate the detection and remediation of many vulnerabilities including SQL Injection, early in the development process.
By shifting DAST scans left in the development pipeline and integrating them into the SDLC, developers and application security professionals can detect vulnerabilities early, and remediate them before they appear in production. Bright completes scans in minutes with no false positives, by automatically validating every vulnerability, so you don’t have to. This allows developers to adopt the solution and use it throughout the development lifecycle.
Scan your WordPress website or any other web app and prevent SQL injection vulnerabilities ā try Bright for free.
