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.
2 parents 589b906 + b3c2ae4 commit 936e0dfCopy full SHA for 936e0df
modules/auxiliary/scanner/dcerpc/petitpotam.rb
@@ -10,6 +10,13 @@
10
require 'ruby_smb/dcerpc/efsrpc'
11
12
class MetasploitModule < Msf::Auxiliary
13
+
14
+ module EfsrpcOverLsarpc
15
+ include RubySMB::Dcerpc::Efsrpc
16
17
+ UUID = RubySMB::Dcerpc::Efsrpc::LSARPC_UUID
18
+ end
19
20
include Msf::Exploit::Remote::DCERPC
21
include Msf::Exploit::Remote::SMB::Client::Authenticated
22
include Msf::Auxiliary::Scanner
@@ -20,7 +27,7 @@ class MetasploitModule < Msf::Auxiliary
27
# Efsrpc and it's normal UUID
28
PIPE_HANDLES = {
29
lsarpc: {
23
- endpoint: RubySMB::Dcerpc::Lsarpc,
30
+ endpoint: EfsrpcOverLsarpc,
24
31
filename: 'lsarpc'.freeze
25
32
},
26
33
efsrpc: {
0 commit comments