-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
2,646 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
cred_backup | ||
========= | ||
Backup the passwords and other credentials stored in the Windows Credential Manager, by taking advantage of the SeTrustedCredmanAccess Privilege. | ||
|
||
Using NT* APIs as much as possible. 11kb binary | ||
|
||
## Legal disclaimer | ||
This application is intended to be a useful tool for managing your own passwords and credentials, and need to be used only by authorized users in compliance with all applicable laws and regulations. | ||
Developers assume no liability and are not responsible for any misuse or damage caused by this program! | ||
|
||
## Usage | ||
![demo](https://github.com/0x4D-5A/cred_backup/blob/main/demo.png?raw=true) | ||
|
||
## Credits | ||
[James Foreshaw](https://github.com/tyranid) *Original research* | ||
[gentilkiwi](https://github.com/gentilkiwi) *kull_m_cred.c* | ||
[malxau](https://github.com/malxau/minicrt) *minicrt* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.31624.102 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cred_backup", "cred_backup.vcxproj", "{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Debug|x64.ActiveCfg = Debug|x64 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Debug|x64.Build.0 = Debug|x64 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Debug|x86.ActiveCfg = Debug|Win32 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Debug|x86.Build.0 = Debug|Win32 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Release|x64.ActiveCfg = Release|x64 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Release|x64.Build.0 = Release|x64 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Release|x86.ActiveCfg = Release|Win32 | ||
{E77AF87E-6467-4EC2-958D-4B382D1CEEB3}.Release|x86.Build.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {23472871-EBB8-4B76-BD7A-F8F6BD806F32} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.