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.
@badrap/material-symbols-omnibus
Advanced tools
> [!NOTE] > Importing this package pulls in data for _all_ Material Symbol icons. You're probably better off using something like [marella/material-symbols](https://github.com/marella/material-symbols).
[!NOTE] Importing this package pulls in data for all Material Symbol icons. You're probably better off using something like marella/material-symbols.
A library to resolve a Material Symbol icons name to an SVG path.
The icons are the outlined variant with the 20px optical size. Both the filled and outlined versions are available.
npm i @badrap/material-symbols-omnibus
import { resolveMaterialSymbol } from "@badrap/material-symbols-omnibus";
export function MaterialSymbol(props: { name: string }) {
const data = resolveMaterialSymbol(props.name);
if (!data) {
return null;
}
return (
<svg width={data.width} height={data.height} viewBox={data.viewBox}>
<path d={data.path} />
</svg>
);
}
Material Symbols are available under the Apache License Version 2.0. Therefore this package is also available under the same license.
FAQs
> [!NOTE] > Importing this package pulls in data for _all_ Material Symbol icons. You're probably better off using something like [marella/material-symbols](https://github.com/marella/material-symbols).
The npm package @badrap/material-symbols-omnibus receives a total of 10 weekly downloads. As such, @badrap/material-symbols-omnibus popularity was classified as not popular.
We found that @badrap/material-symbols-omnibus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.