Update statistics
This commit is contained in:
parent
44a4bcdec3
commit
22be78314a
10
README.md
10
README.md
|
@ -12,10 +12,10 @@ See the [statistics](generate_statistics.sh) script.
|
||||||
|
|
||||||
#### Recent Statistics Snapshot
|
#### Recent Statistics Snapshot
|
||||||
```
|
```
|
||||||
Number of unique weak PRNG Bitcoin wallet addresses: 264934
|
Number of unique weak PRNG Bitcoin wallet addresses: 266966
|
||||||
Prefix 1: 4318
|
Prefix 1: 4331
|
||||||
Prefix 3: 245200
|
Prefix 3: 245265
|
||||||
Prefix bc1q: 15415
|
Prefix bc1q: 17369
|
||||||
Prefix bc1p: 1
|
Prefix bc1p: 1
|
||||||
|
|
||||||
Number of unique weak PRNG Ethereum wallet addresses: 8938
|
Number of unique weak PRNG Ethereum wallet addresses: 8938
|
||||||
|
@ -27,6 +27,8 @@ Prefix bc1q: 94
|
||||||
Prefix bc1p: 0
|
Prefix bc1p: 0
|
||||||
|
|
||||||
Number of unique weak brainwallet Ethereum wallet addresses: 160
|
Number of unique weak brainwallet Ethereum wallet addresses: 160
|
||||||
|
|
||||||
|
Number of unique weak brainwallet Litecoin wallet addresses: 48
|
||||||
```
|
```
|
||||||
This may be outdated.
|
This may be outdated.
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
bitcoin_address_list_rng=$(find ./ -iname "victim*addresses*bitcoin*" -exec cat {} \; | sort -u)
|
bitcoin_address_list_rng=$(find ./ -iname "victim*addresses*bitcoin*" -exec cat {} \; | sort -u)
|
||||||
|
|
||||||
bitcoin_address_list_brainwallet=$(find ./ -iname "brainwallet*victim*addr*bitcoin*" -exec cat {} \; | sort -u)
|
bitcoin_address_list_brainwallet=$(find ./ -iname "brainwallet*victim*addr*bitcoin*" -exec cat {} \; | sort -u)
|
||||||
ethereum_address_list_brainwallet=$(find ./ -iname "brainwallet*victim*addr*eth*" -exec cat {} \; | sort -u)
|
ethereum_address_list_brainwallet=$(find ./ -iname "brainwallet*victim*addr*eth*" -exec cat {} \; | sort -u)
|
||||||
|
litecoin_address_list_brainwallet=$(find ./ -iname "brainwallet*victim*addr*litecoin*" -exec cat {} \; | sort -u)
|
||||||
|
|
||||||
echo -n "Number of unique weak PRNG Bitcoin wallet addresses: "
|
echo -n "Number of unique weak PRNG Bitcoin wallet addresses: "
|
||||||
echo "${bitcoin_address_list_rng}" | wc -l
|
echo "${bitcoin_address_list_rng}" | wc -l
|
||||||
|
@ -29,3 +31,7 @@ echo ""
|
||||||
echo -n "Number of unique weak brainwallet Ethereum wallet addresses: "
|
echo -n "Number of unique weak brainwallet Ethereum wallet addresses: "
|
||||||
echo "${ethereum_address_list_brainwallet}" | wc -l
|
echo "${ethereum_address_list_brainwallet}" | wc -l
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
echo -n "Number of unique weak brainwallet Litecoin wallet addresses: "
|
||||||
|
echo "${litecoin_address_list_brainwallet}" | wc -l
|
||||||
|
echo ""
|
||||||
|
|
Loading…
Reference in New Issue