mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-23 15:18:16 +00:00
Merge pull request #1917 from philsmd/hash-mode-plugin-test-m-fix
tests: fixed problem with -m 0 or -m 0-10 with new hash type range code
This commit is contained in:
commit
65a143140a
@ -2690,10 +2690,10 @@ if [ "${PACKAGE}" -eq 0 -o -z "${PACKAGE_FOLDER}" ]; then
|
||||
HT_MIN=0
|
||||
HT_MAX=0
|
||||
|
||||
if echo -n ${HT} | grep -q '^[1-9][0-9]*$'; then
|
||||
if echo -n ${HT} | grep -q '^[0-9]\+$'; then
|
||||
HT_MIN=${HT}
|
||||
HT_MAX=${HT}
|
||||
elif echo -n ${HT} | grep -q '^[1-9][0-9]*-[1-9][0-9]*$'; then
|
||||
elif echo -n ${HT} | grep -q '^[0-9]\+-[1-9][0-9]*$'; then
|
||||
|
||||
HT_MIN=$(echo -n ${HT} | sed "s/-.*//")
|
||||
HT_MAX=$(echo -n ${HT} | sed "s/.*-//")
|
||||
|
Loading…
Reference in New Issue
Block a user