An open API service indexing awesome lists of open source software.

https://github.com/ndr-repo/react2shell

Resources for red team operators to discover & leverage react2shell vulnerabilities
https://github.com/ndr-repo/react2shell

react2shell react2shell-scanner

Last synced: 3 months ago
JSON representation

Resources for red team operators to discover & leverage react2shell vulnerabilities

Awesome Lists containing this project

README

          

# react2shell
Resources for red team operators to discover & exploit react2shell vulnerabilities. For authorized use only. I am not responsible for your actions.

## Recon Automation Bookmarklet

![bookmarklet](https://github.com/ndr-repo/react2shell/blob/main/react2shell-bookmarklet-search.png) ![search-result](https://github.com/ndr-repo/react2shell/blob/main/react2shell-bookmarklet-search-results.png)

### Related PoCs

- [maple3142 RCE PoC](https://gist.github.com/maple3142/48bc9393f45e068cf8c90ab865c0f5f3)

## Related Exploit Chain - Trend Micro Research

![TrendMicro-ExploitChain](https://www.trendmicro.com/content/dam/trendmicro/global/en/research/25/l/cve-2025-55182-analysis-poc-itw/React2Shell-Infection-Chain.png)

### base64 encoding bash one-liners

```
echo “” | base64
```

### Running base64 encoded bash one-liners

```
echo “” | base64 -d | bash
```

### example - creating a host fingerprinting one-liner:
```
echo "uname -a && id && ip address | grep -oP 'inet.*' " | base64
```

### example - running base64 encoded host fingerprinting one-liner:

```
echo "dW5hbWUgLWEgJiYgaWQgJiYgaXAgYWRkcmVzcyB8ICBncmVwIC1vUCAnaW5ldC4qJyAK" | base64 -d | bash
```

## Related Industry Articles
- [SonicWall Capture Labs](https://www.sonicwall.com/blog/react2shell-cve-2025-55182-critical-unauthenticated-rce)
- [Trend Micro Research](https://www.trendmicro.com/en_us/research/25/l/CVE-2025-55182-analysis-poc-itw.html)
- [Splunk Research](https://research.splunk.com/stories/react2shell/)

## Labs

- [TryHackMe](https://tryhackme.com/room/react2shellcve202555182)