
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.
random-ipv6
Advanced tools
Return a random ipv6 address.
$ npm install --save random-ipv6
For more use-cases see the tests
var randomIpv6 = require('random-ipv6');
// API
// - randomIpv6(schema[, options]);
randomIpv6();
// => 2c56:9a76:aee6:3552:855a:f757:3611:255a
randomIpv6('127:0::{token}.1', {
token: {
min: 0,
max: 65535
}
});
// => 127.0.::f757.1
randomIpv6('{token}::1', {
padded: true,
token:{
min: 0,
max: 65535
}
});
// => 0ee1::0001
randomIpv6('{token}:0:0:0:0:1:0:0', {
compressed: true,
token:{
min: 0,
max: 65535
}
});
// => f07a::1:0:0
Note:
schema - the ipv6 schema, default '{token1}:{token2}:{token3}:{token4}:{token5}:{token6}:{token7}:{token8}'.options - options for every token, each token has min and max option, which both are from 0 to 65535.options.padded - pad prefix 0 with part when it's length less than 4.options.compressed - compress the ipv6.Pull requests and stars are highly welcome.
For bugs and feature requests, please create an issue.
FAQs
Return a random ipv6 address.
We found that random-ipv6 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.