Disable File Filter
DisableFileFilter is a sandbox setting in Sandboxie Ini available since v0.9.0 / 5.51.0. This setting disables the file system filtering mechanism, allowing sandboxed processes to bypass file access restrictions and directly interact with the host file system.
Usage
Syntax
Where:
y
disables file system filtering completelyn
(default) maintains normal file filtering behavior
Security Implications
Warning
This setting disables driver-level enforcement of file system access restrictions. Malicious software can potentially bypass these protections through various techniques including code injection, API hooking, or direct system calls, making this setting unsuitable for untrusted applications.
Related Settings
Master Override
DisableFileFilter
is automatically enabled when:
- NoSecurityFiltering is set in Application Compartment mode1.
Alternative Granular Controls
- DisableKeyFilter: Disables only registry filtering.
- DisableObjectFilter: Disables only object filtering.
- NoSecurityFiltering: Disables all filtering in Application Compartment mode.
-
File filter control in
process.c
: The settingproc->disable_file_flt = no_filtering || Conf_Get_Boolean(proc->box->name, L"DisableFileFilter", 0, FALSE)
allows DisableFileFilter to completely bypass file system filtering either independently or as part of NoSecurityFiltering in Application Compartment mode. ↩