Risk Intelligence Web Extension

Risk Intelligence Web Extension powered by Cyberint

Risk Intelligence Web Extension란 무엇입니까?

Risk Intelligence Web Extension은(는) https://cyberint.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Risk Intelligence Web Extension powered by Cyberint"입니다.

확장 프로그램 스크린샷

screenshot

Risk Intelligence Web Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Enrich IOCs and CVEs in any website with intelligence from hundreds of
sources from the open, deep and dark web.

Get unique risk score and intelligence-based risk factors, detect C2 Servers, Botnets, Infected Machines and more within any webpage in a click of button.

Works perfect with your web interfaces of SOC systems, SIEM, EDR, and any blogs and news sites.

Cyberint fuses threat intelligence with attack surface management, providing organizations with
extensive integrated visibility into their external risk exposure. Leveraging
autonomous discovery of all external-facing assets, coupled with open, deep
& dark web intelligence, the solution allows cybersecurity teams to uncover
their most relevant known and unknown digital risks - earlier. Global
customers, including Fortune 500 leaders across all major market verticals,
rely on Cyberint to prevent, detect, investigate, and remediate phishing,
fraud, ransomware, brand abuse, data leaks, external vulnerabilities and more,
ensuring continuous external protection from cyber threats.                    

확장 프로그램 기본 정보

이름 Risk Intelligence Web Extension Risk Intelligence Web Extension
ID nkiomlfnhcldoiogembgepanimfdafip
공식 URL https://chromewebstore.google.com/detail/risk-intelligence-web-ext/nkiomlfnhcldoiogembgepanimfdafip
설명 Risk Intelligence Web Extension powered by Cyberint
파일 크기 553 KB
설치 횟수 165
현재 버전 1.2.2
최근 업데이트 2023-01-30
출시 날짜 2022-08-10
평점 5.00/5 총 1 개의 평점
개발자 https://cyberint.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://cyberint.com/
도움말 페이지 URL https://cyberint.com/customer-support/
개인정보 보호 정책 페이지 URL https://cyberint.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Risk Intelligence Web Extension",
    "description": "Risk Intelligence Web Extension powered by Cyberint",
    "version": "1.2.2",
    "manifest_version": 3,
    "icons": {
        "16": "favIcon-enabled.png",
        "48": "favIcon-enabled.png",
        "128": "favIcon-enabled.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Risk Intelligence Web Extension powered by Cyberint",
        "default_icon": "favIcon-enabled.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ]
}