Sha256: 5023a1b9a203723714823b1246bcd60a26dfd229266c43aae4e2032dca9376bf
Contents?: true
Size: 436 Bytes
Versions: 25
Compression:
Stored size: 436 Bytes
Contents
# -*- coding: binary -*- msfbase = __FILE__ while File.symlink?(msfbase) msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase)) end path = File.expand_path(File.dirname(msfbase)) path += "/../../../" $:.unshift(path) require 'rex/ole' if (ARGV.length < 1) $stderr.puts "usage: ole_info <file>" exit(1) end document = ARGV.shift if (stg = Rex::OLE::Storage.new(document)) puts stg.inspect stg.close end
Version data entries
25 entries across 25 versions & 4 rubygems