In the filmRoutes folder, where we are defining endpoints for users to reach, there are some vulnerability concerns:
- Req.params & req.body are not getting checked in a lot of endpoints (all CRUD)
- When a user sends a request to an endpoint with input parameters, these need to be validated first
- We are aiming for:

In the filmRoutes folder, where we are defining endpoints for users to reach, there are some vulnerability concerns: