Esteganografia: mudanças entre as edições
De MochilaWiki
Ir para navegaçãoIr para pesquisar
Nova página: é a arte de esconder mensagens dentro de outros arquivos, como imagem ou música. aqui veremos alguns exemplos: _________________ Steghide :: # apt-get install steghide >> escondend... |
Sem resumo de edição |
||
| (Uma revisão intermediária por um outro usuário não está sendo mostrada) | |||
| Linha 2: | Linha 2: | ||
aqui veremos alguns exemplos: | aqui veremos alguns exemplos: | ||
'''Steghide''' | |||
# apt-get install steghide | |||
escondendo | |||
$ steghide | $ steghide embed -cf example.bmp -ef secret.txt | ||
Enter passphrase: | 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 | ||
$ split -b 11157 mensagem.jpg | $ cat outra.jpg novamente.txt > mensagem.jpg | ||
separando | |||
$ split -b 11157 mensagem.jpg | |||
irá gerar dois arquivos: xaa e xab. O xab é o texto. | irá gerar dois arquivos: xaa e xab. O xab é o texto. | ||
* outguess -- Ferramenta universal para esteganografia. | |||
outguess -- Ferramenta universal para esteganografia. | * stegdetect -- Detecta e extrai mensagens esteganográficas dentro do JPEG. | ||
stegdetect -- Detecta e extrai mensagens esteganográficas dentro do JPEG. | * Xsteg - interface gráfica para stegdetect | ||
Xsteg - interface gráfica para stegdetect | |||
fonte: | fonte: | ||
sobre Steghide - http://a2.pluto.it/a2328.htm | * sobre Steghide - http://a2.pluto.it/a2328.htm | ||
sobre cut - http://learnlinux.tsf.org.za/courses/build/shell-scripting/ch03s04.html | * sobre cut - http://learnlinux.tsf.org.za/courses/build/shell-scripting/ch03s04.html | ||
sobre split - man split | * sobre split - man split | ||
[[Categoria:gnuzinho]] | |||
[[Categoria:dicas]] | |||
Edição atual tal como às 17h39min de 11 de janeiro de 2009
é 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