We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8e9093 commit 45e6daeCopy full SHA for 45e6dae
modules/auxiliary/scanner/dcerpc/petitpotam.rb
@@ -9,6 +9,12 @@
9
require 'ruby_smb/dcerpc/lsarpc'
10
require 'ruby_smb/dcerpc/efsrpc'
11
12
+module RubySMB::Dcerpc::EfsrpcOverLsarpc
13
+ include RubySMB::Dcerpc::Efsrpc
14
+
15
+ UUID = RubySMB::Dcerpc::Efsrpc::LSARPC_UUID
16
+end
17
18
class MetasploitModule < Msf::Auxiliary
19
include Msf::Exploit::Remote::DCERPC
20
include Msf::Exploit::Remote::SMB::Client::Authenticated
@@ -20,7 +26,7 @@ class MetasploitModule < Msf::Auxiliary
26
# Efsrpc and it's normal UUID
21
27
PIPE_HANDLES = {
22
28
lsarpc: {
23
- endpoint: RubySMB::Dcerpc::Lsarpc,
29
+ endpoint: RubySMB::Dcerpc::EfsrpcOverLsarpc,
24
30
filename: 'lsarpc'.freeze
25
31
},
32
efsrpc: {
0 commit comments