Files
metasploit-gs/lib/msf/core/payload/linux.rb
T

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

21 lines
452 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
###
#
# This class is here to implement advanced features for linux-based
# payloads. Linux payloads are expected to include this module if
# they want to support these features.
#
###
module Msf::Payload::Linux
2013-09-05 13:24:09 -05:00
#
# This mixin is chained within payloads that target the Linux platform.
# It provides special prepends, to support things like chroot and setuid.
#
def initialize(info = {})
super(info)
2013-09-05 13:24:09 -05:00
end
end