New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

simple-aws-mfa

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-aws-mfa

Making MFA easier

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

AWS-MFA

Making MFA easier

First you should configure MFA in your account by adding the following to the actions your cli user is authorized to

"Condition":
{
    "Null":{"aws:MultiFactorAuthAge":"false"}
}

then take note of you MFA ARN

then execute the following

eval $(npx simple-aws-mfa <mfa-arn> <token>)

this could be wrapped into a bash function

aws-mfa-login(){
    eval $(npx simple-aws-mfa <mfa-arn> $1)
}

and called without the mfa-arn

aws-mfa-login <token>   

or if you have multiple aws accounts

aws-account1(){
    export AWS_SECRET_ACCESS_KEY="..."
    export AWS_ACCESS_KEY_ID="..."
    eval $(npx simple-aws-mfa <mfa-arn-1> $1)
}

aws-account2(){
    export AWS_SECRET_ACCESS_KEY="..."
    export AWS_ACCESS_KEY_ID="..."
    eval $(npx simple-aws-mfa <mfa-arn-2> $1)
}

Note that after logging in, your AWS_SECRET_ACCESS_KEY and AWS_ACCESS_KEY_ID will be stomped on by the STS values from your MFA. So you should close your bash session and create a new one to start from scratch.

FAQs

Package last updated on 17 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts