Path: blob/master/lib/msf/base/sessions/meterpreter_options/linux.rb
21094 views
# -*- coding: binary -*-12require 'shellwords'34module Msf5module Sessions6#7# Defines common options across all Meterpreter implementations8#9module MeterpreterOptions::Linux10include Msf::Sessions::MeterpreterOptions::Common11def initialize(info = {})12super(info)1314register_advanced_options(15[16OptString.new(17'AutoLoadExtensions',18[true, "Automatically load extensions on bootstrap, comma separated.", 'stdapi']19),20OptString.new(21'PayloadProcessCommandLine',22[ false, 'The displayed command line that will be used by the payload', '']23),24],25self.class26)27end28end29end30end313233