This commit is contained in:
DavidXanatos 2023-01-16 09:42:54 +01:00
parent ee2210c19d
commit a228904d79
2 changed files with 9 additions and 4 deletions

View File

@ -8,10 +8,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.6 / 5.61.6] - 2023-01-?
## Changed
- improved trace log retrival greately improving performance
### Changed
- reworked trace log retrival to greately improving performance
- improved list/tree finder
- improved trace logging
- enabled drop admin rights option for compartment style boxes
-- Note: programs started unsandboxed can not have rights dropped, but UAC prompts and elevation from within the sandboxed are blocked
### Fixed
- fixed potential BSOD issue in the driver
@ -22,6 +24,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.5 / 5.61.5] - 2023-01-10
### Added

View File

@ -515,8 +515,9 @@ finish:
bool CheckDropRights(const WCHAR *BoxName)
{
if (SbieApi_QueryConfBool(BoxName, L"NoSecurityIsolation", FALSE))
return false; // if we are not swapping the token we can not drop admin rights so keep this consistent
// Allow setting of DropAdminRights to supress UAC prompts / elevation from the sandboxed realm
//if (SbieApi_QueryConfBool(BoxName, L"NoSecurityIsolation", FALSE))
// return false; // if we are not swapping the token we can not drop admin rights so keep this consistent
if (SbieApi_QueryConfBool(BoxName, L"UseSecurityMode", FALSE))
return true;
if (SbieApi_QueryConfBool(BoxName, L"DropAdminRights", FALSE))