Changeset 60733 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 28, 2016 11:46:00 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPR3HardenedMain-win.cpp
r60700 r60733 368 368 /** Digital guardian. */ 369 369 #define SUPHARDNT_ADVERSARY_DIGITAL_GUARDIAN RT_BIT_32(13) 370 /** Cylance protect or something (from googling, no available sample copy ). */ 371 #define SUPHARDNT_CYLANCE RT_BIT_32(14) 370 /** Cylance protect or something (from googling, no available sample copy). */ 371 #define SUPHARDNT_ADVERSARY_CYLANCE RT_BIT_32(14) 372 /** BeyondTrust / PowerBroker / something (googling, no available sample copy). */ 373 #define SUPHARDNT_ADVERSARY_BEYONDTRUST RT_BIT_32(15) 372 374 /** Unknown adversary detected while waiting on child. */ 373 375 #define SUPHARDNT_ADVERSARY_UNKNOWN RT_BIT_32(31) … … 5222 5224 { SUPHARDNT_ADVERSARY_DIGITAL_GUARDIAN, "dgmaster" }, /* Not verified. */ 5223 5225 5224 { SUPHARDNT_CYLANCE, "cyprotectdrv" }, /* Not verified. */ 5226 { SUPHARDNT_ADVERSARY_CYLANCE, "cyprotectdrv" }, /* Not verified. */ 5227 5228 { SUPHARDNT_ADVERSARY_BEYONDTRUST, "privman" }, /* Not verified. */ 5225 5229 }; 5226 5230 … … 5338 5342 { SUPHARDNT_ADVERSARY_DIGITAL_GUARDIAN, L"\\SystemRoot\\System32\\drivers\\dgmaster.sys" }, 5339 5343 5340 { SUPHARDNT_CYLANCE, L"\\SystemRoot\\System32\\drivers\\cyprotectdrv32.sys" }, 5341 { SUPHARDNT_CYLANCE, L"\\SystemRoot\\System32\\drivers\\cyprotectdrv64.sys" }, 5344 { SUPHARDNT_ADVERSARY_CYLANCE, L"\\SystemRoot\\System32\\drivers\\cyprotectdrv32.sys" }, 5345 { SUPHARDNT_ADVERSARY_CYLANCE, L"\\SystemRoot\\System32\\drivers\\cyprotectdrv64.sys" }, 5346 5347 { SUPHARDNT_ADVERSARY_BEYONDTRUST, L"\\SystemRoot\\System32\\drivers\\privman.sys" }, 5348 { SUPHARDNT_ADVERSARY_BEYONDTRUST, L"\\SystemRoot\\System32\\privman64.dll" }, 5349 { SUPHARDNT_ADVERSARY_BEYONDTRUST, L"\\SystemRoot\\System32\\privman32.dll" }, 5342 5350 }; 5343 5351
Note:
See TracChangeset
for help on using the changeset viewer.