Burp Suite Navigation Recorder

Improve your Burp Suite scan coverage by manually capturing how to perform complex actions on your website.

Burp Suite Navigation Recorder란 무엇입니까?

Burp Suite Navigation Recorder은(는) https://portswigger.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your Burp Suite scan coverage by manually capturing how to perform complex actions on your website."입니다.

확장 프로그램 스크린샷

screenshot

Burp Suite Navigation Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Burp Suite Navigation Recorder is a Chrome extension that enables you to record complex navigation sequences, such as SSO logins, using your browser. You can then import the recording into Burp Suite Professional and Burp Suite Enterprise so that any future scans of the website can replicate your recorded actions. This can improve your Burp Suite scan coverage by increasing the attack surface that the Scanner is able to audit effectively.

To find more information about Burp Suite please visit:
https://portswigger.net/burp

To record an action sequence:
1. Click the Burp Suite Navigation Recorder extension icon at the top right.
2. Click start recording.
3. Load the web page where you want to begin capturing and carry out the action sequence.
4. Click the extension icon to stop recording and click copy to clipboard to save the data from the recording to your clipboard in JSON format.
5. Paste the JSON from your clipboard into Burp Suite.

Note that this extension works by recording clicks, pasted data, and keystrokes. To ensure that your action sequence is recorded properly, please avoid using any autocomplete functionality.

The recorded data on your clipboard will be automatically cleared when you paste it into Burp Suite.                    

확장 프로그램 기본 정보

이름 Burp Suite Navigation Recorder Burp Suite Navigation Recorder
ID anpapjclbjicacakeoggghfldppbkepg
공식 URL https://chromewebstore.google.com/detail/burp-suite-navigation-rec/anpapjclbjicacakeoggghfldppbkepg
설명 Improve your Burp Suite scan coverage by manually capturing how to perform complex actions on your website.
파일 크기 277 KB
설치 횟수 25,906
현재 버전 1.5.6
최근 업데이트 2024-02-17
출시 날짜 2020-04-17
평점 5.00/5 총 3 개의 평점
개발자 https://portswigger.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://portswigger.net/
도움말 페이지 URL https://portswigger.net/support
개인정보 보호 정책 페이지 URL https://portswigger.net/privacy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Burp Suite Navigation Recorder",
    "version": "1.5.6",
    "description": "Improve your Burp Suite scan coverage by manually capturing how to perform complex actions on your website.",
    "background": {
        "page": ".\/background\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/content-scripts\/classes\/Recorder.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_action": {
        "default_title": "Burp Suite Navigation Recorder",
        "default_popup": ".\/popup\/popup.html",
        "default_icon": {
            "16": "images\/WebApp-Recorder-16.png",
            "32": "images\/WebApp-Recorder-32.png",
            "48": "images\/WebApp-Recorder-48.png",
            "128": "images\/WebApp-Recorder-128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "clipboardWrite",
        "webNavigation",
        "privacy",
        "notifications",
        "webRequest"
    ],
    "icons": {
        "16": "images\/WebApp-Recorder-16.png",
        "32": "images\/WebApp-Recorder-32.png",
        "48": "images\/WebApp-Recorder-48.png",
        "128": "images\/WebApp-Recorder-128.png"
    },
    "manifest_version": 2
}