Class: Rex::Post::Meterpreter::Extensions::Stdapi::Railgun::Def::Def_crypt32

Inherits:
Object
  • Object
show all
Defined in:
lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_crypt32.rb

Class Method Summary collapse

Class Method Details

.create_dll(dll_path = 'crypt32') ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_crypt32.rb', line 12

def self.create_dll(dll_path = 'crypt32')
  dll = DLL.new(dll_path, ApiConstants.manager)

  dll.add_function('CryptUnprotectData', 'BOOL', [
      ['PBLOB','pDataIn', 'in'],
      ['PWCHAR', 'szDataDescr', 'out'],
      ['PBLOB', 'pOptionalEntropy', 'in'],
      ['PDWORD', 'pvReserved', 'in'],
      ['PBLOB', 'pPromptStruct', 'in'],
      ['DWORD', 'dwFlags', 'in'],
      ['PBLOB', 'pDataOut', 'out']
    ])

  return dll
end