본문 바로가기

OS-서버/윈도우

certutil - 파일 해시값 확인

반응형


  certutil : 인증서 관련 명령어로써 CMD에서 실행한다.

              certutil은 파일 무결성체크에도 사용되는데

파일이 수정됬을 때 해시값이 변경되므로 파일의 변조 유무를 확인할 수 있다.



  파일 다운로드

다음 명령을 이용하여 원격지에서 파일을 가져온다.
certutil -urlcache -split -f [URL] [output-file]
> certutil -urlcache -split -f "http://www.aaa.com/data/aaa.exe" "aaa.exe"



  파일 해시값 확인 방법

certutil -hashfile aaa.exe SHA1

certutil -hashfile aaa.exe SHA256

certutil -hashfile aaa.exe MD5


기본값은 sha1이다. 명령어가 없다면 fciv를 다운한다.



  linux 사용법

> md5sum [filename]




반응형