Bishop Vulnerability Scanner

Search websites for git repos, exposed config files, and more as you browse.

Bishop Vulnerability Scannerคืออะไร?

Bishop Vulnerability Scanner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Kingsman และคุณลักษณะหลักของมันคือ "Search websites for git repos, exposed config files, and more as you browse."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bishop Vulnerability Scanner

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

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

                        Bishop is a vulnerability scanner that searches websites in the background while you browse, looking for exposed version control systems, misconfigured administrative tools, and more. With a whitelisting regex system, you can easily restrict this tool to hosts that you are authorized to scan.

It works by searching for files with a given path on the current URL path and all parent paths, applying given regex to the results to check for proof positive of a vulnerable location. If the path returns 200 and matches the regex, it's flagged as vulnerable and alerts you. All rules are run on all directories in a set of time-staggered background XHR requests, so network throughput remains high at all times.

Bishop comes with a set of rules that hunt for the lowest hanging fruit, but the rule system is entirely extensible - rules are regular expressions that are run on specified directories, so if you can turn it into a regex, Bishop will look for it.

Bishop is intended SOLELY for legal use on web servers that you control or are permitted to scan, and the developers are not responsible for how you choose to use this software.

Bishop is MIT licensed and open source; contribute at https://github.com/jkingsman/bishop.                    

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

ชื่อ Bishop Vulnerability Scanner Bishop Vulnerability Scanner
ID cbkdeoaaclnbidadjimofnhpbfhjakoe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bishop-vulnerability-scan/cbkdeoaaclnbidadjimofnhpbfhjakoe
คำอธิบาย Search websites for git repos, exposed config files, and more as you browse.
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 3,560
เวอร์ชันปัจจุบัน 1.0.12
อัปเดตครั้งล่าสุด 2019-01-20
วันที่เผยแพร่ 2019-01-20
คะแนน 3.75/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Jack Kingsman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jkingsman/bishop
URL หน้าช่วยเหลือ https://github.com/jkingsman/bishop
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bishop Vulnerability Scanner",
    "short_name": "Bishop",
    "version": "1.0.12",
    "description": "Search websites for git repos, exposed config files, and more as you browse.",
    "author": "Jack Kingsman ",
    "homepage_url": "https:\/\/github.com\/jkingsman\/bishop",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Bishop",
        "default_icon": {
            "19": "img\/bishop19.png",
            "38": "img\/bishop38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/bishop16.png",
        "48": "img\/bishop48.png",
        "128": "img\/bishop128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "audio\/alert.mp3",
        "alert.css"
    ]
}