common/z*: add Korean translation (#14520)

This commit is contained in:
코드싸이
2024-11-02 02:58:11 +09:00
committed by GitHub
parent 68b644059f
commit f0c85945c8
47 changed files with 932 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# zip2john
> Zip 아카이브에서 암호 해시를 추출하여 John the Ripper 암호 크래커에서 사용.
> 일반적으로 John the Ripper 설치의 일부로 설치되는 유틸리티 도구입니다.
> 더 많은 정보: <https://www.openwall.com/john/>.
- 아카이브의 모든 파일을 나열하여 암호 해시 추출:
`zip2john {{경로/대상/파일.zip}}`
- 특정 압축 파일만 사용하여 암호 해시 추출:
`zip2john -o {{경로/대상/압축_파일}} {{경로/대상/파일.zip}}`
- 특정 파일로 압축 파일에서 암호 해시 추출 (John the Ripper에서 사용하기 위해):
`zip2john -o {{경로/대상/압축_파일}} {{경로/대상/파일.zip}} > {{파일.hash}}`