Sha256: 894b146181fb16e77d48dd0414ec2eee99b81edae691f7182dc10aca39acfdfb

Contents?: true

Size: 520 Bytes

Versions: 16

Compression:

Stored size: 520 Bytes

Contents

module WatchScan
  def evt_http_message(tool_name, is_request, message_info)
    super(tool_name, is_request, message_info)
    if tool_name == 'scanner' 
      if is_request
        puts "#"*70, "# REQUEST: #{message_info.url.toString}", "#"*70
        puts message_info.req_str
        puts
      else
        puts "#"*70, "# RESPONSE: #{message_info.url.toString}", "#"*70
        puts message_info.rsp_str
        puts
      end
    end
  end

  def init_WatchScan
    puts "WatchScan module initialized"
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
emonti-buby-1.1.4.1 samples/watch_scan.rb
emonti-buby-1.1.4 samples/watch_scan.rb
buby-1.6.0-java samples/watch_scan.rb
buby-1.5.2-java samples/watch_scan.rb
buby-1.5.1-java samples/watch_scan.rb
buby-1.5.0-java samples/watch_scan.rb
buby-1.5.0.pre4-java samples/watch_scan.rb
buby-1.5.0.pre3-java samples/watch_scan.rb
buby-1.5.0.pre2-java samples/watch_scan.rb
buby-1.5.0.pre1-java samples/watch_scan.rb
buby-1.3.3-java samples/watch_scan.rb
buby-1.3.1-java samples/watch_scan.rb
buby-1.3.0-java samples/watch_scan.rb
buby-1.2.0-java samples/watch_scan.rb
buby-1.1.7-java samples/watch_scan.rb
buby-1.1.6-java samples/watch_scan.rb