zoukankan      html  css  js  c++  java
  • kali linux之steghide

    Steghide  Linux 命令行隐写工具

    Steghide是一款开源的隐写术软件,它可以让你在一张图片或者音频文件中隐藏你的秘密信息,而且你不会注意到图片或音频文件发生了任何的改变。而且,你的秘密文件已经隐藏在了原始图片或音频文件之中了。这是一个命令行软件,也可以提取你隐藏在图片或音频中的秘密文件

    参数

    the first argument must be one of the following:
     embed, --embed          embed data
     extract, --extract      extract data
     info, --info            display information about a cover- or stego-file info <filename>       display information about <filename>
     encinfo, --encinfo      display a list of supported encryption algorithms
     version, --version      display version information
     license, --license      display steghide's license
     help, --help            display this usage information

    embedding options:
     -ef, --embedfile        select file to be embedded
     -ef <filename>        embed the file <filename>
     -cf, --coverfile        select cover-file
     -cf <filename>        embed into the file <filename>
     -p, --passphrase        specify passphrase
     -p <passphrase>       use <passphrase> to embed data
     -sf, --stegofile        select stego file
     -sf <filename>        write result to <filename> instead of cover-file
     -e, --encryption        select encryption parameters
     -e <a>[<m>]|<m>[<a>]  specify an encryption algorithm and/or mode
     -e none               do not encrypt data before embedding
     -z, --compress          compress data before embedding (default)
     -z <l>                 using level <l> (1 best speed...9 best compression)
     -Z, --dontcompress      do not compress data before embedding
     -K, --nochecksum        do not embed crc32 checksum of embedded data
     -N, --dontembedname     do not embed the name of the original file
     -f, --force             overwrite existing files
     -q, --quiet             suppress information messages
     -v, --verbose           display detailed information

    extracting options:
     -sf, --stegofile        select stego file
     -sf <filename>        extract data from <filename>
     -p, --passphrase        specify passphrase
     -p <passphrase>       use <passphrase> to extract data
     -xf, --extractfile      select file name for extracted data
     -xf <filename>        write the extracted data to <filename>
     -f, --force             overwrite existing files
     -q, --quiet             suppress information messages
     -v, --verbose           display detailed information

    options for the info command:
     -p, --passphrase        specify passphrase
      -p <passphrase>       use <passphrase> to get info about embedded data

    To embed emb.txt in cvr.jpg: steghide embed -cf cvr.jpg -ef emb.txt
    To extract embedded data from stg.jpg: steghide extract -sf stg.jpg

    用法示例:
    将post.txt文件隐藏到xxx.jpg中:
    steghide embed -cf xxx.jpg -ef post.txt -p 123456(不加-p参数 不设置密码 )

    从xxx.jpg解出post.txt:
    steghide extract -sf xxx.jpg -p 123456(-p 密码)

    友情链接  http://www.cnblogs.com/klionsec

                    http://www.cnblogs.com/l0cm

                    http://www.cnblogs.com/Anonyaptxxx

                    http://www.feiyusafe.cn

  • 相关阅读:
    恶意代码 第三章作业3
    openGauss使用指南
    Latex从入门到入门(不再更新,原因是博客园不支持latex语法,写的太累了)
    《网络对抗技术》Exp4 恶意代码分析
    恶意代码 第三章作业2
    《网络对抗技术》Exp5 信息搜集与漏洞扫描
    第三章作业数据查询
    实验一密码引擎商用密码算法实现1中遇到的问题
    buuctf学习笔记
    网页设计中的默认字体样式详解
  • 原文地址:https://www.cnblogs.com/Hydraxx/p/10675172.html
Copyright © 2011-2022 走看看