-
Notifications
You must be signed in to change notification settings - Fork 562
/
shibboleth.go
420 lines (329 loc) · 11.6 KB
/
shibboleth.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package shibboleth
import (
"crypto/tls"
"fmt"
"html"
"io/ioutil"
"log"
"net/http"
"net/url"
"regexp"
"strings"
"time"
"github.com/PuerkitoBio/goquery"
"github.com/pkg/errors"
"github.com/tidwall/gjson"
"github.com/versent/saml2aws/v2/pkg/cfg"
"github.com/versent/saml2aws/v2/pkg/creds"
"github.com/versent/saml2aws/v2/pkg/prompter"
"github.com/versent/saml2aws/v2/pkg/provider"
)
// Client wrapper around Shibboleth enabling authentication and retrieval of assertions
type Client struct {
provider.ValidateBase
client *provider.HTTPClient
idpAccount *cfg.IDPAccount
}
// New create a new Shibboleth client
func New(idpAccount *cfg.IDPAccount) (*Client, error) {
tr := &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{InsecureSkipVerify: idpAccount.SkipVerify, Renegotiation: tls.RenegotiateFreelyAsClient},
}
client, err := provider.NewHTTPClient(tr, provider.BuildHttpClientOpts(idpAccount))
if err != nil {
return nil, errors.Wrap(err, "error building http client")
}
return &Client{
client: client,
idpAccount: idpAccount,
}, nil
}
// Authenticate authenticate to Shibboleth and return the data from the body of the SAML assertion.
func (sc *Client) Authenticate(loginDetails *creds.LoginDetails) (string, error) {
var authSubmitURL string
var samlAssertion string
shibbolethURL := fmt.Sprintf("%s/idp/profile/SAML2/Unsolicited/SSO?providerId=%s", loginDetails.URL, sc.idpAccount.AmazonWebservicesURN)
res, err := sc.client.Get(shibbolethURL)
if err != nil {
return samlAssertion, errors.Wrap(err, "error retrieving form")
}
doc, err := goquery.NewDocumentFromReader(res.Body)
if err != nil {
return samlAssertion, errors.Wrap(err, "failed to build document from response")
}
authForm := url.Values{}
doc.Find("input").Each(func(i int, s *goquery.Selection) {
updateFormData(authForm, s, loginDetails)
})
doc.Find("form").Each(func(i int, s *goquery.Selection) {
action, ok := s.Attr("action")
if !ok {
return
}
authSubmitURL = action
})
if authSubmitURL == "" {
return samlAssertion, fmt.Errorf("unable to locate IDP authentication form submit URL")
}
req, err := http.NewRequest("POST", authSubmitURL, strings.NewReader(authForm.Encode()))
if err != nil {
return samlAssertion, errors.Wrap(err, "error building authentication request")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.URL.Host = res.Request.URL.Host
req.URL.Scheme = res.Request.URL.Scheme
res, err = sc.client.Do(req)
if err != nil {
return samlAssertion, errors.Wrap(err, "error retrieving login form results")
}
switch sc.idpAccount.MFA {
case "Auto":
b, _ := ioutil.ReadAll(res.Body)
mfaRes, err := verifyMfa(sc, loginDetails, loginDetails.URL, string(b))
if err != nil {
return mfaRes.Status, errors.Wrap(err, "error verifying MFA")
}
res = mfaRes
}
samlAssertion, err = extractSamlResponse(res)
if err != nil {
return samlAssertion, errors.Wrap(err, "error extracting SAMLResponse blob from final Shibboleth response")
}
return samlAssertion, nil
}
func updateFormData(authForm url.Values, s *goquery.Selection, user *creds.LoginDetails) {
name, ok := s.Attr("name")
authForm.Add("_eventId_proceed", "")
if !ok {
return
}
lname := strings.ToLower(name)
if strings.Contains(lname, "user") {
authForm.Add(name, user.Username)
} else if strings.Contains(lname, "email") {
authForm.Add(name, user.Username)
} else if strings.Contains(lname, "pass") {
authForm.Add(name, user.Password)
} else {
// pass through any hidden fields
val, ok := s.Attr("value")
if !ok {
return
}
authForm.Add(name, val)
}
}
func verifyMfa(oc *Client, loginDetails *creds.LoginDetails, shibbolethHost string, resp string) (*http.Response, error) {
duoHost, postAction, tx, app, csrfToken := parseTokens(resp)
parent := fmt.Sprintf(shibbolethHost + postAction)
duoTxCookie, err := verifyDuoMfa(oc, loginDetails, duoHost, parent, tx)
if err != nil {
return nil, errors.Wrap(err, "error when interacting with Duo iframe")
}
idpForm := url.Values{}
idpForm.Add("_eventId", "proceed")
idpForm.Add("sig_response", duoTxCookie+":"+app)
idpForm.Add("csrf_token", csrfToken)
req, err := http.NewRequest("POST", parent, strings.NewReader(idpForm.Encode()))
if err != nil {
return nil, errors.Wrap(err, "error posting multi-factor verification to shibboleth server")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err := oc.client.Do(req)
if err != nil {
return nil, errors.Wrap(err, "error retrieving verify response")
}
return res, nil
}
func verifyDuoMfa(oc *Client, loginDetails *creds.LoginDetails, duoHost string, parent string, tx string) (string, error) {
// initiate duo mfa to get sid
duoSubmitURL := fmt.Sprintf("https://%s/frame/web/v1/auth", duoHost)
duoForm := url.Values{}
duoForm.Add("parent", parent)
duoForm.Add("java_version", "")
duoForm.Add("java_version", "")
duoForm.Add("flash_version", "")
duoForm.Add("screen_resolution_width", "3008")
duoForm.Add("screen_resolution_height", "1692")
duoForm.Add("color_depth", "24")
req, err := http.NewRequest("POST", duoSubmitURL, strings.NewReader(duoForm.Encode()))
if err != nil {
return "", errors.Wrap(err, "error building authentication request")
}
q := req.URL.Query()
q.Add("tx", tx)
req.URL.RawQuery = q.Encode()
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err := oc.client.Do(req)
if err != nil {
return "", errors.Wrap(err, "error retrieving verify response")
}
// retrieve response from post
doc, err := goquery.NewDocumentFromReader(res.Body)
if err != nil {
return "", errors.Wrap(err, "error parsing document")
}
// Duo cookie is returned here if mfa bypassed - immediatly return it if found
duoTxCookie, ok := doc.Find("input[name=\"js_cookie\"]").Attr("value")
if ok {
if duoTxCookie == "" {
return "", errors.Wrap(err, "duoMfaBypass: invalid response cookie")
}
return duoTxCookie, nil
}
// Duo cookie not found - continue with full MFA transaction
duoSID, ok := doc.Find("input[name=\"sid\"]").Attr("value")
if !ok {
return "", errors.Wrap(err, "unable to locate saml response")
}
duoSID = html.UnescapeString(duoSID)
//prompt for mfa type
//supporting push, call, and passcode for now
var token string
var duoMfaOptions = []string{
"Duo Push",
"Phone Call",
"Passcode",
}
duoMfaOption := 0
if loginDetails.DuoMFAOption == "Duo Push" {
duoMfaOption = 0
} else if loginDetails.DuoMFAOption == "Phone Call" {
duoMfaOption = 1
} else if loginDetails.DuoMFAOption == "Passcode" {
duoMfaOption = 2
} else {
duoMfaOption = prompter.Choose("Select a DUO MFA Option", duoMfaOptions)
}
if duoMfaOptions[duoMfaOption] == "Passcode" {
//get users DUO MFA Token
token = prompter.StringRequired("Enter passcode")
}
// send mfa auth request
duoSubmitURL = fmt.Sprintf("https://%s/frame/prompt", duoHost)
duoForm = url.Values{}
duoForm.Add("sid", duoSID)
duoForm.Add("device", "phone1")
duoForm.Add("factor", duoMfaOptions[duoMfaOption])
duoForm.Add("out_of_date", "false")
if duoMfaOptions[duoMfaOption] == "Passcode" {
duoForm.Add("passcode", token)
}
req, err = http.NewRequest("POST", duoSubmitURL, strings.NewReader(duoForm.Encode()))
if err != nil {
return "", errors.Wrap(err, "error building authentication request")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err = oc.client.Do(req)
if err != nil {
return "", errors.Wrap(err, "error retrieving verify response")
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return "", errors.Wrap(err, "error retrieving body from response")
}
resp := string(body)
duoTxStat := gjson.Get(resp, "stat").String()
duoTxID := gjson.Get(resp, "response.txid").String()
if duoTxStat != "OK" {
return "", errors.Wrap(err, "error authenticating mfa device")
}
// get duo cookie
duoSubmitURL = fmt.Sprintf("https://%s/frame/status", duoHost)
duoForm = url.Values{}
duoForm.Add("sid", duoSID)
duoForm.Add("txid", duoTxID)
req, err = http.NewRequest("POST", duoSubmitURL, strings.NewReader(duoForm.Encode()))
if err != nil {
return "", errors.Wrap(err, "error building authentication request")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err = oc.client.Do(req)
if err != nil {
return "", errors.Wrap(err, "error retrieving verify response")
}
body, err = ioutil.ReadAll(res.Body)
if err != nil {
return "", errors.Wrap(err, "error retrieving body from response")
}
resp = string(body)
duoTxResult := gjson.Get(resp, "response.result").String()
duoResultURL := gjson.Get(resp, "response.result_url").String()
log.Println(gjson.Get(resp, "response.status").String())
if duoTxResult != "SUCCESS" {
//poll as this is likely a push request
for {
time.Sleep(3 * time.Second)
req, err = http.NewRequest("POST", duoSubmitURL, strings.NewReader(duoForm.Encode()))
if err != nil {
return "", errors.Wrap(err, "error building authentication request")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err = oc.client.Do(req)
if err != nil {
return "", errors.Wrap(err, "error retrieving verify response")
}
body, err = ioutil.ReadAll(res.Body)
if err != nil {
return "", errors.Wrap(err, "error retrieving body from response")
}
resp := string(body)
duoTxResult = gjson.Get(resp, "response.result").String()
duoResultURL = gjson.Get(resp, "response.result_url").String()
log.Println(gjson.Get(resp, "response.status").String())
if duoTxResult == "FAILURE" {
return "", errors.Wrap(err, "failed to authenticate device")
}
if duoTxResult == "SUCCESS" {
break
}
}
}
duoRequestURL := fmt.Sprintf("https://%s%s", duoHost, duoResultURL)
req, err = http.NewRequest("POST", duoRequestURL, strings.NewReader(duoForm.Encode()))
if err != nil {
return "", errors.Wrap(err, "error constructing request object to result url")
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err = oc.client.Do(req)
if err != nil {
return "", errors.Wrap(err, "error retrieving duo result response")
}
body, err = ioutil.ReadAll(res.Body)
if err != nil {
return "", errors.Wrap(err, "duoResultSubmit: error retrieving body from response")
}
resp = string(body)
duoTxCookie = gjson.Get(resp, "response.cookie").String()
if duoTxCookie == "" {
return "", errors.Wrap(err, "duoResultSubmit: Unable to get response.cookie")
}
return duoTxCookie, nil
}
func parseTokens(blob string) (string, string, string, string, string) {
hostRgx := regexp.MustCompile(`data-host=\"(.*?)\"`)
sigRgx := regexp.MustCompile(`data-sig-request=\"(.*?)\"`)
dpaRgx := regexp.MustCompile(`data-post-action=\"(.*?)\"`)
csrfRgx := regexp.MustCompile(`name=\"csrf_token\" value=\"(.*?)\"`)
dataSigRequest := sigRgx.FindStringSubmatch(blob)
duoHost := hostRgx.FindStringSubmatch(blob)
postAction := dpaRgx.FindStringSubmatch(blob)
// extract the Shibboleth v4 CSRF token, if present
csrfToken := ""
csrfTokenMatch := csrfRgx.FindStringSubmatch(blob)
if len(csrfTokenMatch) != 0 {
csrfToken = csrfTokenMatch[1]
}
duoSignatures := strings.Split(dataSigRequest[1], ":")
return duoHost[1], postAction[1], duoSignatures[0], duoSignatures[1], csrfToken
}
func extractSamlResponse(res *http.Response) (string, error) {
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return "", errors.Wrap(err, "extractSamlResponse: error retrieving body from response")
}
samlRgx := regexp.MustCompile(`name=\"SAMLResponse\" value=\"(.*?)\"/>`)
samlResponseValue := samlRgx.FindStringSubmatch(string(body))
return samlResponseValue[1], nil
}