From 28b596d0ef0b278040f6aa3fe50fcc0470702876 Mon Sep 17 00:00:00 2001 From: philsmd Date: Sat, 23 Jul 2022 11:43:54 +0200 Subject: [PATCH] add support for -a 9 to tab completion --- extra/tab_completion/hashcat.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/tab_completion/hashcat.sh b/extra/tab_completion/hashcat.sh index 50cc68353..f6717c15f 100644 --- a/extra/tab_completion/hashcat.sh +++ b/extra/tab_completion/hashcat.sh @@ -821,7 +821,7 @@ _hashcat () *) case "${attack_mode}" in - 0) + 0|9) # dict/directory are files here _hashcat_files_folders_exclude "${cur}" "${HIDDEN_FILES_AGGRESSIVE}" COMPREPLY=($(compgen -W "${hashcat_file_list}" -- ${hashcat_select}))