-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HHH-14077 : CVE-2019-14900 SQL injection issue in Hibernate ORM
- Loading branch information
Showing
2 changed files
with
139 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
...test/java/org/hibernate/jpa/test/criteria/literal/CriteriaLiteralWithSingleQuoteTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
* Hibernate, Relational Persistence for Idiomatic Java | ||
* | ||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
*/ | ||
package org.hibernate.jpa.test.criteria.literal; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
import javax.persistence.criteria.CriteriaBuilder; | ||
import javax.persistence.criteria.CriteriaQuery; | ||
|
||
import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; | ||
|
||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import static org.hibernate.testing.transaction.TransactionUtil.doInJPA; | ||
import static org.junit.Assert.assertEquals; | ||
|
||
public class CriteriaLiteralWithSingleQuoteTest extends BaseEntityManagerFunctionalTestCase { | ||
|
||
@Test | ||
public void literalSingleQuoteTest() throws Exception { | ||
|
||
doInJPA( | ||
this::entityManagerFactory, | ||
entityManager -> { | ||
CriteriaBuilder cb = entityManager.getCriteriaBuilder(); | ||
CriteriaQuery<Object> query = cb.createQuery(); | ||
query.select( cb.literal( '\'' ) ).from( Student.class ); | ||
Object object = entityManager.createQuery( query ).getSingleResult(); | ||
assertEquals( "'", object ); | ||
} | ||
); | ||
} | ||
|
||
@Test | ||
public void literalProjectionTest() throws Exception { | ||
|
||
doInJPA( | ||
this::entityManagerFactory, | ||
entityManager -> { | ||
CriteriaBuilder cb = entityManager.getCriteriaBuilder(); | ||
CriteriaQuery<Object> query = cb.createQuery(); | ||
query.multiselect( cb.literal( "' || aValue || '" ) ).from( Student.class ); | ||
Object object = entityManager.createQuery( query ).getSingleResult(); | ||
assertEquals( "' || aValue || '", object ); | ||
} | ||
); | ||
} | ||
|
||
@Test | ||
public void testLiteralProjectionAndGroupBy() throws Exception { | ||
doInJPA( | ||
this::entityManagerFactory, | ||
entityManager -> { | ||
|
||
final String literal = "' || aValue || '"; | ||
|
||
CriteriaBuilder cb = entityManager.getCriteriaBuilder(); | ||
CriteriaQuery<Object> query = cb.createQuery(); | ||
query.multiselect( cb.literal( literal ) ) | ||
.from( Student.class ); | ||
query.groupBy( cb.literal( literal ) ); | ||
|
||
Object object = entityManager.createQuery( query ).getSingleResult(); | ||
assertEquals( literal, object ); | ||
} | ||
); | ||
} | ||
|
||
@Before | ||
public void setupData() { | ||
doInJPA( | ||
this::entityManagerFactory, | ||
entityManager -> { | ||
Student student = new Student(); | ||
student.setAValue( "A Value" ); | ||
entityManager.persist( student ); | ||
} | ||
); | ||
} | ||
|
||
@After | ||
public void cleanupData() { | ||
doInJPA( | ||
this::entityManagerFactory, | ||
entityManager -> { | ||
entityManager.createQuery( "delete from Student" ); | ||
} | ||
); | ||
} | ||
|
||
@Override | ||
protected Class<?>[] getAnnotatedClasses() { | ||
return new Class[] { Student.class }; | ||
} | ||
|
||
@Entity(name = "Student") | ||
@Table(name = "Students") | ||
public static class Student { | ||
|
||
@Id | ||
@GeneratedValue | ||
private Long id; | ||
|
||
@Column | ||
private String aValue; | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
this.id = id; | ||
} | ||
|
||
public String getAValue() { | ||
return aValue; | ||
} | ||
|
||
public void setAValue(String value) { | ||
this.aValue = value; | ||
} | ||
} | ||
} |