1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/steghide.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/shar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/sqfstar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 15:05:30 +09:00

1 KiB

steghide

JPEG, BMP, WAV 및 AU 파일 형식을 위한 스테가노그래피 도구. 더 많은 정보: https://github.com/StefanoDeVuono/steghide.

  • PNG에 데이터를 삽입하고 암호 구문을 입력받기:

steghide embed --coverfile {{경로/대상/이미지.png}} --embedfile {{경로/대상/데이터.txt}}

  • WAV 오디오 파일에서 데이터 추출:

steghide extract --stegofile {{경로/대상/소리.wav}}

  • 파일 정보 표시 및 삽입된 파일 탐지 시도:

steghide info {{경로/대상/파일.jpg}}

  • JPEG 이미지에 최대 압축으로 데이터 삽입:

steghide embed --coverfile {{경로/대상/이미지.jpg}} --embedfile {{경로/대상/데이터.txt}} --compress {{9}}

  • 지원되는 암호화 알고리즘 및 모드 목록 확인:

steghide encinfo

  • 예를 들어 Blowfish CBC 모드로 JPEG 이미지에 암호화된 데이터 삽입:

steghide embed --coverfile {{경로/대상/이미지.jpg}} --embedfile {{경로/대상/데이터.txt}} --encryption {{blowfish|...}} {{cbc|...}}