Module: Msf::Payload::Windows::MigrateHttp_x64
- Includes:
- MigrateCommon_x64
- Defined in:
- lib/msf/core/payload/windows/x64/migrate_http_x64.rb
Overview
Payload that supports migration over HTTP/S transports on x64.
Instance Method Summary collapse
-
#generate_migrate(opts = {}) ⇒ Object
Constructs the migrate stub on the fly.
- #initialize(info = {}) ⇒ Object
Methods included from MigrateCommon_x64
Methods included from BlockApi_x64
Methods included from Msf::Payload::Windows
#apply_prepends, exit_types, #handle_intermediate_stage, #include_send_uuid, #replace_var
Methods included from PrependMigrate
#apply_prepend_migrate, #prepend_migrate, #prepend_migrate?, #prepend_migrate_64
Instance Method Details
#generate_migrate(opts = {}) ⇒ Object
Constructs the migrate stub on the fly
29 30 31 32 33 |
# File 'lib/msf/core/payload/windows/x64/migrate_http_x64.rb', line 29 def generate_migrate(opts={}) # This payload only requires the common features, so return # an empty string indicating no code requires. '' end |
#initialize(info = {}) ⇒ Object
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/msf/core/payload/windows/x64/migrate_http_x64.rb', line 15 def initialize(info={}) super(update_info(info, 'Name' => 'HTTP/S Transport Migration (x64)', 'Description' => 'Migration stub to use over HTTP/S transports via x64', 'Author' => ['OJ Reeves'], 'License' => MSF_LICENSE, 'Platform' => 'win', 'Arch' => ARCH_X64 )) end |