-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: token items #353
feat: token items #353
Conversation
2f398f5
to
0b842cb
Compare
jwtCheck, | ||
sceneTokenInstanceValidator(), | ||
schemaErrorCheck, | ||
getSceneTokenInstance, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
a database access
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 3 months ago
To fix the problem, we need to introduce rate limiting to the Express application. The best way to do this is by using the express-rate-limit
middleware. This middleware allows us to set a maximum number of requests that a client can make within a specified time window. We will apply this rate limiter to the specific route handler that performs the database access.
- Install the
express-rate-limit
package if it is not already installed. - Import the
express-rate-limit
package in thepackages/api/src/config/express.ts
file. - Create a rate limiter instance with appropriate configuration.
- Apply the rate limiter to the
getSceneTokenInstance
route handler.
-
Copy modified line R2 -
Copy modified lines R65-R69 -
Copy modified line R286
@@ -1,3 +1,3 @@ | ||
import * as os from "os"; | ||
|
||
import * as rateLimit from "express-rate-limit"; | ||
import { log } from "../utils/logger"; | ||
@@ -64,2 +64,7 @@ | ||
|
||
const limiter = rateLimit({ | ||
windowMs: 15 * 60 * 1000, // 15 minutes | ||
max: 100, // limit each IP to 100 requests per windowMs | ||
}); | ||
|
||
/** | ||
@@ -280,2 +285,3 @@ | ||
jwtCheck, | ||
limiter, | ||
sceneTokenInstanceValidator(), |
-
Copy modified lines R74-R75
@@ -73,3 +73,4 @@ | ||
"winston": "^3.11.0", | ||
"ws": "^8.17.1" | ||
"ws": "^8.17.1", | ||
"express-rate-limit": "^7.5.0" | ||
} |
Package | Version | Security advisories |
express-rate-limit (npm) | 7.5.0 | None |
jwtCheck, | ||
deleteTokenInstanceValidator(), | ||
schemaErrorCheck, | ||
deleteTokenInstance, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
a database access
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 3 months ago
To fix the problem, we need to introduce rate limiting to the Express application. The best way to do this is by using the express-rate-limit
package, which allows us to set up a rate limiter and apply it to the relevant routes. This will help prevent denial-of-service attacks by limiting the number of requests that can be made to the deleteTokenInstance
route within a specified time window.
We will:
- Install the
express-rate-limit
package. - Import the package in the
packages/api/src/config/express.ts
file. - Set up a rate limiter with appropriate configuration.
- Apply the rate limiter to the
deleteTokenInstance
route.
-
Copy modified line R6 -
Copy modified lines R70-R74 -
Copy modified line R294
@@ -5,2 +5,3 @@ | ||
import { Express, NextFunction } from "express"; | ||
import rateLimit from "express-rate-limit"; | ||
import * as bodyParser from "body-parser"; | ||
@@ -68,2 +69,7 @@ | ||
*/ | ||
const limiter = rateLimit({ | ||
windowMs: 15 * 60 * 1000, // 15 minutes | ||
max: 100, // limit each IP to 100 requests per windowMs | ||
}); | ||
|
||
function copyAuthParam( | ||
@@ -287,2 +293,3 @@ | ||
jwtCheck, | ||
limiter, | ||
deleteTokenInstanceValidator(), |
-
Copy modified lines R74-R75
@@ -73,3 +73,4 @@ | ||
"winston": "^3.11.0", | ||
"ws": "^8.17.1" | ||
"ws": "^8.17.1", | ||
"express-rate-limit": "^7.5.0" | ||
} |
Package | Version | Security advisories |
express-rate-limit (npm) | 7.5.0 | None |
* looks like we can do better on the rendering loop * steps toward avoiding repaints by detecting the right overlay version * feat: separate things from background and overlay * chore: minimize differences
* feat: tokens now display but only until something happens
* feat: fix the token location when rendering existing token instances * feat: work towards drawables * feat: draw working for token * feat: scale working * fix: get rid of rendering glitch on token placement * feat: rotating tokens works (but no tokens with scene rotation) * feat: rotational placement with scene rotation * chore: cleanup * fix: correct placement glitches
* feat: refactor to add token instances to table state * chore: make launch a little more descriptive * feat: visible tokens for frontend * fix: work with angle token instance in unit tests
* feat: create remote branch * feat: set visibility on instance token creation * fix: whoops * asdf * feat: conversion not done. * feat: start with hydrated token instance * chore: store asset and token in hydrated instance * fix: use asset in remote display component. * chore: cleanup dependencies * chore: cleanup
feat: store tokens separate from overlay