Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

org.hibernate_hibernate-core 4.0.1.Final / pom.xml

Total vulnerabilities: 2

Critical: 0High: 1Medium: 1Low: 0
Vulnerability ID Severity CVSSFixed in
CVE-2020-25638 HIGH7.4-
CVE-2019-14900 MEDIUM6.5-

Copy link

@prisma-cloud-devsecops prisma-cloud-devsecops bot Sep 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mysql_mysql-connector-java 5.1.26 / pom.xml

Total vulnerabilities: 7

Critical: 0High: 2Medium: 0Low: 5
Vulnerability ID Severity CVSSFixed in
CVE-2018-3258 HIGH8.8-
CVE-2017-3523 HIGH8.5-
CVE-2017-3589 LOW3.3-
CVE-2022-21363 LOW48.0.28
CVE-2019-2692 LOW48.0.16
CVE-2017-3586 LOW45.1.42
CVE-2015-2575 LOW45.1.35

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.cysecurity</groupId>
<artifactId>JavaVulnerableLab</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>JavaVulnerableLab Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.26</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.0.1.Final</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>JavaVulnerableLab</finalName>
</build>
</project>