Magnet AXIOM Cloud Authenticator

Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations

Was ist Magnet AXIOM Cloud Authenticator?

Magnet AXIOM Cloud Authenticator ist eine Chrome-Erweiterung, die von Magnet Forensics entwickelt wurde, und ihr Hauptmerkmal ist "Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations".

Erweiterungsscreenshots

screenshot

Magnet AXIOM Cloud Authenticator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Magnet AXIOM Cloud Authenticator-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

                        *WARNING*
DO NOT DOWNLOAD THIS EXTENSION WITHOUT GOING THROUGH THE MAGNET AXIOM WORKFLOW 
OR IT WILL RENDER YOUR CHROME BROWSER UNUSABLE 

If you have already installed this extension on your local chrome profile or for more information about this extension see:

https://support.magnetforensics.com/s/article/Download-and-install-Magnet-AXIOM-Cloud-Authenticator-browser-extension

The Magnet AXIOM Cloud Authenticator extension allows you to authenticate a target account using your Chrome browser. In Magnet AXIOM, when you select the Google Chrome authentication option, a Chrome browser launches, and the cookies from the target profile are exported and sent to AXIOM using a localhost connection.                    

Grundlegende Informationen zur Erweiterung

Name Magnet AXIOM Cloud Authenticator Magnet AXIOM Cloud Authenticator
ID khjaonjhlkgoaigckfbmnaednhkhhaml
Offizielle URL https://chromewebstore.google.com/detail/magnet-axiom-cloud-authen/khjaonjhlkgoaigckfbmnaednhkhhaml
Beschreibung Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations
Dateigröße 20.38 KB
Installationsanzahl 315
Aktuelle Version 1.3
Letztes Update 2024-01-16
Veröffentlichungsdatum 2022-02-24
Entwickler Magnet Forensics
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.magnetforensics.com/magnet-privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Magnet AXIOM Cloud Authenticator",
    "description": "Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations",
    "version": "1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "extension.js",
        "type": "module"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost:*\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "all_frames": true,
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "\/images\/magnet_icon16.png",
        "32": "\/images\/magnet_icon32.png",
        "48": "\/images\/magnet_icon48.png",
        "128": "\/images\/magnet_icon128.png"
    },
    "permissions": [
        "cookies",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.google.com\/*",
        "https:\/\/.google.com\/",
        "http:\/\/.google.com\/",
        "https:\/\/accounts.google.com\/",
        "http:\/\/accounts.google.com\/",
        "https:\/\/accounts.youtube.com\/",
        "http:\/\/accounts.youtube.com\/"
    ],
    "content_security_policy": {
        "extension_pages": "script-src http:\/\/localhost;  object-src http:\/\/localhost;"
    }
}