* change where NDR is grabbed from
git-svn-id: file:///home/svn/incoming/trunk@3660 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
9352454791
commit
d89f5fa9d1
|
@ -1,4 +1,5 @@
|
|||
require 'rex/proto/dcerpc'
|
||||
require 'rex/encoder/ndr'
|
||||
|
||||
module Msf
|
||||
|
||||
|
@ -18,7 +19,7 @@ module Exploit::Remote::DCERPC
|
|||
DCERPCClient = Rex::Proto::DCERPC::Client
|
||||
DCERPCResponse = Rex::Proto::DCERPC::Response
|
||||
DCERPCUUID = Rex::Proto::DCERPC::UUID
|
||||
NDR = Rex::Proto::DCERPC::NDR
|
||||
NDR = Rex::Encoder::NDR
|
||||
|
||||
def initialize(info = {})
|
||||
super
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
require 'rex/proto/smb'
|
||||
require 'rex/proto/dcerpc'
|
||||
require 'rex/encoder/ndr'
|
||||
|
||||
module Msf
|
||||
|
||||
|
@ -23,7 +24,7 @@ module Exploit::Remote::SMB
|
|||
DCERPCClient = Rex::Proto::DCERPC::Client
|
||||
DCERPCResponse = Rex::Proto::DCERPC::Response
|
||||
DCERPCUUID = Rex::Proto::DCERPC::UUID
|
||||
NDR = Rex::Proto::DCERPC::NDR
|
||||
NDR = Rex::Encoder::NDR
|
||||
|
||||
def initialize(info = {})
|
||||
super
|
||||
|
|
Loading…
Reference in New Issue