Mercurial > dropbear-fuzzcorpus
view make_fuzzinput.py @ 19:e1aa13f2be49
Add a dictionary for postauth_nomaths, symlink to client
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 07 Mar 2021 14:59:13 +0800 |
parents | ec5e2b121e57 |
children |
line wrap: on
line source
#!/usr/bin/env python3 # A fuzz input consists of a SSH-string header followed by the SSH stream. # This program prepends a basic prefix. import struct import sys stream = sys.stdin.buffer.read() header = b'' # uint32 wrapfd random seed header += struct.pack(">I", 0xafaf1234) # prepend length header = struct.pack(">I", len(header)) + header sys.stdout.buffer.write(header) sys.stdout.buffer.write(stream)