admin管理员组文章数量:1346336
I'm building an app in node.js that allows users to upload documents using express and busboy. The user can upload multiple documents in one upload but is limited to a total file size of 20mb.
Is it possible to prevent a user from making multiple upload requests in a given amount of time? My concern is that someone could easily write a script to upload 20mb (the limit per upload) and repeat this 100x a minute or some large amount. It would be ideal to have a user only be able to upload once every 30 seconds or minute.
I'm building an app in node.js that allows users to upload documents using express and busboy. The user can upload multiple documents in one upload but is limited to a total file size of 20mb.
Is it possible to prevent a user from making multiple upload requests in a given amount of time? My concern is that someone could easily write a script to upload 20mb (the limit per upload) and repeat this 100x a minute or some large amount. It would be ideal to have a user only be able to upload once every 30 seconds or minute.
Share Improve this question asked Jul 14, 2016 at 22:29 Spark323Spark323 1,5852 gold badges16 silver badges31 bronze badges 1- 1 I believe you ultimately want some kind of rate-limiting... – Robert Rossmann Commented Jul 14, 2016 at 22:50
4 Answers
Reset to default 3If you'd like to rate-limit by IP, this module adds various configurations including the ability to apply the rule by path (example your upload function):
https://www.npmjs./package/express-rate-limit
I'd suggest rate-limiter-flexible package
const { RateLimiterMemory } = require('rate-limiter-
flexible');
const rateLimiter = new RateLimiterMemory(
{
points: 1,
duration: 30, // per 30 seconds
});
const rateLimiterMiddleware = (req, res, next) => {
const userId = getUserId();
// Consume 1 point for each action
rateLimiter.consume(userId) // or req.ip
.then(() => {
next();
})
.catch((rejRes) => {
res.status(429).send('Too Many Requests');
});
};
app.use('/upload', rateLimiterMiddleware);
Memory
works in current process memory only. There are also Cluster
, Mongo
and Redis
limiters for cluster and distributed apps
You could implement this in a number of ways, but I think probably the approach that makes the most sense to me is to have either a total upload limit per user, or some sort of date field that indicates when a specific user could upload a new set of files.
If you could provide some more details about your stack, I could probably help bang some code out.
You can use middleware to check it
app.use('/upload', upload-middleware, req-res-func)
upload-middleware
receivereq
, calc user by cookies/session-id/etc and stored last upload time. If current request time and prev time is match then callnext()
to forwarding request to req-res-function else callnext(new Error('Upload error...'))
.
本文标签: javascriptnodejs limit number of requests from a userStack Overflow
版权声明:本文标题:javascript - node.js limit number of requests from a user - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743826513a2545739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论