File tree 1 file changed +8
-1
lines changed
crates/pedm-simulator/src
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -26,19 +26,26 @@ fn main() -> anyhow::Result<()> {
26
26
. context ( "open current process token" ) ?;
27
27
28
28
// Verify that the current account is assigned with the SE_CREATE_TOKEN_NAME privilege.
29
- println ! ( "Attempting to verify whether the current account is assigned with the SE_CREATE_TOKEN_NAME privilege " ) ;
29
+ println ! ( "Retrieve the current account name... " ) ;
30
30
let account_username =
31
31
get_username ( Security :: Authentication :: Identity :: NameSamCompatible ) . context ( "retrieve account username" ) ?;
32
32
println ! ( "Account name: {account_username:?}" ) ;
33
33
34
34
match lookup_account_by_name ( & account_username) {
35
35
Ok ( account) => {
36
+ // Verify that the current account is assigned with the SE_CREATE_TOKEN_NAME privilege.
37
+ println ! (
38
+ "Attempting to verify whether the current account is assigned with the SE_CREATE_TOKEN_NAME privilege"
39
+ ) ;
40
+
36
41
let rights = enumerate_account_rights ( & account. sid )
37
42
. with_context ( || format ! ( "enumerate account rights for {account_username:?}" ) ) ?;
38
43
let has_create_token_right = rights. iter ( ) . any ( |right| right == u16cstr ! ( "SeCreateTokenPrivilege" ) ) ;
44
+ println ! ( "Has SeCreateTokenPrivilege right? {has_create_token_right}" ) ;
39
45
40
46
if expect_elevation {
41
47
assert ! ( has_create_token_right) ;
48
+ println ! ( "Current user is assigned the SeCreateTokenPrivilege right. Enabling it..." ) ;
42
49
43
50
// SE_CREATE_TOKEN_NAME is required for performing the elevation.
44
51
let se_create_token_name_luid =
You can’t perform that action at this time.
0 commit comments