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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improve your Burp Suite scan coverage by manually capturing how to perform complex actions on your website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Burp Suite Navigation Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}