mirror of
https://github.com/danielmiessler/SecLists
synced 2026-01-04 07:04:51 +01:00
Fix back the ../
This commit is contained in:
parent
c602fd4985
commit
cf28ac452d
1 changed files with 4 additions and 4 deletions
|
|
@ -102,7 +102,7 @@ exts=cleaned_exts
|
|||
exts=list(dict.fromkeys(exts))
|
||||
exts.sort()
|
||||
|
||||
open("file-extensions.txt","w").write("\n".join(exts))
|
||||
open("../Fuzzing/file-extensions.txt","w").write("\n".join(exts))
|
||||
|
||||
mutated_exts=[]
|
||||
|
||||
|
|
@ -114,7 +114,7 @@ for i in exts:
|
|||
mutated_exts=list(dict.fromkeys(mutated_exts))
|
||||
mutated_exts.sort()
|
||||
|
||||
open("file-extensions-all-cases.txt","w").write("\n".join(mutated_exts))
|
||||
open("../Fuzzing/file-extensions-all-cases.txt","w").write("\n".join(mutated_exts))
|
||||
|
||||
mutated_exts=[]
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ for i in exts:
|
|||
mutated_exts=list(dict.fromkeys(mutated_exts))
|
||||
mutated_exts.sort()
|
||||
|
||||
open("file-extensions-lower-case.txt","w").write("\n".join(mutated_exts))
|
||||
open("../Fuzzing/file-extensions-lower-case.txt","w").write("\n".join(mutated_exts))
|
||||
|
||||
mutated_exts=[]
|
||||
|
||||
|
|
@ -134,4 +134,4 @@ for i in exts:
|
|||
mutated_exts=list(dict.fromkeys(mutated_exts))
|
||||
mutated_exts.sort()
|
||||
|
||||
open("file-extensions-upper-case.txt","w").write("\n".join(mutated_exts))
|
||||
open("../Fuzzing/file-extensions-upper-case.txt","w").write("\n".join(mutated_exts))
|
||||
|
|
|
|||
Loading…
Reference in a new issue