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: 3 days 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-05-18T09:28:05.000Z (26 days ago)
- Last Synced: 2026-05-18T11:27:54.638Z (26 days ago)
- Language: JavaScript
- Size: 213 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
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