Files
metasploit-gs/test/hooks/string_idx.rb
T
2013-09-30 13:47:53 -05:00

12 lines
291 B
Ruby

class String
@@idx_reported = {}
def [](*args)
if(args.length == 1 and args[0].class == ::Fixnum and not @@idx_reported[caller[0].to_s])
$stderr.puts "HOOK: String[idx] #{caller.join("\t")}\n\n"
@@idx_reported[caller[0].to_s] = true
end
slice(*args)
end
end