PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Stenography With Linux Script Examples

Go down

Stenography With Linux Script Examples Empty Stenography With Linux Script Examples

Post by jamied_uk 25th July 2016, 03:57

Stenography For Linux Script Examples



Enc_plus.sh

Install

Code:
sudo apt-get install -y steghide



Code:
#!/bin/bash
#(c) J~Net 2016
# ./enc_plus.sh  "test.txt" "pass" "test.jpg"
#
myvar="$1"  # file
myvar2="$2" # pass
myvar3="$3" # emb file
steghide embed -ef "$myvar" -p "$myvar2" -cf "$myvar3"


Code:
dec.sh


Code:
#!/bin/bash
#(c) J~Net 2016
# Usage ./dec.sh "test.jpg" "pass"
#
myvar="$1"
myvar2="$2"
steghide extract -sf "$myvar" -p "$myvar2"


key.txt (example)

Code:
SecretKey


Last edited by jamied_uk on 25th July 2016, 04:16; edited 2 times in total
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Stenography With Linux Script Examples Empty Re: Stenography With Linux Script Examples

Post by jamied_uk 25th July 2016, 04:03

Code Update Link
app.box.com/s/szk3tfd2xztu3m3j4n1ugrzr54rkpsei
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum