Simple file hiding

Jan 08
2008

irb console

$/ = "\r\n"
 
# addition of .mp3 file to .gif file
File.open('test.gif', 'a') do |fh|
  fh < < "\r\n#{File.readlines('test.mp3')}"
end
 
# extraction of the .mp3 content
File.open('extracted.mp3', 'w') do |fh|
  fh << File.readlines('test.gif')[1..-1]
end

Comments are closed.

Calendar

January 2008
M T W T F S S
« Dec   Feb »
 123456
78910111213
14151617181920
21222324252627
28293031  

Tags