peter50216/pwntools-ruby

View on GitHub
lib/pwnlib/shellcraft/generators/i386/linux/execve.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# encoding: ASCII-8BIT
# frozen_string_literal: true

require 'pwnlib/shellcraft/generators/i386/linux/linux'
require 'pwnlib/shellcraft/generators/x86/linux/execve'

module Pwnlib
  module Shellcraft
    module Generators
      module I386
        module Linux
          # @overload execve(path, argv, envp)
          #
          # @see Generators::X86::Linux#execve
          def execve(*args)
            context.local(arch: :i386) do
              cat X86::Linux.execve(*args)
            end
          end
        end
      end
    end
  end
end