├── screenshot.png ├── ChromePasswords ├── pch.h ├── pch.cpp ├── ChromePasswords.cpp ├── ChromePasswords.vcxproj.user ├── ChromePasswords.vcxproj.filters └── ChromePasswords.vcxproj ├── README.md └── ChromePasswords.sln /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcomvetter/ChromePasswords/HEAD/screenshot.png -------------------------------------------------------------------------------- /ChromePasswords/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcomvetter/ChromePasswords/HEAD/ChromePasswords/pch.h -------------------------------------------------------------------------------- /ChromePasswords/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcomvetter/ChromePasswords/HEAD/ChromePasswords/pch.cpp -------------------------------------------------------------------------------- /ChromePasswords/ChromePasswords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcomvetter/ChromePasswords/HEAD/ChromePasswords/ChromePasswords.cpp -------------------------------------------------------------------------------- /ChromePasswords/ChromePasswords.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ChromePasswords 2 | 3 | Build in Visual Studio. 4 | 5 | This is a cleaner refactor based on several publicly available examples of Chrome Password and Cookie extraction and decryption tools. It makes a temporary copy of the sqlite DB for Chrome, opens it, queries for passwords and cookies, decrypts the secrets, and then prints them to the console. 6 | 7 | ![screenshot](screenshot.png) 8 | -------------------------------------------------------------------------------- /ChromePasswords/ChromePasswords.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | Header Files 20 | 21 | 22 | Header Files 23 | 24 | 25 | 26 | 27 | Source Files 28 | 29 | 30 | Source Files 31 | 32 | 33 | Source Files 34 | 35 | 36 | -------------------------------------------------------------------------------- /ChromePasswords.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2041 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ChromePasswords", "ChromePasswords\ChromePasswords.vcxproj", "{8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Debug|x64.ActiveCfg = Debug|x64 17 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Debug|x64.Build.0 = Debug|x64 18 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Debug|x86.ActiveCfg = Debug|Win32 19 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Debug|x86.Build.0 = Debug|Win32 20 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Release|x64.ActiveCfg = Release|x64 21 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Release|x64.Build.0 = Release|x64 22 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Release|x86.ActiveCfg = Release|Win32 23 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {70954F07-CC69-4AA8-A24D-F61B9AB37913} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /ChromePasswords/ChromePasswords.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 15.0 23 | {8D1D74A2-8C43-4471-B0D3-F4F8111B62F8} 24 | Win32Proj 25 | ChromePasswords 26 | 10.0.17134.0 27 | 28 | 29 | 30 | Application 31 | true 32 | v141 33 | Unicode 34 | 35 | 36 | Application 37 | false 38 | v141 39 | true 40 | Unicode 41 | 42 | 43 | Application 44 | true 45 | v141 46 | Unicode 47 | 48 | 49 | Application 50 | false 51 | v141 52 | true 53 | Unicode 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | true 75 | 76 | 77 | true 78 | 79 | 80 | false 81 | 82 | 83 | false 84 | 85 | 86 | 87 | Use 88 | Level3 89 | Disabled 90 | true 91 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 92 | true 93 | pch.h 94 | 95 | 96 | Console 97 | true 98 | 99 | 100 | 101 | 102 | Use 103 | Level3 104 | Disabled 105 | true 106 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 107 | true 108 | pch.h 109 | 110 | 111 | Console 112 | true 113 | 114 | 115 | 116 | 117 | Use 118 | Level3 119 | MaxSpeed 120 | true 121 | true 122 | true 123 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 124 | true 125 | pch.h 126 | 127 | 128 | Console 129 | true 130 | true 131 | true 132 | 133 | 134 | 135 | 136 | Use 137 | Level3 138 | MaxSpeed 139 | true 140 | true 141 | true 142 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 143 | true 144 | pch.h 145 | 146 | 147 | Console 148 | true 149 | true 150 | true 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | Create 161 | Create 162 | Create 163 | Create 164 | 165 | 166 | NotUsing 167 | NotUsing 168 | 169 | 170 | 171 | 172 | 173 | --------------------------------------------------------------------------------