Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
Part of a larger attack: @ornikar published 42 malicious packages. See the full campaign →
Malicious package

@ornikar/intl-confignpm

@ornikar/intl-config is a confirmed malicious npm package (MAL-2026-11757) that steals credentials and exfiltrates sensitive data (malicious versions 10.0.2, 10.0.3, 10.0.4…). Do not install it — remove it immediately and rotate any exposed credentials.

Malicious code in @ornikar/intl-config (npm)

MAL-2026-11757
Immediate action
Remove the package, then rotate any secrets the build/runtime could reach.
npm uninstall @ornikar/intl-config

What this malware does

npm/@ornikar/intl-config is affected by the large-scale, self-propagating npm supply-chain worm of 2026-08-04 (the "Shai-Hulud: Here We Go Again" wave) — the same campaign that began with the compromise of the keyv and cacheable maintainer account. The listed version(s) were trojanized and republished by the worm after it reached an npm publish token belonging to a maintainer in this namespace; the payload enumerates every package a stolen token controls and republishes each with the same hook, so many packages under this scope were poisoned in the same short window. Every poisoned release adds a preinstall hook ("preinstall": "node setup.mjs") that runs on a bare npm install, before any project code. setup.mjs downloads a standalone Bun runtime and runs a byte-identical, heavily obfuscated ~728 KB second-stage credential stealer (shipped as Math_Symbol.js / math_init.js). It harvests GitHub, npm, AWS, GCP, Azure, HashiCorp Vault and Kubernetes credentials plus generic secrets and private keys (TruffleHog-style sweep), reads CI/CD secrets and identifies build runners, then republishes further packages the stolen token can reach. Rather than a fixed command-and-control host, it exfiltrates stolen findings to attacker-created GitHub repositories (descriptions reading "Shai-Hulud: Here We Go Again") and over DNS. Treat any environment that installed an affected version (with install scripts enabled) as compromised: rotate and revoke all reachable credentials (npm and GitHub tokens, cloud keys, Vault/Kubernetes secrets, and CI org/repo secrets). Part of the August 2026 npm worm that poisoned 400+ packages across many organizations.

Version 10.0.10 was added to this record on 2026-08-06, when it differed from the versions above in one important way: it was still published. As of that date the registry had unpublished 10.0.2 through 10.0.9 — those versions survived only in the packument time map and were absent from versions — while 10.0.10, the last republish of the burst, had been left in place and still held the latest dist-tag, so a default npm install @ornikar/intl-config still resolved to a poisoned release. The 10.0.10 manifest replaces every real script with a single "preinstall": "node setup.mjs" entry, carries no gitHead, was published at 2026-08-04T12:44:09.580Z by the same maintainer account as the preceding legitimate releases, and declares dist.unpackedSize 759999 against 21369 for the last clean release (10.0.1). A file listing of the published tarball shows the two extra files 10.0.10 adds over 10.0.1: setup.mjs (11017 bytes) and math_init.js (727680 bytes), whose sha256 digests match the campaign payload already recorded in this report's evidence_files; the same two files, byte for byte, are also in @ornikar/react-native-svg-transformer 1.0.13. Wiz Research and OX Security both list 10.0.10 in their published IoC sets for this campaign. Consumers should not resolve this package from latest or a floating range: pin to 10.0.1 or earlier, audit lockfiles for 10.0.10, and treat any host or CI runner that installed it with install scripts enabled as compromised.

Version 10.0.7 of @ornikar/intl-config, an internal-facing FormatJS/intl configuration helper, ships a preinstall lifecycle hook ("preinstall": "node setup.mjs") that downloads the Bun runtime from https://github.com/oven-sh/bun/releases/download/bun-v<version>/<arch>.zip, extracts and chmods the bun binary, and then runs execFileSync(bun, ['math_init.js']). math_init.js is a 727KB Bun-CJS bundle (leading // @bun @bun-cjs marker) obfuscated with a rotated string-array (function WV8StW(...) shifting n7gIxM=[...]) and hex-mangled identifiers. The driver setup.mjs is itself obfuscator.io-style minified with identifiers like _0x488df8, _0x52943e and property-mangling maps. The payload filename and content bear no relation to the package's advertised purpose (intl/FormatJS configuration) and the package has no legitimate need for a second language runtime. The preinstall fires automatically on npm install, causing opaque author-controlled code to execute on the installer's machine under a runtime that Node-based supply-chain scanners do not follow. This is the alternate-runtime dropper pattern: an unrelated runtime is fetched at install time specifically to execute a bundled obfuscated payload, evading review.

Any computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer. The package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.

Malicious versions

9 flagged
10.0.210.0.310.0.410.0.510.0.610.0.710.0.810.0.910.0.10

Indicators of compromise (SHA-256)

3006fb22096e9c0c4b8d96c8957f15d3b162fe2e1f9da36ebda40faf525e5742
b00ad0a37ba93042e1b29779854f3ac5f0b8fa95fb2873acccb3dcf71cb7f168
d799f73192e81b54ae5f66031b340d49dcf682ff5296c285fd7ae93fab5eed27
d7a4161209cd8500a928073b32942f35ccceaf7eafa88b2250f75355b9b1df0d
d8a2a83d2a43b8f7e601dcdee705e416df3d66fec42fec4eee40356c6af5f11c
db5a32d04d3b9fcf09300eefd658be4cf7565ce1de3302ae1fe9107e05371d44
04ee3ead1df48d2280166a16ba68bc1ef31e012190c5abb0eb051bb0e2a205c6
51b29ab69b3d22fd3177742240c504803faca29133df5a574795bba04ef3b419
56e5154d7dd7792043d8b7f5c1b29ff8c9e6e4945b917b5276793fca73d09215
516280b047c4c1dee92a4b4d82164763a653ed8fd01914c4382c74c44dadbbbf

Detection & response playbook

Credential / info stealer
  1. Find it

    Scan your lockfiles (package-lock.json, pnpm-lock.yaml, yarn.lock, requirements.txt, poetry.lock, etc.) and build artifacts for @ornikar/intl-config (9 malicious versions). O3 Security's supply-chain scanner checks every dependency against known-malicious package intelligence at install time and in CI, flagging @ornikar/intl-config across your stack and pipelines.

  2. If you installed it — respond

    @ornikar/intl-config is built to steal secrets, so assume every credential the build or runtime could read is compromised. Remove it from your project and lockfile, then rotate ALL exposed secrets — npm/registry tokens, cloud keys, CI/CD secrets, SSH keys, and any .env values — from a known-clean machine. Audit logs for unauthorized use of those credentials.

  3. Did it already run?

    If @ornikar/intl-config was ever installed, its post-install/runtime payload may have already executed. O3's L7 egress monitoring and runtime eBPF sensors detect the credential exfiltration or command-and-control callback after install and block the malicious outbound channel, so you catch and contain the actual compromise — not just the presence of the package.

  4. How O3 protects you

    O3 blocks @ornikar/intl-config before install through its supply-chain scanner, and if it has already run, detects and severs the exfiltration or C2 callback at runtime through L7 egress monitoring and eBPF.

Frequently asked questions

No. @ornikar/intl-config on npm has been identified as a malicious package (versions 10.0.2, 10.0.3, 10.0.4, 10.0.5, 10.0.6, 10.0.7, 10.0.8, 10.0.9, and 1 more flagged). It should be removed immediately — do not install or keep it in your dependency tree.

Campaign

GHSA-g4r2-833j-2226IN-MAL-2026-011783IN-MAL-2026-011797IN-MAL-2026-011795IN-MAL-2026-011798IN-MAL-2026-011553IN-MAL-2026-011788IN-MAL-2026-011796IN-MAL-2026-011676

References

Credits

  • Aikido Security · finder
  • Amazon Inspector · finder
  • OX Security · finder
  • SafeDep · finder
  • Socket Threat Research Team · finder
  • Wiz Research · finder

Detect & block this

O3 blocks @ornikar/intl-config-class packages before install and in CI — and if it already ran, its runtime egress monitoring catches the credential exfiltration and severs the channel.

Explore

@ornikar/intl-config (npm) malicious package — MAL-2026-11757 | O3 Security