Sha256: 47603c68c28c25d5798d436183875c06e55a5fc7e74bf5d71888ed66b55336fa
Contents?: true
Size: 396 Bytes
Versions: 15
Compression:
Stored size: 396 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
15 entries across 15 versions & 3 rubygems