Build 0.9.7

This commit is contained in:
DavidXanatos 2021-10-02 10:17:51 +02:00
parent 9de3176979
commit 7152325f4a
3 changed files with 14 additions and 2 deletions

View File

@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- when initializing an empty sandbox, MSI debug keys are set to generate the debug output of MSI installer service - when initializing an empty sandbox, MSI debug keys are set to generate the debug output of MSI installer service
- added "DisableComProxy=y" allowing to disable COM proxying through the service - added "DisableComProxy=y" allowing to disable COM proxying through the service
- added "ProcessLimit=..." that allows to limit the max count of processes in a sandbox [#1230](https://github.com/sandboxie-plus/Sandboxie/issues/1230) - added "ProcessLimit=..." that allows to limit the max count of processes in a sandbox [#1230](https://github.com/sandboxie-plus/Sandboxie/issues/1230)
- added missing IPC loging
### Changed ### Changed
- reworked SbieSvc ini server to allow settings caching and greatly improve performance - reworked SbieSvc ini server to allow settings caching and greatly improve performance
@ -33,6 +34,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed handle leaks in the lingering process monitor mechanism - fixed handle leaks in the lingering process monitor mechanism
- fixed issue with opening device paths like "\\??\\FltMgr" - fixed issue with opening device paths like "\\??\\FltMgr"
- fixed build issue with an explicit FileDigestAlgorithm option for driver sign (by isaak654) [#1210](https://github.com/sandboxie-plus/Sandboxie/pull/1210) - fixed build issue with an explicit FileDigestAlgorithm option for driver sign (by isaak654) [#1210](https://github.com/sandboxie-plus/Sandboxie/pull/1210)
- fixed issue with resource access log sometimes getting corrupted
- fixed issue with office C2R [#428](https://github.com/sandboxie-plus/Sandboxie/issues/428)
### removed ### removed
- removed support for Microsoft EMET (Enhanced Mitigation Experience Toolkit), as it was EOL in 2018 - removed support for Microsoft EMET (Enhanced Mitigation Experience Toolkit), as it was EOL in 2018

View File

@ -1110,7 +1110,7 @@ _FX NTSTATUS Session_Api_MonitorGetEx(PROCESS* proc, ULONG64* parms)
log_data->Length = (USHORT)data_size; log_data->Length = (USHORT)data_size;
ProbeForWrite(log_buffer, data_size + 1, sizeof(WCHAR)); ProbeForWrite(log_buffer, data_size + 1, sizeof(WCHAR));
memcpy(log_buffer, read_ptr, data_size); log_buffer_get_bytes((CHAR*)log_buffer, data_size, &read_ptr, session->monitor_log);
log_buffer[data_size / sizeof(wchar_t)] = L'\0'; log_buffer[data_size / sizeof(wchar_t)] = L'\0';

View File

@ -3067,6 +3067,7 @@ LingerProcess=opera_autoupdate.exe
[Template_BlockPorts] [Template_BlockPorts]
Tmpl.Title=#4293 Tmpl.Title=#4293
Tmpl.Class=Misc Tmpl.Class=Misc
#BlockPort=137,138,139,445
NetworkAccess=Block;Port=137,138,139,445 NetworkAccess=Block;Port=137,138,139,445
[Template_qWave] [Template_qWave]
@ -3147,8 +3148,16 @@ Tmpl.ScanService=RpcSs
#RpcPortBinding=winspool.drv,'ncalrpc:[,Security=Impersonation Dynamic False]',Resolve=PrintSpooler #RpcPortBinding=winspool.drv,'ncalrpc:[,Security=Impersonation Dynamic False]',Resolve=PrintSpooler
#RpcPortBindingSvc=Spooler,PrintSpooler #RpcPortBindingSvc=Spooler,PrintSpooler
# NSI
RpcPortBinding=WINNSI.DLL,'ncalrpc:[,Security=Impersonation Dynamic True]',Resolve=NSI,TimeOut=n
RpcPortBindingSvc=NSI,nsi
# AppInfo
RpcPortBinding=kernel32.dll,'0497b57d-2e66-424f-a0c6-157cd5d41700@ncalrpc:',Resolve=AppInfo,TimeOut=y
RpcPortBindingIfId=AppInfo,{0497b57d-2e66-424f-a0c6-157cd5d41700}
#RpcPortBindingSvc=AppInfo,appinfo
# RpcMgmtSetComTimeout presets # RpcMgmtSetComTimeout presets
RpcPortBinding=WINNSI.DLL,'ncalrpc:[,Security=Impersonation Dynamic True]',TimeOut=n
RpcPortBinding=AppXDeploymentClient.dll,{00000000-0000-0000-0000-000000000000},TimeOut=y RpcPortBinding=AppXDeploymentClient.dll,{00000000-0000-0000-0000-000000000000},TimeOut=y
# windows proxy auto discovery # windows proxy auto discovery