git-svn-id: https://beef.googlecode.com/svn/trunk@1300 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
18 lines
599 B
JSON
18 lines
599 B
JSON
{
|
|
//originally created by Nithin Bekal
|
|
"name": "BeEF vulnerable chrome extensions (TodoList)",
|
|
"version": "1.0",
|
|
// when the browser icon is clicked, a new tab is open to maintain persistence (chrome.tabs.create)
|
|
// for the sake of testing...unfortunately the popup is closed when the user is not focusing on it.
|
|
// See at the end of index.html file.
|
|
"description": "A simple todo list in HTML5 with localStorage, vulnerable to XSS.",
|
|
"browser_action": {
|
|
"default_icon": "favicon.ico",
|
|
"popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
]
|
|
} |