Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
co-assert-timeout
Advanced tools
Assert that a thunk or generator takes less than a certain amount of time. Note that it does not stop the thunk or generator from finish executing.
To set the timeout of all the downstream middleware, you can do the following:
app.use(function* (next) {
yield assertTimeout(next, '5 seconds')
})
However, you generally don't want to do this. You only want to set a timeout when the client takes too long to do something, not you. Specifically, you should set a timeout only on the client sending a request:
app.use(function* (next) {
var buffer = yield assertTimeout(this.request.buffer(), '5 seconds')
})
If you want to customize or handle the error yourself:
app.use(function* (next) {
try {
var buffer = yield assertTimeout(this.request.buffer(), '5 seconds')
} catch (err) {
if (err.status === 408) {
// assertTimeout's errors will have err.status = 408
// let's make a new error with a custom message
err = new Error('you took too long to upload')
err.status = 408
}
// rethrow the error
throw err
}
yield next
})
fn
- a thunk, generator, or generator functiontimeout
- timeout in milliseconds integer or a stringdone
- optional callback called only when fn
finishes executing after the timeout error is thrownThe MIT License (MIT)
Copyright (c) 2013 Jonathan Ong me@jongleberry.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Assert a thunk or generator's timeout co-style
The npm package co-assert-timeout receives a total of 71 weekly downloads. As such, co-assert-timeout popularity was classified as not popular.
We found that co-assert-timeout demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.