Skip to content

Commit

Permalink
[fix karan#107] remove _vscwprintf dependency with mimilove on Window…
Browse files Browse the repository at this point in the history
…s 2000

[credits] with his work on AD, Vincent Le Toux (@vletoux) is starring as co-author :)
[internal] DRSR RPC
[fix] dcsync export as CSV without junk chars between username and NTLM hash
  • Loading branch information
gentilkiwi committed Nov 6, 2017
1 parent 773533b commit ebcecc3
Show file tree
Hide file tree
Showing 15 changed files with 884 additions and 979 deletions.
1 change: 0 additions & 1 deletion inc/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
#define MIMIKATZ_CODENAME L"A La Vie, A L\'Amour"
#define MIMIKATZ_FULL MIMIKATZ L" " MIMIKATZ_VERSION L" (" MIMIKATZ_ARCH L") built on " TEXT(__DATE__) L" " TEXT(__TIME__)
#define MIMIKATZ_SECOND L"\"" MIMIKATZ_CODENAME L"\""
#define MIMIKATZ_SPECIAL L" "
#define MIMIKATZ_DEFAULT_LOG MIMIKATZ L".log"
#define MIMIKATZ_DRIVER L"mimidrv"
#define MIMIKATZ_KERBEROS_EXT L"kirbi"
Expand Down
10 changes: 5 additions & 5 deletions mimikatz/mimikatz.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ void mimikatz_begin()
#endif
kprintf(L"\n"
L" .#####. " MIMIKATZ_FULL L"\n"
L" .## ^ ##. " MIMIKATZ_SECOND L"\n"
L" ## / \\ ## /* * *\n"
L" ## \\ / ## Benjamin DELPY `gentilkiwi` ( benjamin@gentilkiwi.com )\n"
L" '## v ##' http://blog.gentilkiwi.com/mimikatz (oe.eo)\n"
L" '#####' " MIMIKATZ_SPECIAL L" with %2u modules * * */\n", ARRAYSIZE(mimikatz_modules));
L" .## ^ ##. " MIMIKATZ_SECOND L" - (oe.eo)\n"
L" ## / \\ ## /*** Benjamin DELPY `gentilkiwi` ( [email protected] )\n"
L" ## \\ / ## > http://blog.gentilkiwi.com/mimikatz\n"
L" '## v ##' Vincent LE TOUX ( [email protected] )\n"
L" '#####' > http://pingcastle.com / http://mysmartlogon.com ***/\n");
mimikatz_initOrClean(TRUE);
}

Expand Down
2 changes: 2 additions & 0 deletions mimikatz/mimikatz.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@
<ClCompile Include="modules\kuhl_m_ts.c" />
<ClCompile Include="modules\kuhl_m_vault.c" />
<ClCompile Include="modules\kuhl_m_minesweeper.c" />
<ClCompile Include="modules\lsadump\kuhl_m_lsadump_dc.c" />
<ClCompile Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt5.c" />
<ClCompile Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt6.c" />
<ClCompile Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt63.c" />
Expand Down Expand Up @@ -256,6 +257,7 @@
<ClInclude Include="modules\kuhl_m_ts.h" />
<ClInclude Include="modules\kuhl_m_vault.h" />
<ClInclude Include="modules\kuhl_m_minesweeper.h" />
<ClInclude Include="modules\lsadump\kuhl_m_lsadump_dc.h" />
<ClInclude Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt5.h" />
<ClInclude Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt6.h" />
<ClInclude Include="modules\sekurlsa\crypto\kuhl_m_sekurlsa_nt63.h" />
Expand Down
9 changes: 9 additions & 0 deletions mimikatz/mimikatz.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,9 @@
<ClCompile Include="modules\crypto\kuhl_m_crypto_extractor.c">
<Filter>local modules\crypto</Filter>
</ClCompile>
<ClCompile Include="modules\lsadump\kuhl_m_lsadump_dc.c">
<Filter>local modules\lsadump</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="mimikatz.h" />
Expand Down Expand Up @@ -491,6 +494,9 @@
<ClInclude Include="modules\crypto\kuhl_m_crypto_extractor.h">
<Filter>local modules\crypto</Filter>
</ClInclude>
<ClInclude Include="modules\lsadump\kuhl_m_lsadump_dc.h">
<Filter>local modules\lsadump</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="local modules">
Expand Down Expand Up @@ -525,6 +531,9 @@
<Filter Include="local modules\crypto">
<UniqueIdentifier>{de3bf270-ef33-4d83-bec2-77c4450b411a}</UniqueIdentifier>
</Filter>
<Filter Include="local modules\lsadump">
<UniqueIdentifier>{3b2bcf11-3674-4ee4-949c-491c8c5efd34}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="mimikatz.rc" />
Expand Down
Loading

0 comments on commit ebcecc3

Please sign in to comment.