mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* 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>
28 lines
1.1 KiB
Markdown
28 lines
1.1 KiB
Markdown
# stegsnow
|
|
|
|
> 탭과 공백으로 인코딩된 텍스트 파일에 메시지를 숨기고 추출하는 스테가노그래피 도구.
|
|
> 더 많은 정보: <https://darkside.com.au/snow/manual.html>.
|
|
|
|
- 파일에서 [m]메시지 추출:
|
|
|
|
`stegsnow {{경로/대상/파일.txt}}`
|
|
|
|
- 파일에서 [C]압축되고 [p]비밀번호로 보호된 [m]메시지 추출:
|
|
|
|
`stegsnow -C -p {{비밀번호}} {{경로/대상/파일.txt}}`
|
|
|
|
- 파일의 줄 [l]길이가 72보다 작은 경우 대략적인 [S]저장 용량 확인:
|
|
|
|
`stegsnow -S -l 72 {{경로/대상/파일.txt}}`
|
|
|
|
- 파일의 텍스트에 [m]메시지 숨기고 결과로 저장:
|
|
|
|
`stegsnow -m '{{메시지}}' {{경로/대상/파일.txt}} {{경로/대상/결과.txt}}`
|
|
|
|
- 파일의 텍스트에 [C]압축된 메시지 [f]파일 내용을 숨기고 결과로 저장:
|
|
|
|
`stegsnow -C -f '{{경로/대상/메시지.txt}}' {{경로/대상/파일.txt}} {{경로/대상/결과.txt}}`
|
|
|
|
- 파일의 텍스트에 [C]압축되고 [p]비밀번호로 보호된 [m]메시지 숨기고 결과로 저장:
|
|
|
|
`stegsnow -C -p {{비밀번호}} -m '{{메시지}}' {{경로/대상/파일.txt}} {{경로/대상/결과.txt}}`
|