Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Variadic y-combinator for recursive anonymous functions.
npm i variadic-y
Define your recursive function to take in a reference to itself. Here, f
.
import { Y } from "variadic-y";
Y(f => (x, y = 1) => (x == 1 ? y : f(x - 1, x * y)))(5); // 120
Unmemoized to enable usage with objects and referentially opaque functions.
export const Y = (a: any) =>
((b: any) => a((...c: any[]) => b(b)(...c)))((b: any) =>
a((...c: any[]) => b(b)(...c))
);
If anyone knows how to properly type this combinator in TypeScript, let me know.
FAQs
Variadic y-combinator for recursive anonymous functions
We found that variadic-y 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.