Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4D-5A authored Feb 16, 2023
1 parent 990c91f commit 954b7b7
Show file tree
Hide file tree
Showing 12 changed files with 2,646 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
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*

31 changes: 31 additions & 0 deletions cred_backup.sln
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
Loading

0 comments on commit 954b7b7

Please sign in to comment.