mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-04-29 10:16:30 -04:00
changed script to be more modifiable
This commit is contained in:
parent
fead0e63e6
commit
51d1c5e6e4
1 changed files with 2 additions and 3 deletions
|
@ -8,9 +8,9 @@ import os
|
|||
print("[+] Curse words remover")
|
||||
|
||||
SOURCE_FOLDER="Miscellaneous/list-of-swear-words"
|
||||
TARGET_DIRS=["Passwords/Common-Credentials"]
|
||||
curse_words=[]
|
||||
TARGET_SUFFIX="-without-curse-words"
|
||||
target_dirs=[""]
|
||||
|
||||
for root,_,file_list in os.walk(SOURCE_FOLDER):
|
||||
for file in file_list:
|
||||
|
@ -21,10 +21,9 @@ for root,_,file_list in os.walk(SOURCE_FOLDER):
|
|||
# dedupe them
|
||||
curse_words=list(dict.fromkeys(curse_words))
|
||||
|
||||
target_dirs=["Passwords/Common-Credentials"]
|
||||
target_files=[]
|
||||
|
||||
for i in target_dirs:
|
||||
for i in TARGET_DIRS:
|
||||
for root,_,file_list in os.walk(i):
|
||||
for file in file_list:
|
||||
if not file.endswith(".txt"):
|
||||
|
|
Loading…
Add table
Reference in a new issue