-
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ideas for enhancement #34
Comments
Hi ! Thank you for your suggestions :)
I did not implement multiple input files because it will not be faster than doing:
All the needed source for progress bar is already implemented (status.c & uinput.c). So implementing a progress-bar would be actually very easy, as it's only a matter of display, i'll add- it to my TODO for sure 👍 |
I have few dictionaries and I would like to remove duplicates across them. Therefore it would be good to have an option to remove words from a dict that are in some other dict. I want to keep those dicts separate but make sure that I am not testing same pws when using them in sequence( NOT always the case) :) |
Good morning all, First of all, thank you for duplicut, the tool is particularly powerful! However, I encountered the same problem than @sectroyer and @itinerant-fox: I needed to use duplicate in a unitary way on each of my wordlists, then to deduplicate the wordlists between them. Duplicut is only designed to process a single file, so I designed a wrapper (in bash) that automates the process for N wordlists while relying on duplicut. This wrapper generates a single temporary file concatenating all the wordlists with delimiters (need disk space), then after deduplication, recuts this single file to regenerate the initial deduplicated unitary wordlists, accompanied by some optimization statistics. You will find the wrapper here : https://github.com/yanncam/multiduplicut Hope it can help others! Thanks again for this great tool :)! |
the delimiters idea is intreresting, actually it's probably the easiest way to implement it inside of duplicut without needing to rewrite a large part of the codebase. |
Support for taking input from multiple input files.
Wordlist can be spread across multiple files. Currently I am merging it and then passing to duplicut.
Need to work something like : duplicut -p 1.txt 2.txt 3.txt 4.txt -o output.txt
Progress bar. Need not be accurate. Can be a guesstimate.
Thanks for the software 👍
The text was updated successfully, but these errors were encountered: