BreachLock Platform Login Assistant

The login assistent will help you submit your login details to the BreachLock Platform.

BreachLock Platform Login Assistantคืออะไร?

BreachLock Platform Login Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย breachlocklabs และคุณลักษณะหลักของมันคือ "The login assistent will help you submit your login details to the BreachLock Platform."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BreachLock Platform Login Assistant

ดาวน์โหลดไฟล์ส่วนขยาย BreachLock Platform Login Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Overview:

The BreachLock Login Assistant chrome extension allows you to choose from multiple authentication methods to run an authenticated scan on your web application.

The extension provides two different authentication methods:

1) Record your session cookie:

The extension records the session cookie provided by you during the authentication and uses the same session cookie to login to your web application.

2) Record your login sequence.

The extension records a login sequence (trail) or any specific behavior required and replays the sequence in the exact order to login to your web application.

Authentication can help us provide you a more comprehensive security evaluation of your web application.

Complete the following steps to use BreachLock Login Assistant :

1. Download the BreachLock extension by clicking on "Add to Chrome"

2. Click on the BreachLock icon in the address bar to open the extension.

3. Depending on the method you want to use, choose Method 1 to record session cookie or Method 2 to record login sequence.

4. Follow the instructions in the popup.

5. Provide the authentication token.

You can get the “authentication token” from “Scans” under “Web Application Scanning (DAST)” module after logging into the BreachLock SaaS platform. Visit the following URL to get the associated authentication token for your web application: https://app.breachlock.com/assets/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BreachLock Platform Login Assistant BreachLock Platform Login Assistant
ID dkpdnmphihnicnlkmpkjgdkmkgnkijfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/breachlock-platform-login/dkpdnmphihnicnlkmpkjgdkmkgnkijfj
คำอธิบาย The login assistent will help you submit your login details to the BreachLock Platform.
ขนาดไฟล์ 112 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2022-07-18
วันที่เผยแพร่ 2020-04-14
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา breachlocklabs
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.breachlock.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "BLP Login Assistant",
    "name": "BreachLock Platform Login Assistant",
    "description": "The login assistent will help you submit your login details to the BreachLock Platform.",
    "version": "1.2",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "main_popup_choose_auth_method.html",
        "default_icon": {
            "16": "img\/Favicon Lock-16.png",
            "32": "img\/Favicon Lock-32.png",
            "48": "img\/Favicon Lock-48.png",
            "128": "img\/Favicon Lock-128.png"
        },
        "default_title": "BLP Login Assistant"
    },
    "icons": {
        "16": "img\/Favicon Lock-16.png",
        "32": "img\/Favicon Lock-32.png",
        "48": "img\/Favicon Lock-48.png",
        "128": "img\/Favicon Lock-128.png"
    },
    "background": {
        "scripts": [
            "js\/plugin_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/browser_background.js"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "activeTab",
        "storage",
        ""
    ]
}