├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SharpChrome ├── Commands │ ├── Backupkey.cs │ ├── Cookies.cs │ ├── ICommand.cs │ ├── Logins.cs │ └── Statekeys.cs ├── Domain │ ├── ArgumentParser.cs │ ├── ArgumentParserResult.cs │ ├── CommandCollection.cs │ └── Info.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLite │ ├── SQLite.cs │ └── csharp-sqlite-src │ │ ├── BtreeInt_h.cs │ │ ├── Btree_h.cs │ │ ├── Delegates.cs │ │ ├── Hash_h.cs │ │ ├── VdbeInt_h.cs │ │ ├── Vdbe_h.cs │ │ ├── _Custom.cs │ │ ├── alter_c.cs │ │ ├── analyze_c.cs │ │ ├── attach_c.cs │ │ ├── auth_c.cs │ │ ├── backup_c.cs │ │ ├── bitvec_c.cs │ │ ├── btmutex_c.cs │ │ ├── btree_c.cs │ │ ├── build_c.cs │ │ ├── callback_c.cs │ │ ├── complete_c.cs │ │ ├── crypto.cs │ │ ├── ctime_c.cs │ │ ├── date_c.cs │ │ ├── delete_c.cs │ │ ├── expr_c.cs │ │ ├── fault_c.cs │ │ ├── fkey_c.cs │ │ ├── func_c.cs │ │ ├── global_c.cs │ │ ├── hash_c.cs │ │ ├── hwtime_c.cs │ │ ├── insert_c.cs │ │ ├── journal_c.cs │ │ ├── keywordhash_h.cs │ │ ├── legacy_c.cs │ │ ├── loadext_c.cs │ │ ├── main_c.cs │ │ ├── malloc_c.cs │ │ ├── mem_Pool.cs │ │ ├── memjournal_c.cs │ │ ├── mutex_h.cs │ │ ├── mutex_noop_c.cs │ │ ├── notify_c.cs │ │ ├── opcodes_c.cs │ │ ├── opcodes_h.cs │ │ ├── os_c.cs │ │ ├── os_common_h.cs │ │ ├── os_h.cs │ │ ├── os_win_c.cs │ │ ├── pager_c.cs │ │ ├── pager_h.cs │ │ ├── parse_c.cs │ │ ├── parse_h.cs │ │ ├── pcache1_c.cs │ │ ├── pcache_c.cs │ │ ├── pcache_h.cs │ │ ├── pragma_c.cs │ │ ├── prepare_c.cs │ │ ├── printf_c.cs │ │ ├── random_c.cs │ │ ├── resolve_c.cs │ │ ├── rowset_c.cs │ │ ├── select_c.cs │ │ ├── sqlite3_h.cs │ │ ├── sqliteInt_h.cs │ │ ├── sqliteLimit_h.cs │ │ ├── status_c.cs │ │ ├── table_c.cs │ │ ├── tokenize_c.cs │ │ ├── trigger_c.cs │ │ ├── update_c.cs │ │ ├── utf_c.cs │ │ ├── util_c.cs │ │ ├── vacuum_c.cs │ │ ├── vdbe_c.cs │ │ ├── vdbeapi_c.cs │ │ ├── vdbeaux_c.cs │ │ ├── vdbeblob_c.cs │ │ ├── vdbemem_c.cs │ │ ├── vdbetrace_c.cs │ │ ├── vtab_c.cs │ │ ├── wal_c.cs │ │ ├── wal_h.cs │ │ ├── walker_c.cs │ │ └── where_c.cs ├── SharpChrome.csproj ├── app.config └── lib │ ├── Bcrypt.cs │ └── Chrome.cs ├── SharpDPAPI.sln └── SharpDPAPI ├── Commands ├── Backupkey.cs ├── Blob.cs ├── Certificate.cs ├── Credentials.cs ├── ICommand.cs ├── Keepass.cs ├── Machinecredentials.cs ├── Machinemasterkeys.cs ├── Machinetriage.cs ├── Machinevaults.cs ├── Masterkeys.cs ├── PS.cs ├── RDG.cs ├── SCCM.cs ├── Search.cs ├── Triage.cs └── Vaults.cs ├── Domain ├── ArgumentParser.cs ├── ArgumentParserResult.cs ├── CommandCollection.cs ├── Info.cs └── Version.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpDPAPI.csproj ├── app.config └── lib ├── Backup.cs ├── BigInteger.cs ├── Bkrp.cs ├── Certificate.cs ├── Crypto.cs ├── Dpapi.cs ├── Helpers.cs ├── Interop.cs ├── LSADump.cs ├── PBKDF2.cs ├── Triage.cs └── Tuple.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/README.md -------------------------------------------------------------------------------- /SharpChrome/Commands/Backupkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Commands/Backupkey.cs -------------------------------------------------------------------------------- /SharpChrome/Commands/Cookies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Commands/Cookies.cs -------------------------------------------------------------------------------- /SharpChrome/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Commands/ICommand.cs -------------------------------------------------------------------------------- /SharpChrome/Commands/Logins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Commands/Logins.cs -------------------------------------------------------------------------------- /SharpChrome/Commands/Statekeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Commands/Statekeys.cs -------------------------------------------------------------------------------- /SharpChrome/Domain/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Domain/ArgumentParser.cs -------------------------------------------------------------------------------- /SharpChrome/Domain/ArgumentParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Domain/ArgumentParserResult.cs -------------------------------------------------------------------------------- /SharpChrome/Domain/CommandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Domain/CommandCollection.cs -------------------------------------------------------------------------------- /SharpChrome/Domain/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Domain/Info.cs -------------------------------------------------------------------------------- /SharpChrome/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Program.cs -------------------------------------------------------------------------------- /SharpChrome/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/SQLite.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/BtreeInt_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/BtreeInt_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/Btree_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/Btree_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/Delegates.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/Hash_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/Hash_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/VdbeInt_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/VdbeInt_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/Vdbe_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/Vdbe_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/_Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/_Custom.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/alter_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/alter_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/analyze_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/analyze_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/attach_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/attach_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/auth_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/auth_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/backup_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/backup_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/bitvec_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/bitvec_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/btmutex_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/btmutex_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/btree_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/btree_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/build_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/build_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/callback_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/callback_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/complete_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/complete_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/crypto.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/ctime_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/ctime_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/date_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/date_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/delete_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/delete_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/expr_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/expr_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/fault_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/fault_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/fkey_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/fkey_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/func_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/func_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/global_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/global_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/hash_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/hash_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/hwtime_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/hwtime_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/insert_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/insert_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/journal_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/journal_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/keywordhash_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/keywordhash_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/legacy_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/legacy_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/loadext_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/loadext_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/main_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/main_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/malloc_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/malloc_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/mem_Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/mem_Pool.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/memjournal_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/memjournal_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/mutex_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/mutex_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/mutex_noop_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/mutex_noop_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/notify_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/notify_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/opcodes_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/opcodes_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/opcodes_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/opcodes_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/os_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/os_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/os_common_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/os_common_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/os_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/os_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/os_win_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/os_win_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pager_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pager_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pager_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pager_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/parse_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/parse_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/parse_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/parse_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pcache1_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pcache1_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pcache_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pcache_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pcache_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pcache_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/pragma_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/pragma_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/prepare_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/prepare_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/printf_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/printf_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/random_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/random_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/resolve_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/resolve_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/rowset_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/rowset_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/select_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/select_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/sqlite3_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/sqlite3_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/sqliteInt_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/sqliteInt_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/sqliteLimit_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/sqliteLimit_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/status_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/status_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/table_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/table_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/tokenize_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/tokenize_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/trigger_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/trigger_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/update_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/update_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/utf_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/utf_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/util_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/util_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vacuum_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vacuum_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbe_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbe_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbeapi_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbeapi_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbeaux_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbeaux_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbeblob_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbeblob_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbemem_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbemem_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vdbetrace_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vdbetrace_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/vtab_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/vtab_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/wal_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/wal_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/wal_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/wal_h.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/walker_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/walker_c.cs -------------------------------------------------------------------------------- /SharpChrome/SQLite/csharp-sqlite-src/where_c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SQLite/csharp-sqlite-src/where_c.cs -------------------------------------------------------------------------------- /SharpChrome/SharpChrome.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/SharpChrome.csproj -------------------------------------------------------------------------------- /SharpChrome/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/app.config -------------------------------------------------------------------------------- /SharpChrome/lib/Bcrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/lib/Bcrypt.cs -------------------------------------------------------------------------------- /SharpChrome/lib/Chrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpChrome/lib/Chrome.cs -------------------------------------------------------------------------------- /SharpDPAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI.sln -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Backupkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Backupkey.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Blob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Blob.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Certificate.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Credentials.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/ICommand.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Keepass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Keepass.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Machinecredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Machinecredentials.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Machinemasterkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Machinemasterkeys.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Machinetriage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Machinetriage.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Machinevaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Machinevaults.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Masterkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Masterkeys.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/PS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/PS.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/RDG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/RDG.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/SCCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/SCCM.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Search.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Triage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Triage.cs -------------------------------------------------------------------------------- /SharpDPAPI/Commands/Vaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Commands/Vaults.cs -------------------------------------------------------------------------------- /SharpDPAPI/Domain/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Domain/ArgumentParser.cs -------------------------------------------------------------------------------- /SharpDPAPI/Domain/ArgumentParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Domain/ArgumentParserResult.cs -------------------------------------------------------------------------------- /SharpDPAPI/Domain/CommandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Domain/CommandCollection.cs -------------------------------------------------------------------------------- /SharpDPAPI/Domain/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Domain/Info.cs -------------------------------------------------------------------------------- /SharpDPAPI/Domain/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Domain/Version.cs -------------------------------------------------------------------------------- /SharpDPAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Program.cs -------------------------------------------------------------------------------- /SharpDPAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpDPAPI/SharpDPAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/SharpDPAPI.csproj -------------------------------------------------------------------------------- /SharpDPAPI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/app.config -------------------------------------------------------------------------------- /SharpDPAPI/lib/Backup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Backup.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/BigInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/BigInteger.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Bkrp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Bkrp.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Certificate.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Crypto.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Dpapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Dpapi.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Helpers.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Interop.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/LSADump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/LSADump.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/PBKDF2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/PBKDF2.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Triage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Triage.cs -------------------------------------------------------------------------------- /SharpDPAPI/lib/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpDPAPI/HEAD/SharpDPAPI/lib/Tuple.cs --------------------------------------------------------------------------------