Skip to content

Commit

Permalink
1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Jan 16, 2023
1 parent ee2210c commit a228904
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -22,6 +24,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).





## [1.6.5 / 5.61.5] - 2023-01-10

### Added
Expand Down
5 changes: 3 additions & 2 deletions Sandboxie/core/svc/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,9 @@ bool RestrictToken(void)

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))
Expand Down

0 comments on commit a228904

Please sign in to comment.