8000 GitHub - ZPCA96/ComboCrafter
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ZPCA96/ComboCrafter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

ComboCrafter

ComboCrafter — hashcat-slyle mask wordlist generator. Part of code stealed from amass.


Install

  1. Clone repo:
git clone https://github.com/ZPCA96/ComboCrafter
cd ComboCrafter
  1. Build:
go build .

Usage

Mask syntax:

?l — lowercase letter (a-z).
?d — dight (0-9).
?a — lowercase letter or dight.
?s — hyphen (-).
?A — all symbols from domain characters set.
?w — word from wordlist.

Flags:

-m — Path to the file containing masks.
-w — Path to the file containing the wordlist.
-o — Path to the output file.
-stdout — Print output to stdout instead of a file.

Example

masks.txt:

?l?d
?w?d?s

wordlist.txt:

word1
word2

Run:

./ComboCrafter -m masks.txt -w wordlist.txt -o output.txt

output.txt:

a0
a1
...
z9
word10-
word11-
...
word29-
word20-
word21-
...
word29-

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0