Add archive file formats to blocklist.

This commit is contained in:
Sam Rose 2023-11-21 11:26:25 +00:00
parent 79dcc468b8
commit 71b8b300bf
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -98,6 +98,7 @@ export const ValidQueryNameRegex = /^[^()]*$/
export const ValidColumnNameRegex = /^[_a-zA-Z0-9\s]*$/g export const ValidColumnNameRegex = /^[_a-zA-Z0-9\s]*$/g
export const InvalidFileExtensions = [ export const InvalidFileExtensions = [
"7z",
"action", "action",
"apk", "apk",
"app", "app",
@ -138,6 +139,7 @@ export const InvalidFileExtensions = [
"sct", "sct",
"shb", "shb",
"shs", "shs",
"tar",
"u3p", "u3p",
"vb", "vb",
"vbe", "vbe",
@ -147,4 +149,5 @@ export const InvalidFileExtensions = [
"ws", "ws",
"wsf", "wsf",
"wsh", "wsh",
"zip",
] ]