Files
metasploit-gs/modules/nops/php/generic.rb
T

29 lines
688 B
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2006-12-17 07:57:51 +00:00
###
#
# This class implements a "nop" generator for PHP payloads
#
###
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Nop
2006-12-17 07:57:51 +00:00
2013-08-30 16:28:54 -05:00
def initialize
super(
'Name' => 'PHP Nop Generator',
'Alias' => 'php_generic',
'Description' => 'Generates harmless padding for PHP scripts',
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Arch' => ARCH_PHP)
end
2006-12-17 07:57:51 +00:00
2013-08-30 16:28:54 -05:00
# Generate valid PHP code up to the requested length
def generate_sled(length, opts = {})
# Default to just spaces for now
" " * length
end
end