
해시 유형을 추측하고 hashcat에 적합한 사전과 규칙을 선택합니다.
일부 해시 유형을 풀고, 적절한 옵션을 선택한 후 hashcat을 호출합니다.
NVIDIA 드라이버: http://www.nvidia.co.uk/Download/index.aspx?lang=en-uk
지원이 필요하면 대체 이메일: [email protected]
NCC에서 누가 이 프로젝트를 관리할지는 확실하지 않지만, 저는 앞으로 이 브랜치에서 활발히 개발할 예정입니다: https://github.com/jamieriden/hashcrack
설치하려면:
pip3 install -r requirements.txt
python3 setup.py
Python이 PATH에 없다면:
<path to python>/python.exe -m pip install -r requirements.txt
<path to python>/python.exe setup.py
이 작업은 약 30GB의 사전을 내려받습니다 - 경고했습니다.
7z 파일의 경우 perl과 Compress::Raw::LZMA가 필요합니다. Perl 배포판에 따라 다음 두 가지 중 하나를 사용하세요:
ActiveState Perl:
ppm install Compress::Raw::LZMA
Strawberry Perl:
cpan install Compress::Raw::LZMA
실행 방법 - 다양한 경우:
기본 크랙:
python3 hashcrack.py -i <input file>
또는:
python3 hashcrack.py --hash <literal hash>
더 강하게 시도 - 단어와 구문, 이전에 발견된 비밀번호 사용
python3 hashcrack.py --input <input file> --words --phrases --found
핵 옵션 - 더 큰 규칙과 사전 사용
python3 hashcrack.py --input <input file> --nuke
일련의 간단한 비밀번호 시도:
python3 hashcrack.py -i <input file> --crib dict/dumb.txt
일련의 간단한 비밀번호 시도 2부:
python3 hashcrack.py -i <input file> --mask default.hcmask
자체 마스크 시도:
python3 hashcrack.py -i <input file> --mask ?l?l?l?l?l?l
zip으로 저장한 IFM 덤프 실행:
python3 hashcrack.py -i <input file.zip> [-t ifm]
test.bat도 참조하세요.
입력 파일은 docx, pdf, JKS 파일 등이 될 수 있습니다.
crackstation 사전도 참조하세요 - https://crackstation.net/
Perl/Python/Java가 PATH에 없다면 hashcrack.cfg에서 올바른 경로를 설정할 수 있습니다 - 이는 실행 파일이 있는 디렉터리가 아니라 실행 파일 자체의 경로입니다.
===
일부 단어 목록을 제공해 주신 https://github.com/berzerk0 에게 감사드립니다 - CC 라이선스입니다. 참조: https://github.com/berzerk0/Probable-Wordlists/tree/master/Real-Passwords
사용된 다른 단어 목록에는 Solar Designer의 openwall_all.txt, Troy Hunt의 해시 2억 7500만 개를 크랙한 것(제 것), 그리고 출처 불명의 breachcompilation.txt가 있습니다. (마지막 두 개는 병합했습니다.)
https://www.7-zip.org/ 코드를 포함합니다 - LGPL입니다. 모두 감사합니다!
nsav2dive.rule은 여기서 가져왔습니다 - 감사합니다! https://github.com/NSAKEY/nsa-rules
nsav2dive.rule 라이선스:
The Fair License
Copyright (c) 2015 _NSAKEY
본 도구의 사용은 본 도구가 작품과 함께 유지되는 경우에 허용되며, 작품을 사용하는 모든 개체가 본 도구를 인지하도록 합니다.
면책 조항: 본 작품은 보증 없이 제공됩니다.
테스트 데이터를 제공해 주신 CMIYK 대회와 hashes.org에 특별히 감사드립니다.