If the user specifies a folder to scan for wordlists instead of directly a wordlist, then ignore the hidden files

This commit is contained in:
jsteube
2017-01-05 16:15:12 +01:00
parent ad42dd59ac
commit b3067680a7
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ char *first_file_in_directory (const char *path)
#endif
if ((strncmp (de->d_name, ".", strlen (de->d_name)) == 0) || (strncmp (de->d_name, "..", strlen (de->d_name)) == 0)) continue;
if (de->d_name[0] == '.') continue;
first_file = strdup (de->d_name);