We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c2473 commit 8b1f067Copy full SHA for 8b1f067
codeflash/verification/_auditwall.py
@@ -85,7 +85,7 @@ def handle_os_remove(event: str, args: tuple) -> None:
85
86
87
def check_sqlite_connect(event: str, args: tuple) -> None:
88
- if any("codeflash_" in arg for arg in args):
+ if any(pattern in str(arg) for pattern in args_allow_list for arg in args):
89
accept(event, args)
90
else:
91
reject(event, args)
0 commit comments