diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2af2605..48af3d2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log
+### V2.1.4
+
+- Fixed vulnerability CVE-2021-44832, CWE-400
+- Update to log4j version 2.17.1
+- Update to jackson-databind version 2.12.6
+
### V2.1.3
- Fixed vulnerability CVE-2021-45105
diff --git a/build.gradle b/build.gradle
index 0e748a7..4021e40 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,9 +20,9 @@ dependencies {
//gradle 4.0
compile group: 'commons-lang', name: 'commons-lang', version: '2.4'
- compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.0'
- compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.0'
- compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.5.1'
+ compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'
+ compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'
+ compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.69'
@@ -30,7 +30,7 @@ dependencies {
//gradle 6.9
//implementation group: 'commons-lang', name: 'commons-lang', version: '2.4'
- //implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.5.1'
+ //implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1'
//implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
//implementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.69'
//testImplementation group: 'junit', name: 'junit', version: '4.13.1'
diff --git a/pom.xml b/pom.xml
index efb6135..44ce0fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,12 +80,12 @@
org.apache.logging.log4j
log4j-api
- 2.17.0
+ 2.17.1
org.apache.logging.log4j
log4j-core
- 2.17.0
+ 2.17.1
commons-lang
@@ -95,7 +95,7 @@
com.fasterxml.jackson.core
jackson-databind
- 2.10.5.1
+ 2.12.6.1
com.googlecode.json-simple