diff options
Diffstat (limited to 'pkg/exec/scmr/module.go')
-rw-r--r-- | pkg/exec/scmr/module.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkg/exec/scmr/module.go b/pkg/exec/scmr/module.go deleted file mode 100644 index 1c855fb..0000000 --- a/pkg/exec/scmr/module.go +++ /dev/null @@ -1,31 +0,0 @@ -package scmrexec - -import ( - "github.com/bryanmcnulty/adauth" - "github.com/oiweiwei/go-msrpc/msrpc/scmr/svcctl/v2" - "github.com/rs/zerolog" - "github.com/FalconOpsLLC/goexec/pkg/client/dcerpc" -) - -type Executor struct { - creds *adauth.Credential - target *adauth.Target - hostname string - - log zerolog.Logger - dce *dcerpc.DCEClient - ctl svcctl.SvcctlClient -} - -type MethodCreateConfig struct { - NoDelete bool - ServiceName string - DisplayName string - ServiceType uint32 - StartType uint32 -} - -type MethodModifyConfig struct { - NoStart bool - ServiceName string -} |