Expected Findings
- Login query passes JSON sub-objects directly into Mongo as operators.
- `{$ne:""}` matches any non-empty password.
- Account list endpoint accepts `{$gt:""}` to enumerate users.
The login route hands the request body straight to Mongo, so operator objects like `$ne` and `$gt` flip authentication into a wildcard.
db.users.findOne(req.body) // no schema check