Dymerge Dictionary Merge Tool
Dymerge is a security tool used to merge different wordlists and dictionaries.
Get DyMerge
Latest version of the dymerge can be get from github by using git.
Get Help About DyMerge
By issuing -h parameter to the dymerge help about dymerge can be get. It also provides usage examples where we will look in this post.
Merge Two Dictionary
We will merge two dictionary only providing dictionary file names. The default output file name is dymerged.txt if it is not specified.
Specifying Output File Name
We will specify output file name with -o option and zip the file with -z option with bz2 compression algorithm.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$ python dymerge.py names.txt surnames.txt -o merged.txt -z bz2
DyMerge 0.2 Nikolaos Kamarinakis (nikolaskama.me)
____
/\ _`\ /'\_/`\
\ \ \/\ \ __ __/\ \ __ _ __ __ __
\ \ \ \ \/\ \/\ \ \ \__\ \ /'__`\/` __\/'_ `\ /'__`\
\ \ \_\ \ \ \_\ \ \ \_/\ \/\ __/\ \ \//\ \_\ \/\ __/
\ \____/\/`____ \ \_\\ \_\ \____\\ \_\\ \____ \ \____\
\/___/ `/___/ \/_/ \/_/\/____/ \/_/ \/____\ \/____/
/\___/ /\____/
\/__/ Made with <3 by k4m4 \_/__/
[+] Starting Dictionary Merge Task
[+] Reading Dictionaries
[+] Merging Dictionaries
[+] Zipping File
[+] Task Successfully Complete
[+] Final Dictionary Saved As --> merged.txt.bz2
Comp/tional Time Elapsed: 0.013137
|
Video demo:
Comments
Post a Comment