Noovolari / leapp

Leapp is the DevTool to access your cloud
https://www.leapp.cloud/
Mozilla Public License 2.0
1.6k stars 146 forks source link

Issue with One-Hour Limit on Web Console Sessions for IAM Role Chained in Leapp #563

Open petrusdemelo opened 4 months ago

petrusdemelo commented 4 months ago

Describe the bug Leapp is unable to create web console sessions for IAM Role Chained that exceed one hour in duration. The issue stems from a typo in the parameter name responsible for setting session duration, which results in the parameter being unused. Additionally, AWS rejects requests for signing tokens exceeding 3599 seconds, responding with a 400 error. This is due to the Assume Role Token being generated from Temporary Credentials, which adheres to AWS policies restricting token durations to one hour for chained tokens.

Leapp Version v.0.26.0

To Reproduce Steps to reproduce the behavior:

  1. Go to settings
  2. Set the Default Webconsole Duration higher than one hour
  3. Create a IAM User session
  4. Create a IAM Role Chained session
  5. Open a Webconsole Duration from that Role Chained Session
  6. Be unlogged after one hour regardless of your configuration

Expected behavior I expected Leapp to create a web console session for IAM Role Chained with a duration exceeding one hour without encountering an error.

Desktop:

Additional context After debugging the code, I identified a typo in the parameter name for session duration, which prevented its correct usage.

https://github.com/Noovolari/leapp/pull/559

Furthermore, AWS started rejecting requests for signing tokens with durations longer than one hour, responding with a 400 error. The issue arises because the Assume Role Token is generated from Temporary Credentials, which falls under AWS policies limiting token durations for chained tokens.

To resolve this, I suggest discussing the feasibility of generating the Assume Role Token from user credentials instead of temporary credentials. I am willing to implement this change if it aligns with the application's design and security principles.

Thank you for your attention to this matter.

ericvilla commented 1 month ago

@petrusdemelo I'm quite sure the problem is related to the fact that the SessionDuration corresponds to the one you can specify from the global options dialog. The credentials - passed to the AWS /federation?Action=getSigninToken endpoint - are valid for 1 hour. This is a link to the code snippet that composes the signin token using the previously mentioned endpoint. I'm trying to replicate the bug to check if the assumptions I made are correct. I think this is a crucial feature for day-by-day activities