CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/payloads/adapters/cmd/linux/https/x86.rb
Views: 11783
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
module MetasploitModule
7
include Msf::Payload::Adapter::Fetch::Https
8
include Msf::Payload::Adapter::Fetch::LinuxOptions
9
10
def initialize(info = {})
11
super(
12
update_info(
13
info,
14
'Name' => 'HTTPS Fetch',
15
'Description' => 'Fetch and execute an x86 payload from an HTTPS server.',
16
'Author' => ['Brendan Watters', 'Spencer McIntyre'],
17
'Platform' => 'linux',
18
'Arch' => ARCH_CMD,
19
'License' => MSF_LICENSE,
20
'AdaptedArch' => ARCH_X86,
21
'AdaptedPlatform' => 'linux'
22
)
23
)
24
end
25
end
26
27