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/tftp/mips64.rb
Views: 11784
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::TFTP
8
include Msf::Payload::Adapter::Fetch::LinuxOptions
9
10
def initialize(info = {})
11
super(
12
update_info(
13
info,
14
'Name' => 'TFTP Fetch',
15
'Description' => 'Fetch and execute a MIPS64 payload from a TFTP server.',
16
'Author' => ['Brendan Watters', 'Spencer McIntyre'],
17
'Platform' => 'linux',
18
'Arch' => ARCH_CMD,
19
'License' => MSF_LICENSE,
20
'AdaptedArch' => ARCH_MIPS64,
21
'AdaptedPlatform' => 'linux'
22
)
23
)
24
end
25
end
26
27