Sha256: 6e6028c9cb40191a2e76d021674dd5e570c39553318f8d2b4027aa13a5736d54
Contents?: true
Size: 831 Bytes
Versions: 26
Compression:
Stored size: 831 Bytes
Contents
module Metasploit module Model module Module # The types of stances a module can take, such as {PASSIVE} or {AGGRESSIVE}. Stances indicate whether or not the # module triggers the vulnerability without waiting for one or more conditions to be met ({AGGRESSIVE}) or whether # it must wait for certain conditions to be satisfied before the exploit can be initiated ({PASSIVE}). module Stance # The module does actively tries to trigger a vulnerability. AGGRESSIVE = 'aggressive' # The module doesn't actively attack and waits for interaction from the client or other entity before attempting # to trigger a vulnerability PASSIVE = 'passive' # All stances. ALL = [ AGGRESSIVE, PASSIVE ] end end end end
Version data entries
26 entries across 26 versions & 1 rubygems