WalletDecode


NameWalletDecode JSON
Version 1.4 PyPI version JSON
download
home_page
SummarySimple Tools for decode crypto data, from extensions wallet, Metamask, Ronin, Brawe, etc.
upload_time2024-03-06 09:54:36
maintainer
docs_urlNone
authorBitLogic
requires_python>=3.7,<4.0
licenseMIT
keywords extensions metamask walletdecode ronin tronlink exodus crypto decrypt wallet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # WalletDecode
[![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
```
## 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 WalletDecode 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 WalletDecode 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": "",
    "name": "WalletDecode",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "extensions,metamask,walletdecode,ronin,tronlink,exodus,crypto,decrypt,wallet",
    "author": "BitLogic",
    "author_email": "BitLogic@hash.io",
    "download_url": "https://files.pythonhosted.org/packages/43/bf/360de6d1152fb926c8f2969d3d58d3f6d836dfc7ce7917baa47c0acde4b0/walletdecode-1.4.tar.gz",
    "platform": null,
    "description": "# WalletDecode\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\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 WalletDecode 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 WalletDecode 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.4",
    "project_urls": null,
    "split_keywords": [
        "extensions",
        "metamask",
        "walletdecode",
        "ronin",
        "tronlink",
        "exodus",
        "crypto",
        "decrypt",
        "wallet"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "643eb24f41ab57b56080ec76a8e167b2a17283d5b4361cd11f4b6d125bb0293b",
                "md5": "62e9d0f4f972418f099d82def08ef7b7",
                "sha256": "9b2ec9b0e164878eda6ce33b956435ca3fe49af1356aa9310f5f710d0a32b356"
            },
            "downloads": -1,
            "filename": "walletdecode-1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "62e9d0f4f972418f099d82def08ef7b7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 5082,
            "upload_time": "2024-03-06T09:54:35",
            "upload_time_iso_8601": "2024-03-06T09:54:35.134300Z",
            "url": "https://files.pythonhosted.org/packages/64/3e/b24f41ab57b56080ec76a8e167b2a17283d5b4361cd11f4b6d125bb0293b/walletdecode-1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43bf360de6d1152fb926c8f2969d3d58d3f6d836dfc7ce7917baa47c0acde4b0",
                "md5": "fe14c60a0e7724e0b2cd19d9fe0e9404",
                "sha256": "ae7635f36dd18321770a593cd269ea7274e1cd1bbf221643a29ee846bdb2947b"
            },
            "downloads": -1,
            "filename": "walletdecode-1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "fe14c60a0e7724e0b2cd19d9fe0e9404",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 4900,
            "upload_time": "2024-03-06T09:54:36",
            "upload_time_iso_8601": "2024-03-06T09:54:36.135713Z",
            "url": "https://files.pythonhosted.org/packages/43/bf/360de6d1152fb926c8f2969d3d58d3f6d836dfc7ce7917baa47c0acde4b0/walletdecode-1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-06 09:54:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "walletdecode"
}
        
Elapsed time: 0.19980s