require 'shellwords'
module Msf
module Sessions
module MeterpreterOptions::Php
include Msf::Sessions::MeterpreterOptions::Common
def initialize(info = {})
super(info)
register_advanced_options(
[
OptString.new(
'AutoLoadExtensions',
[true, "Automatically load extensions on bootstrap, comma separated.", 'stdapi']
),
],
self.class
)
end
end
end
end