Skip to content

CLI‐Reference

Adam S edited this page Jul 31, 2026 · 1 revision

CLI Reference

Flags

Flag Description Default
-n, --count Lines to generate 100
-f, --format 1 email:pass · 2 user:pass · 3 email:pass:name · 4 PII+SSN · 5 PII+SSN+CC · 6 password-only 1
-c, --country Country code worldwide
-o, --output Output file path combolist.txt
--unique / --no-unique Deduplicate entries on
--min-length Minimum password length 0
--seed Random seed for reproducible output random
-q, --quiet Suppress sample output off
--version Show version

Country Codes

Code Country Domains
us United States gmail, yahoo, hotmail, outlook, aol, icloud
uk United Kingdom gmail, outlook, btinternet, virginmedia, sky
fr France gmail, orange.fr, free.fr, sfr.fr, laposte.net
de Germany gmail, web.de, gmx.de, t-online.de, freenet.de
ru Russia mail.ru, yandex.ru, rambler.ru, bk.ru
jp Japan yahoo.co.jp, docomo, ezweb, softbank
br Brazil gmail, bol.com.br, uol.com.br, ig.com.br, globo.com
in India gmail, rediffmail, indiatimes, sify, yahoo.co.in
ar Middle East gmail, outlook, outlook.sa, yahoo

Examples

# 100k unique password wordlist, min 8 chars — hashcat/spraying ready
python3 credforge.py -n 100000 -f 6 -o wordlist.txt --min-length 8

# 50k Brazilian combos, deterministic
python3 credforge.py -n 50000 -f 1 -c br -o br.txt --seed 1337

# 1k full PII dumps (email:pass:name:phone:address:ssn)
python3 credforge.py -n 1000 -f 4 -c us -o pii.txt

Interactive Mode

Run with no arguments for the guided prompt — same options, keyboard-driven.

Clone this wiki locally