We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d12458a commit 5239c1cCopy full SHA for 5239c1c
src/cmd/brute/adfs.go
@@ -39,7 +39,7 @@ go run main.go bruteSpray adfs -t adfs.contoso.com -u [email protected] -p A
39
orchestratorOptions := orchestrator.Orchestrator{}
40
orchestratorOptions.PreActionBruteforce = adfs.CheckTarget
41
orchestratorOptions.AuthenticationFunc = adfs.Authenticate
42
- validUsers = orchestratorOptions.Bruteforce(&o365Options)
+ validUsers = orchestratorOptions.Bruteforce(&adfsOptions)
43
},
44
}
45
src/modules/adfs/struct.go
@@ -13,6 +13,10 @@ type Options struct {
13
utils.BaseOptions
14
15
16
+func (options *Options) GetBaseOptions() *utils.BaseOptions {
17
+ return &options.BaseOptions
18
+}
19
+
20
type userRealm struct {
21
AuthNForwardType int64 `json:"AuthNForwardType"`
22
AuthURL string `json:"AuthURL"`
0 commit comments