metasploit-framework/lib/msf/core/exploit/local.rb

23 lines
495 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
###
#
# A specialization of the {Exploit exploit module class} that is geared
# toward exploits that are performed locally. Locally, in this case,
# is defined as an exploit that is realized by means other than
# network communication.
#
###
class Msf::Exploit::Local < Msf::Exploit
2013-09-05 18:41:25 +00:00
require 'msf/core/post_mixin'
include Msf::PostMixin
2013-09-05 18:41:25 +00:00
#
# Returns the fact that this exploit is a local exploit.
#
def exploit_type
Msf::Exploit::Type::Local
end
end