Sha256: ce5b7fb4e7834491cd7e98566a2f31501242c2b66f2f0884c356a1ed8e4c3bcf
Contents?: true
Size: 717 Bytes
Versions: 10
Compression:
Stored size: 717 Bytes
Contents
module Rex module Powershell module Templates # The base directory that all Powershell script templates live in TEMPLATE_DIR = File.expand_path( File.join( __FILE__ , '..', '..', '..', '..', 'data', 'templates') ) # The powershell script template for memory injection using .NET TO_MEM_DOTNET = File.join(TEMPLATE_DIR, 'to_mem_dotnet.ps1.template') # The powershell script template for memory injection using reflection TO_MEM_REFLECTION = File.join(TEMPLATE_DIR, 'to_mem_pshreflection.ps1.template') # The powershell script template for memory injection using the old method TO_MEM_OLD = File.join(TEMPLATE_DIR, 'to_mem_old.ps1.template') end end end
Version data entries
10 entries across 10 versions & 1 rubygems