Skip to content

Commit dbee264

Browse files
committed
.
1 parent ec383ce commit dbee264

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

crates/pedm-simulator/src/main.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,26 @@ fn main() -> anyhow::Result<()> {
2626
.context("open current process token")?;
2727

2828
// 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...");
3030
let account_username =
3131
get_username(Security::Authentication::Identity::NameSamCompatible).context("retrieve account username")?;
3232
println!("Account name: {account_username:?}");
3333

3434
match lookup_account_by_name(&account_username) {
3535
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+
3641
let rights = enumerate_account_rights(&account.sid)
3742
.with_context(|| format!("enumerate account rights for {account_username:?}"))?;
3843
let has_create_token_right = rights.iter().any(|right| right == u16cstr!("SeCreateTokenPrivilege"));
44+
println!("Has SeCreateTokenPrivilege right? {has_create_token_right}");
3945

4046
if expect_elevation {
4147
assert!(has_create_token_right);
48+
println!("Current user is assigned the SeCreateTokenPrivilege right. Enabling it...");
4249

4350
// SE_CREATE_TOKEN_NAME is required for performing the elevation.
4451
let se_create_token_name_luid =

0 commit comments

Comments
 (0)