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.
There is a nice feature of JSON.stringify that removes undefined object properties which works as follows:
var obj: {
a: 'test',
b: null,
c: undefined
}
console.log(JSON.stringify(obj)) // '{"a":"test","b":null}'
This makes for handy formatting of JSON when responding to requests. This module provides some utility methods for working with undefined object properties, so if you're sick of writing or seeing typeof x !== undefined
multiple times in your codebase when using the above method to format JSON, this module comes in handy.
Usage:
var defined = require('isdefined')
var x = {
a: true
}
console.log(defined.is_defined(x.a)) // true
console.log(defined.is_defined(x.b)) // false
console.log(defined.boolean_to_binary(x.a)) // 1 /* handy for when 1 or 0 is used for storing true/false */
console.log(defined.boolean_to_binary(x.b)) // undefined
// useful for the likes of this statement:
var test = typeof x['a'] !== 'undefined' ? (i['active'] == 1) : undefined
// converts to
var test = defined.binary_to_boolean(x['a'])
FAQs
Utilities for working with undefined properties
We found that isdefined demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.