6
0
mirror of https://github.com/avast/ioc synced 2024-06-30 18:51:19 +00:00
ioc-collection/MyKings-clipboard-stealer/extras/README.md

31 lines
800 B
Markdown
Raw Normal View History

2021-10-07 19:00:13 +00:00
# Script for querying information about how muh crypto money wallets received
Data received should be in a json format where wallet addresses are objects containing information
about them. Information must contain "currency" with a correct tag, because script queries only
2021-10-12 08:18:21 +00:00
one API at a time based on that tag. The "currency" is a list in a case when one address may
belong to multiple cryptocurrencies.
2021-10-12 08:10:06 +00:00
<br/>
2021-10-12 08:09:25 +00:00
<br/>
2021-10-07 19:00:13 +00:00
Example input:
2021-10-12 08:19:42 +00:00
2021-10-12 08:09:25 +00:00
```
2021-10-07 19:00:13 +00:00
{
"wallet_address" :
{
"currency": ["Bitcoin"],
"samples": [sha1, sha2, sha3, sha4],
"any_other_info" : "useful information"
},
"wallet_address2" :
{
"currency": ["Ethereum"]
}
}
2021-10-12 08:09:25 +00:00
```
<br/>
2021-10-07 19:00:13 +00:00
Script can be run from console with following command:
2021-10-12 08:19:42 +00:00
2021-10-07 19:00:13 +00:00
```
> wallet_gain.py -if ./wallets_tagged.json -of ./wallet_gains.json
```