
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
nestjs-exceptions
Advanced tools
Provides Nest custom exceptions and exception filters.
$ npm i nestjs-exceptions
You might want to use IntegrationError
to wrap integration errors with a custom message.
throw new IntegrationError(`Service runtime error.`, causeError);
const bootstrap = async () => {
const app = await NestFactory.create(AppModule);
app.useGlobalFilters(new GlobalExceptionFilter());
...
await app.listen(3000);
};
bootstrap();
GlobalExceptionFilter
takes care mainly of internal server errors.
You can configure it during instantiation so that the original cause of 500 errors are returned back to the client. The default is false
for security reasons.
const sendInternalServerErrorCause = true;
new GlobalExceptionFilter(sendInternalServerErrorCause);
By default, only 500 errors are logged in the server side. This can avoid performance issues or Denial of Service attacks because the server is being to much verbose logging.
Anyways, for development reasons or debugging it's possible to log all errors:
const sendInternalServerErrorCause = false;
const logAllErrors = true;
new GlobalExceptionFilter(sendInternalServerErrorCause, logAllErrors);
Or log only specific errors (besides 500):
const sendInternalServerErrorCause = false;
const logAllErrors = false;
const logErrorsWithStatusCode = [400, 401];
new GlobalExceptionFilter(sendInternalServerErrorCause, logAllErrors, logErrorsWithStatusCode);
FAQs
Nest custom exceptions and exception filters.
The npm package nestjs-exceptions receives a total of 189 weekly downloads. As such, nestjs-exceptions popularity was classified as not popular.
We found that nestjs-exceptions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.