-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
18 lines (18 loc) · 889 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "intro-to-command-injection",
"version": "1.0.0",
"description": "Command Injection is a critical concern for web application security. In this presenation I'll delve into how this common vulnerability can compromise web applications and why it's vital for developers to be aware of it. Through a demonstration using a Node/Express application, we'll explore both the risks and the effective strategies to mitigate them. By the end of this presentation my objective is that you gain not only awareness but also practical insights into safeguarding your web applications against such threats",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.9",
"express": "^4.18.2"
},
"devDependencies": {}
}