Class: ZSteg::Checker
- Inherits:
-
Object
- Object
- ZSteg::Checker
- Defined in:
- lib/zsteg/checker.rb,
lib/zsteg/checker/zlib.rb,
lib/zsteg/checker/wbstego.rb,
lib/zsteg/checker/scanline_checker.rb,
lib/zsteg/checker/steganography_png.rb
Defined Under Namespace
Modules: ScanlineChecker, SteganographyPNG, WBStego, Zlib
Constant Summary collapse
- DEFAULT_BITS =
[1,2,3,4]
- DEFAULT_ORDER =
'auto'
- DEFAULT_LIMIT =
number of checked bytes, 0 = no limit
256
- DEFAULT_EXTRA_CHECKS =
true
- DEFAULT_MIN_STR_LEN =
8
- CAMOUFLAGE_SIG1 =
"\x00\x00".force_encoding('binary')
- CAMOUFLAGE_SIG2 =
"\xed\xcd\x01".force_encoding('binary')
Instance Attribute Summary collapse
-
#channels ⇒ Object
Returns the value of attribute channels.
-
#params ⇒ Object
Returns the value of attribute params.
-
#results ⇒ Object
Returns the value of attribute results.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
- #check ⇒ Object
- #check_channels(channels, params) ⇒ Object
- #check_extradata ⇒ Object
- #check_imagedata ⇒ Object
- #check_metadata ⇒ Object
- #data2result(data, params) ⇒ Object
-
#initialize(image, params = {}) ⇒ Checker
constructor
image can be either filename or ZPNG::Image.
-
#process_result(data, params) ⇒ Object
returns true if was any output.
- #show_result(result, params) ⇒ Object
- #show_title(title, color = :gray) ⇒ Object
Constructor Details
#initialize(image, params = {}) ⇒ Checker
image can be either filename or ZPNG::Image
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/zsteg/checker.rb', line 22 def initialize image, params = {} @params = params @cache = {}; @wastitles = Set.new @image = image.is_a?(ZPNG::Image) ? image : ZPNG::Image.load(image) @extractor = Extractor.new(@image, params) @channels = params[:channels] || if @image.alpha_used? %w'r g b a rgb bgr rgba abgr' else %w'r g b rgb bgr' end @verbose = params[:verbose] || -2 @file_cmd = FileCmd.new if params.fetch(:file, true) @results = [] @params[:bits] ||= DEFAULT_BITS @params[:order] ||= DEFAULT_ORDER @params[:limit] ||= DEFAULT_LIMIT if @params[:min_str_len] @min_str_len = @min_wholetext_len = @params[:min_str_len] else @min_str_len = DEFAULT_MIN_STR_LEN @min_wholetext_len = @min_str_len - 2 end @strings_re = /[\x20-\x7e\r\n\t]{#@min_str_len,}/ @extra_checks = params.fetch(:extra_checks, DEFAULT_EXTRA_CHECKS) end |
Instance Attribute Details
#channels ⇒ Object
Returns the value of attribute channels.
13 14 15 |
# File 'lib/zsteg/checker.rb', line 13 def channels @channels end |
#params ⇒ Object
Returns the value of attribute params.
13 14 15 |
# File 'lib/zsteg/checker.rb', line 13 def params @params end |
#results ⇒ Object
Returns the value of attribute results.
13 14 15 |
# File 'lib/zsteg/checker.rb', line 13 def results @results end |
#verbose ⇒ Object
Returns the value of attribute verbose.
13 14 15 |
# File 'lib/zsteg/checker.rb', line 13 def verbose @verbose end |
Instance Method Details
#check ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/zsteg/checker.rb', line 71 def check @found_anything = false @file_cmd.start! if @file_cmd if @extra_checks check_extradata check_imagedata end if @image.format == :bmp case params[:order].to_s.downcase when /all/ params[:order] = %w'bY xY xy yx XY YX Xy yX Yx' when /auto/ params[:order] = %w'bY xY' end else case params[:order].to_s.downcase when /all/ params[:order] = %w'xy yx XY YX Xy yX xY Yx' when /auto/ params[:order] = 'xy' end end Array(params[:order]).uniq.each do |order| (params[:prime] == :all ? [false,true] : [params[:prime]]).each do |prime| Array(params[:bits]).uniq.each do |bits| if params[:pixel_align] == :all [false, true].each do |pixel_align| # skip cases when output will be identical for pixel_align true/false next if pixel_align && (8%bits) == 0 p1 = @params.merge bits: bits, order: order, prime: prime, pixel_align: pixel_align if order[/b/i] # byte iterator does not need channels check_channels nil, p1 else channels.each{ |c| check_channels c, p1 } end end else p1 = @params.merge bits: bits, order: order, prime: prime if order[/b/i] # byte iterator does not need channels check_channels nil, p1 else channels.each{ |c| check_channels c, p1 } end end end end end if @found_anything print "\r" + " "*20 + "\r" if @need_cr else puts "\r[=] nothing :(" + " "*20 # line cleanup end if @extra_checks Analyzer.new(@image).analyze! end # return everything found if this method was called from some code @results ensure @file_cmd.stop! if @file_cmd end |
#check_channels(channels, params) ⇒ Object
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/zsteg/checker.rb', line 189 def check_channels channels, params unless params[:bit_order] check_channels(channels, params.merge(:bit_order => :lsb)) check_channels(channels, params.merge(:bit_order => :msb)) return end p1 = params.clone # number of bits # equals to params[:bits] if in range 1..8 # otherwise equals to number of 1's, like 0b1000_0001 nbits = p1[:bits] <= 8 ? p1[:bits] : (p1[:bits]&0xff).to_s(2).count("1") show_bits = true # channels is a String if channels p1[:channels] = if channels[1] && channels[1] =~ /\A\d\Z/ # 'r3g2b3' a=[] cbits = 0 (channels.size/2).times do |i| a << (t=channels[i*2,2]) cbits += t[1].to_i end show_bits = false @max_hidden_size = cbits * @image.width a else # 'rgb' a = channels.chars.to_a @max_hidden_size = a.size * @image.width * nbits a end # p1[:channels] is an Array elsif params[:order] =~ /b/i # byte extractor @max_hidden_size = @image.scanlines[0].decoded_bytes.size * nbits else raise "invalid params #{params.inspect}" end @max_hidden_size *= @image.height/8 bits_tag = if show_bits if params[:bits] > 0x100 if params[:bits].to_s(2) =~ /(1{1,8})$/ # mask => number of bits "b#{$1.size}" else # mask "b#{(params[:bits]&0xff).to_s(2)}" end else # number of bits "b#{params[:bits]}" end end bits_tag << "p" if params[:pixel_align] title = [ bits_tag, channels, params[:bit_order], params[:order], params[:prime] ? 'prime' : nil ].compact.join(',') return if @wastitles.include?(title) @wastitles << title show_title title p1[:title] = title data = @extractor.extract p1 if p1[:invert] data.size.times{ |i| data.setbyte(i, data.getbyte(i)^0xff) } end @need_cr = !process_result(data, p1) # carriage return needed? @found_anything ||= !@need_cr end |
#check_extradata ⇒ Object
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/zsteg/checker.rb', line 146 def check_extradata # accessing imagedata implicitly unpacks zlib stream # zlib stream may contain extradata if @image.imagedata.size > (t=@image.scanlines.map(&:size).inject(&:+)) @found_anything = true data = @image.imagedata[t..-1] title = "extradata:imagedata" show_title title, :bright_red process_result data, :special => true, :title => title end if @image.extradata.any? @found_anything = true @image.extradata.each_with_index do |data,idx| title = "extradata:#{idx}" show_title title, :bright_red process_result data, :special => true, :title => title end end if data = ScanlineChecker.check_image(@image, @params) @found_anything = true title = "scanline extradata" show_title title, :bright_red process_result data, :special => true, :title => title end if r = SteganographyPNG.check_image(@image, @params) @found_anything = true title = "image" show_title title, :bright_red process_result nil, title: title, result: r end end |
#check_imagedata ⇒ Object
141 142 143 144 |
# File 'lib/zsteg/checker.rb', line 141 def check_imagedata h = { :title => "imagedata", :show_title => true } process_result @image.imagedata, h end |
#check_metadata ⇒ Object
181 182 183 184 185 186 187 |
# File 'lib/zsteg/checker.rb', line 181 def @image..each do |k,v| @found_anything = true show_title(title = "meta #{k}") process_result v, :special => true, :title => title end end |
#data2result(data, params) ⇒ Object
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
# File 'lib/zsteg/checker.rb', line 358 def data2result data, params if one_char?(data) return Result::OneChar.new(data[0,1], data.size) end if idx = data.index('OPENSTEGO') io = StringIO.new(data) io.seek(idx+9) return Result::OpenStego.read(io) end # only in extradata if params[:title]['extradata'] if data[0,2] == CAMOUFLAGE_SIG1 && data[3,3] == CAMOUFLAGE_SIG2 return Result::Camouflage.new(data) end end # only BMP & 1-bit-per-channel if params[:bits] == 1 && params[:bit_order] == :lsb if x = WBStego.check(data, params.merge( :image => @image, :max_hidden_size => @max_hidden_size )) return x end end if data.size >= @min_wholetext_len && data =~ /\A[\x20-\x7e\r\n\t]+\Z/ # whole ASCII return Result::WholeText.new(data, 0) end if @file_cmd && (r = @file_cmd.data2result(data)) return r end if r = Checker::Zlib.check_data(data) return r end case params.fetch(:strings, :first) when :all r=[] data.scan(@strings_re) do r << Result::PartialText.from_matchdata($~) end return r if r.any? when :first if data[@strings_re] return Result::PartialText.from_matchdata($~) end when :longest r=[] data.scan(@strings_re){ r << $~ } return Result::PartialText.from_matchdata(r.sort_by(&:size).last) if r.any? end # utf-8 string matching, may be slow, may throw exceptions # begin # t = data. # encode('UTF-16', 'UTF-8', :invalid => :replace, :replace => ''). # encode!('UTF-8', 'UTF-16') # r = t.scan(/\p{Word}{#{DEFAULT_MIN_STR_LEN},}/) # r if r.any? # rescue # end end |
#process_result(data, params) ⇒ Object
returns true if was any output
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/zsteg/checker.rb', line 296 def process_result data, params verbose = params[:special] ? [@verbose,1.5].max : @verbose result = nil if data if @cache[data] if verbose > 1 puts "[same as #{@cache[data].inspect}]".gray return true else # silent return return false end end # TODO: store hash of data for large datas @cache[data] = params[:title] if result = data2result(data, params) @results << result end elsif !(result = params[:result]) raise "[?] No data nor result" end case verbose when -999..0 # verbosity=0: only show result if anything interesting found if result && !result.is_a?(Result::OneChar) show_title params[:title] if params[:show_title] show_result result, params return true else return false end when 1 # verbosity=1: if anything interesting found show result & hexdump return false unless result else # verbosity>1: always show hexdump end show_title params[:title] if params[:show_title] if params[:special] puts result.is_a?(Result::PartialText) ? nil : result else show_result result, params end if data && data.size > 0 && !result.is_a?(Result::OneChar) && !result.is_a?(Result::WholeText) # newline if no results and want hexdump puts if !result || result == [] limit = (params[:limit] || @params[:limit]).to_i t = limit > 0 ? data[0,limit] : data print ZPNG::Hexdump.dump(t){ |x| x.prepend(" "*4) } end true end |
#show_result(result, params) ⇒ Object
280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/zsteg/checker.rb', line 280 def show_result result, params case result when Array result.each_with_index do |r,idx| # empty title for multiple results from same title show_title(" ") if idx > 0 puts r end when nil, false # do nothing? else puts result end end |
#show_title(title, color = :gray) ⇒ Object
275 276 277 278 |
# File 'lib/zsteg/checker.rb', line 275 def show_title title, color = :gray printf "\r%-20s.. ".send(color), title $stdout.flush end |