Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madjava/security-validation
Using express validator and other tools to protect web services and prevent potential secrity breaches
https://github.com/madjava/security-validation
Last synced: about 2 months ago
JSON representation
Using express validator and other tools to protect web services and prevent potential secrity breaches
- Host: GitHub
- URL: https://github.com/madjava/security-validation
- Owner: madjava
- Created: 2019-11-03T17:14:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-29T02:27:07.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T06:22:37.081Z (almost 2 years ago)
- Language: JavaScript
- Size: 544 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# security-validation
Using express validator and other tools to protect web services and prevent potential secrity breaches## Using Helmet
[Helmet](https://www.npmjs.com/package/helmet) is used to harden the Express server headers to set sane defaults and prevent common vulnerabiliy hacks## AuditJS
Auditjs can be used to check our dependency tree against vulnerability databases.```bash
npm run audit
```## Example Tasks
### Task 1 - Valdation checks on form inputs
- Validate a form input data
### Task 2 - Guard against JSON pollution
- Validate a API payload
### Task 3 - Properly encode input data
- Validate a form input and other URL inputs