Sha256: 97791c2ce1e28070a4588291065be0bde6f262a32eda10ca22ff1626fd52e6ce
Contents?: true
Size: 390 Bytes
Versions: 2
Compression:
Stored size: 390 Bytes
Contents
# -*- coding: binary -*- module Rex module Post module Meterpreter module Extensions module Stdapi module Railgun module PlatformUtil X86_64 = :x86_64 X86_32 = :x86_32 def self.parse_client_platform(meterp_client_platform) meterp_client_platform =~ /win64/ ? X86_64 : X86_32 end end # PlatformUtil end # Railgun end # Stdapi end # Extensions end # Meterpreter end # Post end # Rex
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
librex-0.0.68 | lib/rex/post/meterpreter/extensions/stdapi/railgun/platform_util.rb |
librex-0.0.66 | lib/rex/post/meterpreter/extensions/stdapi/railgun/platform_util.rb |