
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
sometimes i get data in the form of arrays of arrays:
const data = [
['jill', 'june', 'us']
['jack', 'january', 'gb']
]
array destructuring helps here:
let [name, birthmonth, country] = data[0]
console.log(name) // jill
but sometimes i just want to work on the data without destructuring it all the time, especially if during an operation the only field i care about is nearer the end of the array.
// name and birthmonth are unused vars :(
let gbPeople = data.some(([name, birthmonth, country]) => country === 'gb')
// opaque and confusing :(
let gbPeople = data.some(entry => entry[2] === 'gb')
so i usually end up mapping the data to objects so i can refer to fields by name
// obvious what's going on here
let gbPeople = niceData.some(entry => entry.country === 'gb')
this is a very small utility (10 lines) to help do that
npm install objctfy
objectify(arr, labels)
arr is an array of arrays
labels is an array of labels that correspond to the data by index
const objectify = require('@twoseventythree/objctfy')
const log = [
[1487799425, 14, 1],
[1487799425, 4, 0],
[1487799425, 2, 0],
[1487800378, 10, 1],
[1487801478, 18, 0],
[1487801478, 18, 1],
[1487901013, 1, 0],
[1487901211, 7, 1],
[1487901211, 7, 0]
]
const niceLog = objectify(log, ['timestamp', 'count', 'arrived'])
/*
niceLog : [
{ timestamp: 1487799425, count: 14, arrived: 1 },
{ timestamp: 1487799425, count: 4, arrived: 0 },
{ timestamp: 1487799425, count: 2, arrived: 0 },
{ timestamp: 1487800378, count: 10, arrived: 1 },
{ timestamp: 1487801478, count: 18, arrived: 0 },
{ timestamp: 1487801478, count: 18, arrived: 1 },
{ timestamp: 1487901013, count: 1, arrived: 0 },
{ timestamp: 1487901211, count: 7, arrived: 1 },
{ timestamp: 1487901211, count: 7, arrived: 0 }
]
*/
MIT
FAQs
make array of arrays an array of objects
We found that objctfy 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.