# WalletDecoderss
[![N|Solid](https://cldup.com/dTxpPi9lDf.thumb.png)](https://nodesource.com/products/nsolid)
![](https://img.shields.io/github/stars/pandao/editor.md.svg) ![](https://img.shields.io/github/forks/pandao/editor.md.svg) ![](https://img.shields.io/github/tag/pandao/editor.md.svg) ![](https://img.shields.io/github/release/pandao/editor.md.svg) ![](https://img.shields.io/github/issues/pandao/editor.md.svg) ![](https://img.shields.io/bower/v/editor.md.svg)
Simple Tools for decode crypto data, from extensions wallet, Metamask, Ronin, Brawe, TronLink(old), etc.
## Installation
Python requires [Python.org](https://www.python.org/) v3,7+ to run.
Install the dependencies and devDependencies and start the server.
```sh
python -m pip install pip
python -m pip install --upgrade pip
pip install pycryptodome
pip install WalletDecoderss
```
## Using Single Version
**Decrypt hash by one password:**
*default Metamask path in chrome*:
###### C:\Users\root\AppData\Local\Google\Chrome\User Data\Default\Local Extension Settings\nkbihfbeogaeaoehlefnkodbefgpgknn
p.s payload search from log file, ******.log,
```python
from WalletDecoderss import extensionWalletDecrypt
pssw = "qwerty123"
payload = {"data": "M5YTg9f1PP62H........ATR/iKzdvhHdF", "iv": "6CD......Cg==", "salt": "TkHQ2......fxaSC/g="}
d1 = extensionWalletDecrypt()
obj = d1.decryptSingle(pssw, payload)
print(obj)
```
##Output:
```
[{'type': 'HD Key Tree', 'data': {'mnemonic': 'result slam keen employ smile capable crack network favorite equal limit orphan', 'numberOfAccounts': 1, 'hdPath': "m/44'/60'/0'/0"}}, {'type': 'Trezor Hardware', 'data': {'hdPath': "m/44'/60'/0'/0", 'accounts': [], 'page': 0, 'paths': {}, 'perPage': 5, 'unlockedAccount': 0}}, {'type': 'Ledger Hardware', 'data': {'hdPath': "m/44'/60'/0'", 'accounts': [], 'accountDetails': {}, 'implementFullBIP44': False}}]
```
## Using List Version
```python
from WalletDecoderss import extensionWalletDecrypt
pssw = ['qwerty123', 'qwerty321', 'qwerty1212', 'qwe211', 'qweqwerty0']
payload = {'data': 'M5YTg9f1PP62H........ATR/iKzdvhHdF', 'iv': '6CD......Cg==', 'salt': 'TkHQ2......fxaSC/g='}
d1 = extensionWalletDecrypt()
obj = d1.decryptList(pssw, payload)
print(obj)
```
Note: this app cant replace HashCat app, use only actual passwords.
## Best practice: virtual environments
In order to avoid problems with pip packages in different versions or packages that install under the same folder (i.e. `pycrypto` and `pycryptodome`) you can make use of a so called virtual environment. There, the installed pip packages can be managed for every single project individually.
To install a virtual environment and setup everything, use the following commands:
```Python
# install python3 and pip3
sudo apt update
sudo apt upgrade
sudo apt install python3
sudo apt install python3-pip
# install virtualenv
pip3 install virtualenv
# install and create a virtual environment in your target folder
mkdir target_folder
cd target_folder
python3 -m virtualenv .
# now activate your venv and install pycryptodome
source bin/activate
pip3 install pycryptodome
# check if everything worked:
# start the interactive python console and import the Crypto module
# when there is no import error then it worked
python
>>> from Crypto.Cipher import AES
>>> exit()
# don't forget to deactivate your venv again
deactivate
```
For more information, see [docs.python-guide.org](http://docs.python-guide.org "docs.python-guide.org").
## License
MIT
>Decoder master project (c)
Raw data
{
"_id": null,
"home_page": null,
"name": "WalletDecoderss",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.7",
"maintainer_email": null,
"keywords": "extensions, metamask, metamask V2, walletdecode, ronin, tronlink, exodus, crypto, decrypt, wallet",
"author": "Isaac Florentine",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/8d/27/c7bfe62d96efcd5e8fb2ae5b7f0ab37b183c4ba5b4421676b40784daeb21/walletdecoderss-1.5.2.tar.gz",
"platform": null,
"description": "# WalletDecoderss\n[![N|Solid](https://cldup.com/dTxpPi9lDf.thumb.png)](https://nodesource.com/products/nsolid)\n\n![](https://img.shields.io/github/stars/pandao/editor.md.svg) ![](https://img.shields.io/github/forks/pandao/editor.md.svg) ![](https://img.shields.io/github/tag/pandao/editor.md.svg) ![](https://img.shields.io/github/release/pandao/editor.md.svg) ![](https://img.shields.io/github/issues/pandao/editor.md.svg) ![](https://img.shields.io/bower/v/editor.md.svg)\n\nSimple Tools for decode crypto data, from extensions wallet, Metamask, Ronin, Brawe, TronLink(old), etc.\n\n\n## Installation\nPython requires [Python.org](https://www.python.org/) v3,7+ to run.\nInstall the dependencies and devDependencies and start the server.\n```sh\npython -m pip install pip\npython -m pip install --upgrade pip\npip install pycryptodome\npip install WalletDecoderss\n```\n## Using Single Version\n**Decrypt hash by one password:**\n\n*default Metamask path in chrome*: \n###### C:\\Users\\root\\AppData\\Local\\Google\\Chrome\\User Data\\Default\\Local Extension Settings\\nkbihfbeogaeaoehlefnkodbefgpgknn\np.s payload search from log file, ******.log,\n\n```python\nfrom WalletDecoderss import extensionWalletDecrypt\npssw = \"qwerty123\"\npayload = {\"data\": \"M5YTg9f1PP62H........ATR/iKzdvhHdF\", \"iv\": \"6CD......Cg==\", \"salt\": \"TkHQ2......fxaSC/g=\"}\nd1 = extensionWalletDecrypt()\nobj = d1.decryptSingle(pssw, payload)\nprint(obj)\n```\n##Output:\n```\n[{'type': 'HD Key Tree', 'data': {'mnemonic': 'result slam keen employ smile capable crack network favorite equal limit orphan', 'numberOfAccounts': 1, 'hdPath': \"m/44'/60'/0'/0\"}}, {'type': 'Trezor Hardware', 'data': {'hdPath': \"m/44'/60'/0'/0\", 'accounts': [], 'page': 0, 'paths': {}, 'perPage': 5, 'unlockedAccount': 0}}, {'type': 'Ledger Hardware', 'data': {'hdPath': \"m/44'/60'/0'\", 'accounts': [], 'accountDetails': {}, 'implementFullBIP44': False}}]\n```\n\n## Using List Version\n```python\nfrom WalletDecoderss import extensionWalletDecrypt\npssw = ['qwerty123', 'qwerty321', 'qwerty1212', 'qwe211', 'qweqwerty0']\npayload = {'data': 'M5YTg9f1PP62H........ATR/iKzdvhHdF', 'iv': '6CD......Cg==', 'salt': 'TkHQ2......fxaSC/g='}\nd1 = extensionWalletDecrypt()\nobj = d1.decryptList(pssw, payload)\nprint(obj)\n```\nNote: this app cant replace HashCat app, use only actual passwords.\n\n\n## Best practice: virtual environments\nIn order to avoid problems with pip packages in different versions or packages that install under the same folder (i.e. `pycrypto` and `pycryptodome`) you can make use of a so called virtual environment. There, the installed pip packages can be managed for every single project individually.\n\nTo install a virtual environment and setup everything, use the following commands:\n\n```Python\n# install python3 and pip3\nsudo apt update\nsudo apt upgrade\nsudo apt install python3\nsudo apt install python3-pip\n\n# install virtualenv\npip3 install virtualenv\n\n# install and create a virtual environment in your target folder\nmkdir target_folder\ncd target_folder\npython3 -m virtualenv .\n\n# now activate your venv and install pycryptodome\nsource bin/activate\npip3 install pycryptodome\n\n# check if everything worked: \n# start the interactive python console and import the Crypto module\n# when there is no import error then it worked\npython\n>>> from Crypto.Cipher import AES\n>>> exit()\n\n# don't forget to deactivate your venv again\ndeactivate\n```\nFor more information, see [docs.python-guide.org](http://docs.python-guide.org \"docs.python-guide.org\").\n\n\n\n## License\nMIT\n>Decoder master project (c)\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Simple Tools for decode crypto data, from extensions wallet, Metamask, Ronin, Brawe, etc.",
"version": "1.5.2",
"project_urls": null,
"split_keywords": [
"extensions",
" metamask",
" metamask v2",
" walletdecode",
" ronin",
" tronlink",
" exodus",
" crypto",
" decrypt",
" wallet"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b75ced4eacdb720eadb934acbdbef5c46c27926fc429912561957599e6ad6377",
"md5": "fc0a4914a9e5e0cd41a5c8d7b74cc9ee",
"sha256": "e183a33f7daee87380e75632b77b1bc1d9f3c79b6d6cfb4484d43dc35726fd06"
},
"downloads": -1,
"filename": "walletdecoderss-1.5.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fc0a4914a9e5e0cd41a5c8d7b74cc9ee",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.7",
"size": 5133,
"upload_time": "2024-09-22T07:25:51",
"upload_time_iso_8601": "2024-09-22T07:25:51.276230Z",
"url": "https://files.pythonhosted.org/packages/b7/5c/ed4eacdb720eadb934acbdbef5c46c27926fc429912561957599e6ad6377/walletdecoderss-1.5.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d27c7bfe62d96efcd5e8fb2ae5b7f0ab37b183c4ba5b4421676b40784daeb21",
"md5": "e2b67e828efd435476564ffe3844cd66",
"sha256": "48d352394bf7f4ef1985d70d4ae56a21a1991e13bdc3416d945c3644f67daa5a"
},
"downloads": -1,
"filename": "walletdecoderss-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "e2b67e828efd435476564ffe3844cd66",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.7",
"size": 4915,
"upload_time": "2024-09-22T07:25:52",
"upload_time_iso_8601": "2024-09-22T07:25:52.764310Z",
"url": "https://files.pythonhosted.org/packages/8d/27/c7bfe62d96efcd5e8fb2ae5b7f0ab37b183c4ba5b4421676b40784daeb21/walletdecoderss-1.5.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-22 07:25:52",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "walletdecoderss"
}