mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-07-28 22:51:14 -07:00
Add PassGPT as attack mode 17, using a GPT-2 model trained on leaked password datasets to generate candidate passwords. The generator pipes candidates to hashcat via stdin, matching the existing OMEN pipe pattern. - Add standalone generator module (python -m hate_crack.passgpt_generate) - Add [ml] optional dependency group (torch, transformers) - Add config keys: passgptModel, passgptMaxCandidates, passgptBatchSize - Wire up menu entries in main.py, attacks.py, and hate_crack.py - Auto-detect GPU (CUDA/MPS) with CPU fallback - Add unit tests for pipe construction, handler, and ML deps check Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
1.6 KiB
JSON
35 lines
1.6 KiB
JSON
{
|
|
"hcatPath": "/path/to/hashcat",
|
|
"hcatBin": "hashcat",
|
|
"hcatTuning": "--force --remove",
|
|
"hcatPotfilePath": "~/.hashcat/hashcat.potfile",
|
|
"hcatDebugLogPath": "./hashcat_debug",
|
|
"hcatWordlists": "/Passwords/wordlists",
|
|
"hcatOptimizedWordlists": "/Passwords/optimized_wordlists",
|
|
"rules_directory": "/path/to/hashcat/rules",
|
|
"hcatDictionaryWordlist": ["rockyou.txt"],
|
|
"hcatCombinationWordlist": ["rockyou.txt","rockyou.txt"],
|
|
"hcatHybridlist": ["rockyou.txt"],
|
|
"hcatMiddleCombinatorMasks": ["2","4"," ","-","_","+",",",".","&"],
|
|
"hcatMiddleBaseList": "rockyou.txt",
|
|
"hcatThoroughCombinatorMasks": ["0","1","2","3","4","5","6","7","8","9"," ","-","_","+",",","!","#","$","\"","%","&","'","(",")","*",".","/",":",";","<","=",">","?","@","[","\\","]","^","`","{","|","}","~"],
|
|
"hcatThoroughBaseList": "rockyou.txt",
|
|
"hcatGoodMeasureBaseList": "rockyou.txt",
|
|
"hcatPrinceBaseList": "rockyou.txt",
|
|
"pipalPath": "/path/to/pipal",
|
|
"pipal_count" : 10,
|
|
"bandrelmaxruntime": 300,
|
|
"bandrel_common_basedwords": "welcome,password,p@ssword,p@$$word,changeme,letmein,summer,winter,spring,springtime,fall,autumn,monday,tuesday,wednesday,thursday,friday,saturday,sunday,january,february,march,april,may,june,july,august,september,october,november,december,christmas,easter,covid19",
|
|
"hashview_url": "http://localhost:8443",
|
|
"hashview_api_key": "",
|
|
"hashmob_api_key": "",
|
|
"ollamaModel": "mistral",
|
|
"ollamaNumCtx": 2048,
|
|
"omenTrainingList": "rockyou.txt",
|
|
"omenMaxCandidates": 1000000,
|
|
"passgptModel": "javirandor/passgpt-10characters",
|
|
"passgptMaxCandidates": 1000000,
|
|
"passgptBatchSize": 1024,
|
|
"check_for_updates": true
|
|
}
|