2005-05-21 17:57:00 +00:00
|
|
|
###
|
|
|
|
#
|
|
|
|
# This file contains constants that are referenced by the core
|
|
|
|
# framework and by framework modules.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
|
|
|
#
|
|
|
|
# Architecture constants
|
|
|
|
#
|
2005-05-22 07:14:16 +00:00
|
|
|
ARCH_ANY = '_any_'
|
2005-05-21 17:57:00 +00:00
|
|
|
ARCH_IA32 = 'ia32'
|
|
|
|
ARCH_MIPS = 'mips'
|
|
|
|
ARCH_PPC = 'ppc'
|
|
|
|
ARCH_SPARC = 'sparc'
|
|
|
|
|
|
|
|
#
|
|
|
|
# Module types
|
|
|
|
#
|
2005-05-22 07:14:16 +00:00
|
|
|
MODULE_ANY = '_any_'
|
2005-05-21 17:57:00 +00:00
|
|
|
MODULE_ENCODER = 'encoder'
|
|
|
|
MODULE_EXPLOIT = 'exploit'
|
|
|
|
MODULE_NOP = 'nop'
|
|
|
|
MODULE_RECON = 'recon'
|
2005-05-22 07:14:16 +00:00
|
|
|
MODULE_TYPES = [ MODULE_ENCODER, MODULE_EXPLOIT, MODULE_NOP, MODULE_RECON ]
|
2005-05-21 17:57:00 +00:00
|
|
|
|
|
|
|
end
|