metasploit-framework/lib/msf/core/auxiliary/kademlia.rb

16 lines
203 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2014-11-20 21:49:36 +00:00
require 'rex/proto/kademlia'
2014-11-20 21:49:36 +00:00
module Msf
###
#
2014-11-20 21:49:36 +00:00
# This module provides methods for working with Kademlia
#
2014-11-20 21:49:36 +00:00
###
module Auxiliary::Kademlia
include Rex::Proto::Kademlia
end
end