Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSessionToken (0.16 sec)

  1. cmd/auth-handler.go

    	}) {
    		// Request is allowed return the appropriate access key.
    		return cred, ErrNone
    	}
    
    	return cred, ErrAccessDenied
    }
    
    // Fetch the security token set by the client.
    func getSessionToken(r *http.Request) (token string) {
    	token = r.Header.Get(xhttp.AmzSecurityToken)
    	if token != "" {
    		return token
    	}
    	return r.Form.Get(xhttp.AmzSecurityToken)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	if user.IsTemp() || user.IsServiceAccount() {
    		return auth.Credentials{}, ErrAccessDenied
    	}
    
    	// Session tokens are not allowed in STS AssumeRole requests.
    	if getSessionToken(r) != "" {
    		return auth.Credentials{}, ErrAccessDenied
    	}
    
    	return user, ErrNone
    }
    
    func parseForm(r *http.Request) error {
    	if err := r.ParseForm(); err != nil {
    		return err
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 21:31:13 GMT 2024
    - 34.7K bytes
    - Viewed (2)
Back to top