module TurboRex::Fuzzer

Public Class Methods

create_fuzzer() { |config| ... } click to toggle source
# File lib/turborex/fuzzer.rb, line 192
def self.create_fuzzer(&block)
  config = Config.new
  yield(config)

  case config.mechanism.to_sym
  when :com
    COMFuzzer.new(config)
  when :rpc
    #RPCFuzzer.new(config)
  end
end