Shellshock Checker

Shellshock Checker

Chrome extension to check for the 'Shellshock' CVE-2014-6271 & CVE-2014-7169 vulnerability.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shellshock Checker",
  "author": "Shubham Shah",
  "version": "1.16",
  "manifest_version": 2,
  "description": "Chrome extension to check for the 'Shellshock' CVE-2014-6271 & CVE-2014-7169 vulnerability.",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/defaultIcon19x19.png",
    "default_popup": "popup.html",
    "default_title": "Shellshock Checker"
  },
  "minimum_chrome_version": "18",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "notifications"
  ]
}