Skip to content

Commit

Permalink
kerberos::golden : fix for groups printing.
Browse files Browse the repository at this point in the history
  • Loading branch information
gentilkiwi committed Sep 1, 2015
1 parent ecf3fd5 commit bea89c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mimikatz/modules/kerberos/kuhl_m_kerberos.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ NTSTATUS kuhl_m_kerberos_golden(int argc, wchar_t * argv[])
L"User Id : %u\n", szUser, szDomain, szSid, id);
kprintf(L"Groups Id : *");
for(i = 0; i < nbGroups; i++)
kprintf(L"%u ", groups[i]);
kprintf(L"%u ", groups[i].RelativeId);
if(nbSids)
{
kprintf(L"\nExtra SIDs: ");
Expand Down

0 comments on commit bea89c6

Please sign in to comment.