andregardi/jwt-express-typeorm

5 errors, 9 warningsmaster

14 issues need attention.

5 errors and 9 warnings in the paths between 7 routes and 1 tables.

ROUTE FINDINGS7 of 7 · 7/7 rules
ROUTES
7
TABLES
1
FILES READ
11
RULES RUN
7/7

14 findings

  • GET /user/ can reach user without authenticating.

    auth-before-dataGET /user/ → user

  • GET /user/:id([0-9]+) can reach user without authenticating.

    auth-before-dataGET /user/:id([0-9]+) → user

  • POST /user/ can reach user without authenticating.

    auth-before-dataPOST /user/ → user

  • PATCH /user/:id([0-9]+) can reach user without authenticating.

    auth-before-dataPATCH /user/:id([0-9]+) → user

  • DELETE /user/:id([0-9]+) can reach user without authenticating.

    auth-before-dataDELETE /user/:id([0-9]+) → user

  • POST /auth/login reaches user without auth, which is expected for an authentication endpoint.

    auth-entry-publicPOST /auth/login → user

  • POST /auth/change-password reaches user without auth, which is expected for an authentication endpoint.

    auth-entry-publicPOST /auth/change-password → user

  • POST /auth/login has no validator or rate limiter attached.

    public-entry-guarded

  • POST /auth/change-password has no validator or rate limiter attached.

    public-entry-guarded

  • GET /user/ has no validator or rate limiter attached.

    public-entry-guarded

  • GET /user/:id([0-9]+) has no validator or rate limiter attached.

    public-entry-guarded

  • POST /user/ has no validator or rate limiter attached.

    public-entry-guarded

  • PATCH /user/:id([0-9]+) has no validator or rate limiter attached.

    public-entry-guarded

  • DELETE /user/:id([0-9]+) has no validator or rate limiter attached.

    public-entry-guarded

Free account, no card. The repository opens as an editable graph.

Add this check to the README

wyro architecture badge
[![wyro architecture](https://wyro.in/api/badge/andregardi/jwt-express-typeorm)](https://wyro.in/scan/andregardi/jwt-express-typeorm)

It updates itself whenever the repository changes and links back to this report.

What this is

Wyro reads the repository’s routes and data models and checks the paths between them: whether a route can reach a table without passing a guard, whether a datastore holding personal data is exposed to a public read, whether an endpoint that issues credentials requires the credentials it issues.

It is rule-based, not a model. The same commit produces the same result every time, and it does not guess at business rules it cannot see. A rule with nothing to look at is reported as not having run — never as a pass.

This check runs on public source through GitHub’s own API and needs no account. A free account adds the editable architecture canvas, private repositories on paid plans, and a CI gate. No card required.