Archive for February, 2008

tcpxtract – TCP Flow Recorder

February 24th, 2008

tcpxtract ist ein kleines nettes Tool welches unter Linux den Datenstrom einzelner Pakete wieder zusammensetzt. Ein englischer Artikel über die Funktionsweise von tcpxtract ist bei TaoSecurity zu finden. Am besten Ihr schaut euch das Tool selbst einmal an.

Description:
extracts files from network traffic based on file signatures tcpxtract is a fast console tool to extract files from network traffic based on file headers and footers (so called carving). 26 file formats are supported out of the box by tcpxtract but new formats can be added without problems. Foremost configurations are simple to convert to tcpxtracts configuration files.

MP3 to WAV unter Linux

February 24th, 2008

Wine .mp3 zu einer .wav unter Linux umwandeln:

for i in *.mp3; do mpg321 -w `basename $i .mp3`.wav $i; done

So wird jede .mp3 im Verzeichnis zu einer .wav umgewandelt. Im Anschluss kann man dann wunderbar eine AudioCD daraus erstellen. Es wird das Paket mpg123 oder mpg321 benötigt. Entsprechend ist die Befehlszeile anzupassen. Der Syntax beider Programme ist der selbe.

Mit lame funktioniert das ganze Übrigens auch wunderbar:

for i in *.mp3; do lame –decode $i `basename $i .mp3`.wav; done