module Msf::Util::EXE::Bsd::X86
include Msf::Util::EXE::Common
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
def to_bsd_x86_elf(framework, code, opts = {})
to_exe_elf(framework, opts, "template_x86_bsd.bin", code)
end
end
class << self
include ClassMethods
end
end