Common: Update CustomPBAConfigurationSchema's linux filename validation regex to prevent null bytes

This commit is contained in:
Shreya Malviya 2022-07-26 18:52:17 +05:30
parent 58ce293909
commit a9b9a13c40
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ from .agent_sub_configurations import (
from .utils import freeze_lists
valid_windows_custom_pba_filename_regex = re.compile(r"^[^<>:\"\\\/|?*]*[^<>:\"\\\/|?* \.]+$|^$")
valid_linux_custom_pba_filename_regex = re.compile(r"^[^\\]*$")
valid_linux_custom_pba_filename_regex = re.compile(r"^[^\0\\]*$")
class CustomPBAConfigurationSchema(Schema):