Steghide使用教程及其密碼爆破

2021-08-25 02:30:01 字數 1298 閱讀 2318

steghide是一款開源的隱寫術軟體,它可以讓你在一張或者音訊檔案中隱藏你的秘密資訊,而且你不會注意到或音訊檔案發生了任何的改變。而且,你的秘密檔案已經隱藏在了原始或音訊檔案之中了。這是乙個命令列軟體。因此,你需要學習使用這個工具的命令。你需要通過命令來實現將秘密檔案嵌入至或音訊檔案之中。除此之外,你還需要使用其他的命令來提取你隱藏在或音訊中的秘密檔案。

embed, –embed embed data

extract, –extract extract data

-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 to embed data

-sf, –stegofile select stego file

-sf (filename) write result to filename instead of cover-file

將secret.txt檔案隱藏到text.jpg中:

從text.jpg解出secret.txt:

steghide本身不提供爆破功能,我們需要用額外的指令碼來完成這個功能,簡單的爆破這裡提供如下shell指令碼:

#brutesteghide.sh 

#!/bin/bash

for line in `cat $2`;do

steghide extract -sf $1 -p $line > /dev/null 2>&1

if [[ $? -eq

0 ]];then

echo

'password is: '

$line

exit

fidone

用法:

效果:

ssh 免密登入及其原理

引用百科的一句話,ssh 為 secure shell 的縮寫,由 ietf 的網路小組 network working group 所制定 ssh 為建立在應用層基礎上的安全協議。ssh 是目前較可靠,專為遠端登入會話和其他網路服務提供安全性的協議。利用 ssh 協議可以有效防止遠端管理過程中的資...

國密工具gmssl使用

國密工具gmssl 1.16進製制串格式儲存的私鑰顯示 gmssl sm2 inform t in skey.txt text 2.16進製制串格式儲存的私鑰轉出pem格式私鑰 gmssl sm2 inform t in skey.txt out skey.pem 3.16進製制串格式儲存的私鑰轉出...

浮動及其使用

標準文件流 指元素根據塊元素或行內元素的特性按從上到下,從左到右的方式自然排列。這也是元素預設的排列方式 標準文件流組成 塊級元素 block 列表 內聯元素 inline 設定不了寬高 內聯標籤可以包含於塊級標籤中,成為它的子元素,而反過來則不成立 display屬性 值 說明 block 塊級元...