peter50216/pwntools-ruby

View on GitHub
lib/pwnlib/shellcraft/generators/amd64/common/common.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

require 'pwnlib/shellcraft/generators/helper'

module Pwnlib
  module Shellcraft
    module Generators
      module Amd64
        # For non os-related methods.
        module Common
          extend ::Pwnlib::Shellcraft::Generators::Helper
        end
      end
    end
  end
end