OWASP Penetration Testing Kit

OWASP Penetration Testing Kit

OWASP Penetration Testing Kit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Denis Podgurskii",
  "name": "OWASP Penetration Testing Kit",
  "short_name": "OWASP PTK",
  "description": "OWASP Penetration Testing Kit",
  "version": "8.8.3.1",
  "manifest_version": 3,
  "incognito": "split",
  "background": {
    "service_worker": "app.js",
    "type": "module"
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals;"
  },
  "sandbox": {
    "pages": [
      "ptk/browser/showhtml.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ptk/packages/browser-polyfill/browser-polyfill.min.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ptk/content.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "notifications",
    "storage",
    "unlimitedStorage",
    "tabs",
    "webRequest",
    "background",
    "debugger",
    "scripting",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "128": "ptk/browser/assets/images/icon.png"
  },
  "action": {
    "default_icon": {
      "128": "ptk/browser/assets/images/icon.png"
    },
    "default_title": "OWASP Penetration Testing Kit",
    "default_popup": "ptk/browser/index.html"
  },
  "options_ui": {
    "page": "ptk/browser/settings.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ptk/*.js",
        "ptk/*.map",
        "ptk/*.png",
        "ptk/*.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}