├── .gitignore ├── README.md ├── broken_authentication ├── README.md ├── app.js ├── encryptModule.js └── package.json ├── command_injection ├── README.md └── app.js ├── cross_site_scripting └── README.md ├── direct_object_reference └── README.md ├── headers └── Authorization.js ├── package.json └── simpleServer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/README.md -------------------------------------------------------------------------------- /broken_authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/broken_authentication/README.md -------------------------------------------------------------------------------- /broken_authentication/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/broken_authentication/app.js -------------------------------------------------------------------------------- /broken_authentication/encryptModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/broken_authentication/encryptModule.js -------------------------------------------------------------------------------- /broken_authentication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/broken_authentication/package.json -------------------------------------------------------------------------------- /command_injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/command_injection/README.md -------------------------------------------------------------------------------- /command_injection/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/command_injection/app.js -------------------------------------------------------------------------------- /cross_site_scripting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/cross_site_scripting/README.md -------------------------------------------------------------------------------- /direct_object_reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/direct_object_reference/README.md -------------------------------------------------------------------------------- /headers/Authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/headers/Authorization.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/package.json -------------------------------------------------------------------------------- /simpleServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahengchang/nodejs-security-must-know/HEAD/simpleServer.js --------------------------------------------------------------------------------