Files
metasploit-gs/lib/msf/core/exploit/local.rb
T

29 lines
499 B
Ruby
Raw Normal View History

2013-05-22 00:11:33 -05:00
# -*- coding: binary -*-
2013-05-22 00:11:33 -05:00
require 'msf/core/post_mixin'
module Msf
2013-05-22 00:11:33 -05:00
class Exploit
###
#
2013-05-24 14:13:10 -05:00
# 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.
2013-05-22 00:11:33 -05:00
#
###
class Local < Exploit
2013-08-30 16:28:33 -05:00
include PostMixin
2013-05-22 00:11:33 -05:00
2013-08-30 16:28:33 -05:00
#
# Returns the fact that this exploit is a local exploit.
#
def exploit_type
Exploit::Type::Local
end
2013-05-22 00:11:33 -05:00
end
end
end