mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 10:39:00 +00:00
40 lines
1.8 KiB
Bash
Executable File
40 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# usage: script.sh target-dictionary-filename
|
|
|
|
# this script searches for interesting strings in the source code and converts
|
|
# them into a standard fuzzer dictionary file.
|
|
|
|
|
|
TARGET_DIR=../tests
|
|
OUTPUT_FILE=${1:-fuzzer_crypto_tests_strings_dictionary1.txt}
|
|
|
|
# empty file
|
|
echo -n "" > $OUTPUT_FILE
|
|
|
|
# strip multiline strings and extract them
|
|
# exclude some hex strings, but allow hex strings with mixed capitalization (Ethereum, rskip60)
|
|
find $TARGET_DIR -type f | xargs cat | perl -p0e 's/"\s*\n\s*\"//smg' | grep -P -o "\"[\w ]+\"" | grep -v -P "\"(([0-9a-f][0-9a-f])+|([0-9A-F][0-9A-F])+)\"" | sort | uniq | while read -r line ; do
|
|
echo "$line" >> $OUTPUT_FILE
|
|
done
|
|
|
|
# extract individual BIP39 and SLIP39 words
|
|
# TODO are those actually valuable as fuzzer dictionary input?
|
|
# grep -r -P -o -h "\"\w+\"" ../slip39_wordlist.h ../bip39_english.h | sort | uniq >> fuzzer_crypto_tests_strings_dictionary1.txt
|
|
|
|
# extract and convert binary input data from the unit tests
|
|
# find each file, cat it, concatenate multiline strings, look for hex strings in quotes
|
|
find $TARGET_DIR -type f | xargs cat | perl -p0e 's/"\s*\n\s*\"//smg' | grep -P -o "\"([0-9a-fA-F][0-9a-fA-F])+\"" | grep -P -o "([0-9a-fA-F][0-9a-fA-F])+" | sort | uniq | while read -r line ; do
|
|
# turn ascii hex strings AA into \xaa for the fuzzer format and add quotes
|
|
# extra backslash escape due to the bash nesting
|
|
escaped_hex=`echo $line | sed -e 's/../\\\\x&/g'`
|
|
echo "\"$escaped_hex\"" >> $OUTPUT_FILE
|
|
done
|
|
|
|
# search and reassemble BIP39 test seeds that span multiple lines
|
|
# find each file, cat it, concatenate multiline strings, look for BIP39 seed combinations with reasonable length
|
|
find $TARGET_DIR -type f | xargs cat | perl -p0e 's/"\s*\n\s*\"//smg' | grep -Po "(\w{3,10} ){11,23}(\w{3,10})" | sort | uniq | while read -r line ; do
|
|
echo "\"$line\"" >> $OUTPUT_FILE
|
|
done
|
|
|