Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make DiskSerialNumber fixed #4248

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- \\??\\%SystemDrive%\\Sandbox\\%SANDBOX%
- \\??\\%SystemDrive%\\Users\\%USER%\Sandbox\\%SANDBOX%
- added Sandbox Import dialog
- added "DiskSerialNumberValue"(Number) to set Disk Serial Number for indivdal box.

### Changed
- sandbox root selection in global settings is now a combo box
Expand Down
6 changes: 5 additions & 1 deletion Sandboxie/core/dll/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,11 @@ _FX BOOL Kernel_GetVolumeInformationByHandleW(HANDLE hFile, LPWSTR lpVolumeNameB
*lpVolumeSerialNumber = *lpCachedSerialNumber;
else
{
*lpVolumeSerialNumber = Dll_rand();
DWORD conf = SbieApi_QueryConfNumber(NULL, L"DiskSerialNumberValue", 0);
if (conf == 0)
*lpVolumeSerialNumber = Dll_rand();
else
*lpVolumeSerialNumber = conf;

map_insert(&Kernel_DiskSN, key, lpVolumeSerialNumber, sizeof(DWORD));
}
Expand Down