
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.
@inbrowserapp/mac-address
Advanced tools
MAC address utilities: conversion between bases, normalization, BigInt conversion, IPv6 link-local generation, validation, and registry lookup.
A TypeScript library for working with MAC addresses, providing utilities for conversion, normalization, and manipulation of MAC addresses.
npm install @inbrowserapp/mac-address
import {
toNumber,
toBigInt,
normalize,
toIPv6LinkLocal,
getRegistries,
getRegistryAssignments,
getOrganizations,
getOrganizationAssignments,
searchAssignments,
getAssignment
} from '@inbrowserapp/mac-address';
// Basic MAC address operations
const example = '00:11:22:33:44:55';
const hex = toNumber(example, 16); // Convert MAC address to different number bases
const bigInt = toBigInt(example); // Convert to BigInt
const normalized = normalize(example); // Normalize MAC address
const ipv6 = toIPv6LinkLocal(example); // Convert MAC address to IPv6 link-local address
// MAC address registry and organization lookup
const registries = getRegistries(); // Get all registries
const registryAssignments = getRegistryAssignments('MA-L'); // Get registry assignments
const organizations = getOrganizations(); // Get all organizations
const organizationAssignments = getOrganizationAssignments('Apple, Inc.'); // Get organization assignments
const assignments = searchAssignments(example); // Search assignments by address
const info = getAssignment("00:03:93:00:00:00"); // Get assignment information by address
MIT
Contributions are welcome! Please feel free to submit a Pull Request.
FAQs
MAC address utilities: conversion between bases, normalization, BigInt conversion, IPv6 link-local generation, validation, and registry lookup.
We found that @inbrowserapp/mac-address demonstrated a healthy version release cadence and project activity because the last version was released less than 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.