diff --git a/README.md b/README.md index 0b772eb..479d6a9 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,10 @@ See the [statistics](generate_statistics.sh) script. #### Recent Statistics Snapshot ``` -Number of unique weak PRNG Bitcoin wallet addresses: 264934 -Prefix 1: 4318 -Prefix 3: 245200 -Prefix bc1q: 15415 +Number of unique weak PRNG Bitcoin wallet addresses: 266966 +Prefix 1: 4331 +Prefix 3: 245265 +Prefix bc1q: 17369 Prefix bc1p: 1 Number of unique weak PRNG Ethereum wallet addresses: 8938 @@ -27,6 +27,8 @@ Prefix bc1q: 94 Prefix bc1p: 0 Number of unique weak brainwallet Ethereum wallet addresses: 160 + +Number of unique weak brainwallet Litecoin wallet addresses: 48 ``` This may be outdated. diff --git a/generate_statistics.sh b/generate_statistics.sh index e898c47..48ca887 100755 --- a/generate_statistics.sh +++ b/generate_statistics.sh @@ -1,8 +1,10 @@ #!/bin/bash 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) 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 "${bitcoin_address_list_rng}" | wc -l @@ -29,3 +31,7 @@ echo "" echo -n "Number of unique weak brainwallet Ethereum wallet addresses: " echo "${ethereum_address_list_brainwallet}" | wc -l echo "" + +echo -n "Number of unique weak brainwallet Litecoin wallet addresses: " +echo "${litecoin_address_list_brainwallet}" | wc -l +echo ""