Buffer overflow

Generate bad characters list with python

#!/usr/bin/python
import sys
for x in range(1,256):
    sys.stdout.write("\\x" + '{:02x}'.format(x))

Last updated