Esteganografia
De MochilaWiki
Ir para navegaçãoIr para pesquisaré a arte de esconder mensagens dentro de outros arquivos, como imagem ou música.
aqui veremos alguns exemplos:
Steghide
# apt-get install steghide
escondendo
$ steghide embed -cf example.bmp -ef secret.txt Enter passphrase: Re-Enter passphrase: embedding "secret.txt" in "example.bmp.". done
extraindo
$ steghide extract -sf example.bmp Enter passphrase: wrote extracted data to "secret.txt."
usando cat e split
- descobrindo o tamanho do arquivo texto
ls -l mariguella.txt |cut -d' ' -f6
escondendo
$ cat outra.jpg novamente.txt > mensagem.jpg
separando
$ split -b 11157 mensagem.jpg
irá gerar dois arquivos: xaa e xab. O xab é o texto.
- outguess -- Ferramenta universal para esteganografia.
- stegdetect -- Detecta e extrai mensagens esteganográficas dentro do JPEG.
- Xsteg - interface gráfica para stegdetect
fonte:
- sobre Steghide - http://a2.pluto.it/a2328.htm
- sobre cut - http://learnlinux.tsf.org.za/courses/build/shell-scripting/ch03s04.html
- sobre split - man split