Skip to content

Commit

Permalink
1.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Nov 26, 2023
1 parent 1fda969 commit 671c43a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with Microsoft Edge when using AutoDelete option [#post-3173507](https://www.wilderssecurity.com/threads/sandboxie-plus-v1-12-1-pre-release.452939/#post-3173507)
- fixed warning issue `Acrobat.exe: SBIE2205 Service not implemented: CredEnumerateA` [#issuecomment-1826280016](https://github.com/sandboxie-plus/Sandboxie/issues/3441#issuecomment-1826280016)
- fixed UNEXPECTED_KERNEL_MODE_TRAP BSOD when opening any web link from sandboxed Microsoft 365 app (e.g. Outlook, Word) [#3427](https://github.com/sandboxie-plus/Sandboxie/issues/3427)
- fixed issue with force process warning message


## [1.12.1 / 5.67.1] - 2023-11-23
Expand Down
4 changes: 2 additions & 2 deletions SandboxiePlus/SandMan/Windows/OptionsForce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@ bool COptionsWindow::CheckForcedItem(const QString& Value, int type)
bDangerous = true;
else if (Value.compare("taskmgr.exe", Qt::CaseInsensitive) == 0 || Value.compare(winPath + "\\system32\\taskmgr.exe", Qt::CaseInsensitive) == 0)
bDangerous = true;
else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive) == 0)
else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive))
bDangerous = true;
else if (Value.contains("sandman.exe", Qt::CaseInsensitive) == 0)
else if (Value.contains("sandman.exe", Qt::CaseInsensitive))
bDangerous = true;
}
else
Expand Down

0 comments on commit 671c43a

Please sign in to comment.