idpawssamlinterceptor

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

idpawssamlinterceptor là gì?

idpawssamlinterceptor là một tiện ích mở rộng Chrome được phát triển bởi bob2build.2020, và tính năng chính của nó là "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng idpawssamlinterceptor

Tải xuống các tệp mở rộng idpawssamlinterceptor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên idpawssamlinterceptor idpawssamlinterceptor
ID albcpjbmlieijoffjiklpmlppfaacegn
URL Chính Thức https://chromewebstore.google.com/detail/idpawssamlinterceptor/albcpjbmlieijoffjiklpmlppfaacegn
Mô tả This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds
Kích Thước Tệp 1.24 MB
Số Lần Cài Đặt 147
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2019-02-12
Ngày Phát Hành 2019-02-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển bob2build.2020
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bob2build/idpawssamlinterceptor-chromextension
URL Trang Trợ Giúp https://github.com/bob2build/idpawssamlinterceptor-chromextension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}