mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-04-28 12:03:11 -07:00
- Apply os.path.expanduser() to hcatPath so tilde (~) paths work, consistent with every other config path (hcatWordlists, rulesDirectory, hcatPotfilePath, hcatDebugLogPath) - Improve error message when binary not found to show what hcatPath was checked, making it easier to diagnose misconfiguration - Update optimizedKernelAttacks in config.json.example to include all 21 attacks from DEFAULT_OPTIMIZED_ATTACKS (13 were added in v2.4.0 but config.json.example was not updated, causing the runtime override to exclude them)
41 lines
2.0 KiB
JSON
41 lines
2.0 KiB
JSON
{
|
|
"hcatPath": "/path/to/hashcat",
|
|
"hcatBin": "hashcat",
|
|
"hcatTuning": "",
|
|
"hcatPotfilePath": "~/.hashcat/hashcat.potfile",
|
|
"hcatDebugLogPath": "./hashcat_debug",
|
|
"hcatWordlists": "./wordlists",
|
|
"rules_directory": "./hashcat/rules",
|
|
"hcatDictionaryWordlist": ["rockyou.txt"],
|
|
"hcatCombinationWordlist": ["rockyou.txt","rockyou.txt"],
|
|
"hcatCombinator3Wordlist": ["rockyou.txt","rockyou.txt","rockyou.txt"],
|
|
"hcatCombinatorXWordlist": ["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": 50000000,
|
|
"check_for_updates": true,
|
|
"optimizedKernelAttacks": [
|
|
"hcatDictionary", "hcatQuickDictionary", "hcatBandrel", "hcatGoodMeasure",
|
|
"hcatRecycle", "hcatBruteForce", "hcatTopMask", "hcatPathwellBruteForce",
|
|
"hcatAdHocMask", "hcatMarkovBruteForce", "hcatFingerprint", "hcatCombination",
|
|
"hcatCombinator3", "hcatCombinatorX", "hcatHybrid", "hcatYoloCombination",
|
|
"hcatMiddleCombinator", "hcatThoroughCombinator", "hcatCombipow", "hcatPrince",
|
|
"hcatPermute"
|
|
]
|
|
}
|