diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-03-08 06:07:29 -0600 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-03-08 06:07:29 -0600 |
commit | 7574b7370be083ff563fa8ad6d01d5ac776d7e4d (patch) | |
tree | 78aeb5d671e35aee8780fd92b2511cad00efd67d /internal/exec/exec.go | |
parent | d8eca7209d000609fea08d2973a402a41a4cf921 (diff) | |
download | goexec-7574b7370be083ff563fa8ad6d01d5ac776d7e4d.tar.gz goexec-7574b7370be083ff563fa8ad6d01d5ac776d7e4d.zip |
Add a bunch of DCE related options to TSCH module
Diffstat (limited to 'internal/exec/exec.go')
-rw-r--r-- | internal/exec/exec.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/exec/exec.go b/internal/exec/exec.go index a89cf7b..56edead 100644 --- a/internal/exec/exec.go +++ b/internal/exec/exec.go @@ -5,6 +5,10 @@ import ( "github.com/RedTeamPentesting/adauth" ) +const ( + ConnectionMethodDCE = "dcerpc" +) + type ConnectionConfig struct { ConnectionMethod string ConnectionMethodConfig interface{} |