
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
IPv4 utils for nodejs/iojs.
npm install ipv4.js
var ipv4 = require('ipv4.js');
ipv4.aton('192.168.0.1') // -1062731775
ipv4.ntoa(0xffffffff) // '255.255.255.255'
ipv4.not('255.255.0.0') // '0.0.255.255'
ipv4.or('1.1.0.0', '0.0.1.1') // '1.1.1.1'
ipv4.xor('0.255.255.255', '192.255.255.255') // '192.0.0.0'
ipv4.next('192.168.0.1') // '192.168.0.2'
ipv4.prev('192.168.0.1') // '192.168.0.0'
ipv4.network('192.168.0.0/24')
// =>
// { address: '192.168.0.0',
// bitmask: 24,
// mask: '255.255.255.0',
// hostmask: '0.0.0.255',
// broadcast: '192.168.0.255',
// first: '192.168.0.1',
// last: '192.168.0.254',
// size: 254 }
MIT. (c) Chao Wang hit9@icloud.com
FAQs
IPv4 utils for nodejs/iojs.
We found that ipv4.js 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.