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:
34
blns.json
34
blns.json
@@ -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') />",
|
||||
"<svg><script>0<1>alert('XSS')</script>",
|
||||
"<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 ",
|
||||
"<script>alert(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",
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user