
Security News
New Study Identifies 53 Slopsquatting Targets Across 5 Frontier LLMs
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.
Apply the operating system's transparent per-file filesystem compression to a file — smaller on disk, byte-identical on read, decompressed by the kernel at near-native speed. macOS APFS (decmpfs/LZVN), Linux btrfs (zstd→lzo→zlib), Windows NTFS (LZNT1).
The core does the bytes-to-compressed-file write in one pass — it never writes a file then reads it back to recompress.
use decmpfs::{compress_bytes, compress_file, Gate};
// Write `content` straight to an OS-compressed file (single pass).
let outcome = compress_bytes(path, &content, &Gate::any())?;
// Or compress a file that already exists, in place.
let outcome = compress_file(path)?;
Every call returns an Outcome — Compressed, NoGain (incompressible /
sub-cluster), AlreadyCompressed, Unsupported (the FS has no per-file
compression — ext4, xfs, ZFS, ReFS, FAT, tmpfs, network mounts), or Skipped
(permission, lock, gate). An unsupported filesystem or a permission issue is a
non-fatal Outcome, not an Err; Err is reserved for genuine I/O failures.
Gate decides which files to compress by glob and/or size:
let gate = Gate::new(Some("**/*.node"), Some(">= 1MB"))?;
The core is dependency-light (libc / windows-sys only). The optional addon
feature pulls zstd + sha2 to unwrap a napi --compress hybrid .node back to
the raw addon before compressing.
An N-API binding (writeDecmpfsFile / writeDecmpfsFileSync, fs.writeFile-shaped,
atomic by default) lives in node/.
MIT
FAQs
Unknown package
The cargo package decmpfs receives a total of 821 weekly downloads. As such, decmpfs popularity was classified as not popular.
We found that decmpfs 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
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.

Security News
The White House’s Gold Eagle Initiative aims to coordinate AI-discovered vulnerabilities, validate findings, and accelerate patching across critical software.

Security News
A Shai-Hulud infection exposed Suno's source code, which shows the AI music startup stream-ripped tracks to train its models.