Giter VIP home page Giter VIP logo

chromepassworddumper's Introduction

ChromePasswordDumper

ChromePasswordDumper is a portable tool to allow the recovery of passwords from Google Chrome for Windows using PSSQlite.

Setup

Copy the ChromePasswordDumper folder into the root directory of your memory stick like so: enter image description here

Make sure external library for the windows version PSSQlite is up to date.

How it works

Google Stores the details for saved passwords in a SQLite Database called Login Data which holds encrypted password information. How these encrypted passwords are generated is dependant on the given OS.

Once the program has run it will place the exctracted data into a file called (Current User)-pwd.txt e.g JossMoff-pwd.txt. The ouput file has this format:

+----------------+--+-----------+--+-----------+
| Website        |  | Username* |  | Password* |
+----------------+--+-----------+--+-----------+
| www.github.com |  | JossMoff  |  | 12345     |
+----------------+--+-----------+--+-----------+
| www.nectar.com |  |           |  |           |
+----------------+--+-----------+--+-----------+


* - May not have an entry

Windows

In windows, Login Data is stored at: %LocalAppData%\Google\Chrome\User Data\Default\Login Data

The password is encrypted using the Windows function CryptProtectData. Avoiding complexities, we need to use the counterpart to this function CryptUnprotectData in order to decode the passwords.

In order to do this, we call a Powershell instance from run.bat with the following code: powershell.exe -noprofile -executionpolicy bypass -file .\windows.ps1 allowing us to run our ps1 script by bypassing execution policies.

Further Improvements

How I plan to extend the quick project:

  • Change the code so the main folder does not need to be in the root directory of the memory stick.
  • Provide OS X support
  • Provide Linux Support

chromepassworddumper's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

chromepassworddumper's Issues

Not working for me. Im on win11

powershell.exe -noprofile -executionpolicy bypass -file .\windows.ps1
Exception calling "Unprotect" with "3" argument(s): "The parameter is incorrect.
"
At C:\Users\Hamz2\Downloads\ChromePasswordDumper-master\ChromePasswordDumper\windows.ps1:37 char:3

  • $data[$i].password_value = (([Text.Encoding]::ASCII).GetString([Se ...
  • + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : CryptographicException
    
    

Exception calling "Unprotect" with "3" argument(s): "The parameter is incorrect.
"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.