You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pentesting-cloud/azure-security/az-privilege-escalation/az-entraid-privesc/README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -408,7 +408,21 @@ dynamic-groups.md
408
408
This permission allows to reset password to non-admin users, allowing a potential attacker to escalate privileges to other users. This permission cannot be assigned to custom roles.
409
409
410
410
```bash
411
-
az ad user update --id <user-id> --password "kweoifuh.234"
411
+
# Update user password
412
+
userId="<user-id>"
413
+
az ad user update --id $userId --password "kweoifuh.234"
414
+
415
+
# Update user password without needing to change or use MFA on next sign-in
0 commit comments