Show HN: Big List of Naughty Strings for testing user-input data
21–30 of 80 posts
Re: Show HN: Big List of Naughty Strings for testing user-input data
#22Most of what I do involves the messy world of text, and I think this is a great resource. I wish the software I depended on tested against it. I can think of a few more cases that I've seen cause havoc: - U+FEFF in the middle of a string (people are used to seeing it at the beginning of a string, because Microsoft, but elsewhere it may be more surprising) - U+0 (it's encoded as the null byte!) - U+1B (the codepoint f…
Re: Show HN: Big List of Naughty Strings for testing user-input data
#23Most of what I do involves the messy world of text, and I think this is a great resource. I wish the software I depended on tested against it. I can think of a few more cases that I've seen cause havoc: - U+FEFF in the middle of a string (people are used to seeing it at the beginning of a string, because Microsoft, but elsewhere it may be more surprising) - U+0 (it's encoded as the null byte!) - U+1B (the codepoint f…
Re: Show HN: Big List of Naughty Strings for testing user-input data
#24This is good. There are lots of lists like this; you might find additional strings to add to it here: https://code.google.com/p/fuzzdb/ Fuzz lists are to web pentesters what drain snakes are to plumbers.
As other commenters noted, strings like DROP TABLES should be used with caution!
Re: Show HN: Big List of Naughty Strings for testing user-input data
#25Most of what I do involves the messy world of text, and I think this is a great resource. I wish the software I depended on tested against it. I can think of a few more cases that I've seen cause havoc: - U+FEFF in the middle of a string (people are used to seeing it at the beginning of a string, because Microsoft, but elsewhere it may be more surprising) - U+0 (it's encoded as the null byte!) - U+1B (the codepoint f…
Re: Show HN: Big List of Naughty Strings for testing user-input data
#26Nice "in the beginning..." hebrew string: בְּרֵאשִׁית, בָּרָא אֱלֹהִים, אֵת הַשָּׁמַיִם, וְאֵת הָאָרֶץ
Re: Show HN: Big List of Naughty Strings for testing user-input data
#27Most of what I do involves the messy world of text, and I think this is a great resource. I wish the software I depended on tested against it. I can think of a few more cases that I've seen cause havoc: - U+FEFF in the middle of a string (people are used to seeing it at the beginning of a string, because Microsoft, but elsewhere it may be more surprising) - U+0 (it's encoded as the null byte!) - U+1B (the codepoint f…
Re: Show HN: Big List of Naughty Strings for testing user-input data
#28" # Server Code Injection # # Strings which can cause user to run code on server as a privileged user (c.f. https://news.ycombinator.com/item?id=7665153 ) /dev/null; rm -rf /*; echo " That's a little aggressive for testing no?
Re: Show HN: Big List of Naughty Strings for testing user-input data
#29(Well, the text file has empty lines separating the comments and example strings so it technically includes the empty string, but it's not in the JSON file.)
Re: Show HN: Big List of Naughty Strings for testing user-input data
#30" # Server Code Injection # # Strings which can cause user to run code on server as a privileged user (c.f. https://news.ycombinator.com/item?id=7665153 ) /dev/null; rm -rf /*; echo " That's a little aggressive for testing no?