1
0
mirror of https://github.com/minimaxir/big-list-of-naughty-strings.git synced 2025-09-25 05:12:14 +02:00

update JSON to latest

This commit is contained in:
Max Woolf
2015-08-10 19:07:24 -07:00
parent a564fe3113
commit d10f848922
3 changed files with 45 additions and 13 deletions

View File

@@ -1,9 +1,11 @@
[
"",
"undefined",
"null",
"NULL",
"nil",
"NIL",
"0",
"1",
"1.00",
"$1.00",
@@ -21,10 +23,24 @@
"1/0",
"0/0",
"0.00",
"0..0",
".",
"0.0.0",
"0,00",
"0,,0",
",",
"0,0,0",
"--1",
"-",
"-.",
"-,",
"999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
"NaN",
"Infinity",
"-Infinity",
",./;'[]\\-=",
"<>?:\"{}|_+",
"!@#$%^&*()",
"!@#$%^&*()`",
"Ω≈ç√∫˜µ≤≥÷",
"åß∂ƒ©˙∆˚¬…æ",
"œ∑´®†¥¨ˆøπ“‘",
@@ -93,9 +109,19 @@
"Z̮̞̠͙͔ͅḀ̗̞͈̻̗Ḷ͙͎̯̹̞͓G̻O̭̗̮",
"˙ɐnbᴉlɐ ɐuƃɐɯ ǝɹolop ʇǝ ǝɹoqɐl ʇn ʇunpᴉpᴉɔuᴉ ɹodɯǝʇ poɯsnᴉǝ op pǝs 'ʇᴉlǝ ƃuᴉɔsᴉdᴉpɐ ɹnʇǝʇɔǝsuoɔ 'ʇǝɯɐ ʇᴉs ɹolop ɯnsdᴉ ɯǝɹo˥",
"00˙Ɩ$-",
"<script>alert('hi')</script>",
"<img src=x onerror=alert('hi') />",
"<script>alert('XSS')</script>",
"<img src=x onerror=alert('XSS') />",
"<svg><script>0<1>alert('XSS')</script> ",
"\"><script>alert(document.title)</script>",
"'><script>alert(document.title)</script>",
"><script>alert(document.title)</script>",
"</script><script>alert(document.title)</script>",
"< / script >< script >alert(document.title)< / script >",
" onfocus=alert(document.title) autofocus ",
"\" onfocus=alert(document.title) autofocus ",
"' onfocus=alert(document.title) autofocus ",
"scriptalert(document.title)/script",
"<sc<script>ript>alert('XSS')</sc</script>ript>",
"1;DROP TABLE users",
"1'; DROP TABLE users--",
"/dev/null; touch /tmp/blns.fail ; echo",

View File

@@ -4,6 +4,9 @@
undefined
null
NULL
nil
NIL
# Numeric Strings
#

View File

@@ -15,6 +15,9 @@ with open('../blns.txt', 'r') as f:
# remove empty-lines and comments
content = [x for x in content if x and not x.startswith('#')]
# insert empty string at end since all are being removed (c.f. jimrandomh)
content.insert(0, "")
with open('../blns.json', 'wb') as f:
# write JSON to file; note the ensure_ascii parameter