I'm testing how some of my code handles bad data, and I need a few series of bytes that are invalid UTF-8.
Can you post some, and ideally, an explanation of why they are bad/where you got them?
|
I'm testing how some of my code handles bad data, and I need a few series of bytes that are invalid UTF-8. Can you post some, and ideally, an explanation of why they are bad/where you got them? |
||||
|
|
|
Take a look at Markus Kuhn's UTF-8 decoder capability and stress test file You'll find examples of many UTF-8 irregularities, including lonely start bytes, continuation bytes missing, overlong sequences, etc. |
|||
|
|
|
In PHP:
From http://www.php.net/manual/en/reference.pcre.pattern.modifiers.php#54805 |
|||
|
|
|
Fuzz Testing - generate a random sequence of octets. Most likely you'll get some illegal sequences sooner than later. |
|||
|
|