Metadata-Version: 2.1
Name: ChromePasswordsStealer
Version: 1.0.2
Summary: This module steals chrome and chromium passwords on Windows
Home-page: https://github.com/mauricelambert/ChromePasswordsStealer
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
Maintainer: Maurice Lambert
Maintainer-email: mauricelambert434@gmail.com
License: GPL-3.0 License
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/ChromePasswordsStealer.html
Project-URL: Python Executable, https://mauricelambert.github.io/info/python/security/ChromePasswordsStealer.pyz
Project-URL: Windows Executable - Github, https://github.com/mauricelambert/ChromePasswordsStealer/releases/latest
Project-URL: Windows Executable - SourceForge, https://sourceforge.net/projects/chromepasswordsstealer/files/latest/download
Keywords: Chrome,Google,Passwords,Decrypt,Steal,Recovery,Security
Platform: Windows
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Topic :: Security
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

![ChromePasswordsStealer logo](https://mauricelambert.github.io/info/python/security/ChromePasswordsStealer_small.png "ChromePasswordsStealer logo")

# ChromePasswordsStealer

## Description

This module steals chrome and chromium passwords on Windows.

## Requirements

This package require:
 - python3
 - python3 Standard Library
 - pywin32
 - PythonToolsKit
 - PyCryptodome

## Installation

```bash
pip install ChromePasswordsStealer
```

## Usages

## Command lines

```bash
# Python executable
python3 ChromePasswordsStealer.pyz -h
# or
chmod u+x ChromePasswordsStealer.pyz
./ChromePasswordsStealer.pyz --help

# Python module
python3 -m ChromePasswordsStealer

# Entry point (console)
ChromeStealer --save-all --window -f passwords
```

### Python script

```python
from ChromePasswordsStealer import ChromePasswordsStealer
stealer = ChromePasswordsStealer()
stealer = ChromiumPasswordsStealer("passwords", True)
stealer.get_database_cursor()
stealer.get_key()
for url, username, password in stealer.get_credentials():
    print(url, username, password)

stealer.save_and_clean()
```

## Help

```text
~# python3 ChromePasswordsStealer.py -h

usage: ChromePasswordsStealer.py [-h] [--filename FILENAME] [--window] [--save-all]

This program steals Chrome passwords on Windows.

optional arguments:
  -h, --help            show this help message and exit
  --filename FILENAME, -f FILENAME
                        The filename to export the credentials.
  --window, -w          Do not hide the console.
  --save-all, -s        Save chrome db, key file and key.
```

## Links

 - [Github Page](https://github.com/mauricelambert/ChromePasswordsStealer/)
 - [Documentation](https://mauricelambert.github.io/info/python/security/ChromePasswordsStealer.html)
 - [Python Executable](https://mauricelambert.github.io/info/python/security/ChromePasswordsStealer.pyz)
 - [Windows Executable - Github](https://github.com/mauricelambert/ChromePasswordsStealer/releases/latest)
 - [Windows Executable - SourceForge](https://sourceforge.net/projects/chromepasswordsstealer/files/latest/download)
 - [Pypi package](https://pypi.org/project/ChromePasswordsStealer/)

## Licence

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).


