SAML Message Decoder

Collects and displays SAML messages

Τι είναι το SAML Message Decoder;

Το SAML Message Decoder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Magnus Suther, και η κύρια λειτουργία του είναι "Collects and displays SAML messages".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης SAML Message Decoder

Λήψη αρχείων επέκτασης SAML Message Decoder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This tool helps you debug your SAML based SSO/SLO implementations. It runs in the background, collecting SAML messages as they are sent and received by the browser. When something didn't work as expected, just pop up the extension to view the latest SAML messages in cleartext (easily readable XML). This allows you see what happened, and to get an idea of how to solve those weird authorization issues.


=== Update 28 Nov/2017 ===
- Add support for EidSignRequest and EidSignResponse messages.


=== Update 26 Nov/2017 ===
- Remove the use of fullpage.js, as it never seemed to understand the dimensions of the Firefox popup window, and set the window height to zero most of the time.
- The popup should load faster now.
- Adjustments to make the extension look decent in the Firefox popup.


=== Update 8 Nov/2017 ===
- Fix an issue when parsing POST parameters containing additional parameters.


=== Update 7 Nov/2017 ===
- Fix an issue where large SAML messages (i.e responses with Assertions) weren't recorded. Caused by a recent Chrome update, where the POST:ed messages ended up in raw ArrayBuffers instead of in the usual FormData object.


=== Update 14 Aug/2017 ===
- Fix a bug causing the 'copy messages' toolbar not to show


=== Update 10 Aug/2017 ===
- Add functionality to copy one or more SAML messages to clipboard.


=== Update 07 Aug/2017 ===
- Rewritten from scratch
- Right-click menu with a few options
- Now supports exporting messages to .json file. Nice to have when you don't have access to the client's computer. They can now install this extension and send the export via mail for analysis.
- Refreshed GUI, with option to scroll vertically or horizontally (using arrow keys).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SAML Message Decoder SAML Message Decoder
ID mpabchoaimgbdbbjjieoaeiibojelbhm
Επίσημο URL https://chromewebstore.google.com/detail/saml-message-decoder/mpabchoaimgbdbbjjieoaeiibojelbhm
Περιγραφή Collects and displays SAML messages
Μέγεθος Αρχείου 450 KB
Αριθμός Εγκαταστάσεων 90,000
Τρέχουσα Έκδοση 2.1.1
Τελευταία Ενημέρωση 2017-11-28
Ημερομηνία Δημοσίευσης 2017-11-28
Αξιολόγηση 4.29/5 Συνολικά 31 Αξιολογήσεις
Προγραμματιστής Magnus Suther
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/magnussuther/saml-message-decoder-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/magnussuther/saml-message-decoder-extension/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SAML Message Decoder",
    "description": "Collects and displays SAML messages",
    "version": "2.1.1",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "static\/icon_16.png",
            "48": "static\/icon_48.png",
            "128": "static\/icon_128.png"
        }
    },
    "icons": {
        "16": "static\/icon_16.png",
        "48": "static\/icon_48.png",
        "128": "static\/icon_128.png"
    },
    "permissions": [
        "",
        "webRequest",
        "contextMenus",
        "storage",
        "downloads"
    ],
    "background": {
        "scripts": [
            "listener.js"
        ]
    }
}