idpawssamlinterceptor

This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds

Was ist idpawssamlinterceptor?

idpawssamlinterceptor ist eine Chrome-Erweiterung, die von bob2build.2020 entwickelt wurde, und ihr Hauptmerkmal ist "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds".

Erweiterungsscreenshots

screenshot
screenshot

idpawssamlinterceptor-Erweiterungs-CRX-Datei herunterladen

Laden Sie idpawssamlinterceptor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A chrome extention to intercept Saml Assersion passed from IDP (Identity Provider like OKTA) to AWS. The SAML assertion can be used to generate CLI credentials which can be used in other tools such as awscli, terraform etc.


This chrome extention, listens for requests to signin requests to signin.aws.amazon.com and holds the SAML assertion metadata in memory. The extension provides a popup to generate CLI credentials and download them.

This tool is inspired from 
* https://github.com/prolane/samltoawsstskeys
* https://aws.amazon.com/blogs/security/how-to-implement-federated-api-and-cli-access-using-saml-2-0-and-ad-fs/                    

Grundlegende Informationen zur Erweiterung

Name idpawssamlinterceptor idpawssamlinterceptor
ID albcpjbmlieijoffjiklpmlppfaacegn
Offizielle URL https://chromewebstore.google.com/detail/idpawssamlinterceptor/albcpjbmlieijoffjiklpmlppfaacegn
Beschreibung This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds
Dateigröße 1.24 MB
Installationsanzahl 147
Aktuelle Version 0.1.1
Letztes Update 2019-02-12
Veröffentlichungsdatum 2019-02-12
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler bob2build.2020
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/bob2build/idpawssamlinterceptor-chromextension
Hilfeseite URL https://github.com/bob2build/idpawssamlinterceptor-chromextension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "idpawssamlinterceptor",
    "description": "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds",
    "version": "0.1.1",
    "permissions": [
        "webRequest",
        "*:\/\/signin.aws.amazon.com\/*",
        "*:\/\/informatica.okta.com\/*",
        "background",
        "downloads"
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "IDP AWS SAML Interceptor"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "app\/background.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}