From 516068c8d1423303eeb0d4a6dbe5162553f5996c Mon Sep 17 00:00:00 2001 From: poq79 <43519176+poq79@users.noreply.github.com> Date: Sat, 4 Nov 2023 16:54:05 +0800 Subject: [PATCH] Bug Fix: Incorrect return of RPC protocol name --- pkg/plugins/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugins/types.go b/pkg/plugins/types.go index a18843a..6d12926 100644 --- a/pkg/plugins/types.go +++ b/pkg/plugins/types.go @@ -307,7 +307,7 @@ type RPCB struct { Owner string `json:"owner"` } -func (e ServiceRPC) Type() string { return ProtoRDP } +func (e ServiceRPC) Type() string { return ProtoRPC } type ServiceSMB struct { SigningEnabled bool `json:"signingEnabled"` // e.g. Is SMB Signing Enabled?