
Security News
TC39 Advances Temporal to Stage 4 Alongside Several ECMAScript Proposals
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.
Quickly evaluate the security and health of any open source package.
n8n-nodes-gg-udhasudsh-hgjkhg-official
0.0.27
by zabuza-momochi
Live on npm
Blocked by Socket
The code operates as a Google Ads API integration wrapper, reading user input, constructing a GAQL-like query, and issuing a POST request to fetch user lists. While it does not demonstrate explicit malware, the combination of heavy obfuscation, dynamic string assembly, and potential injection surface from user-derived inputs requires careful audit of input validation, escaping for GAQL, and credential handling. The behavior warrants remediation to ensure robust input sanitization, removal of unnecessary obfuscation, and explicit error handling to avoid silent failures and potential data leakage.
dnszlsk/muad-dib
b2fefd20b7b5c61b8dbe6b490283902ba40460b3
Live on actions
Blocked by Socket
This postinstall hook executes local code that, per the package metadata, is intended to encode and exfiltrate data to GitHub. Treat this as malicious: do not install or run without fully auditing index.js in a safe environment. There is a high risk of data exfiltration and other malicious activity.
dnszlsk/muad-dib
211ae3e018bcc76f2cc7b9a5ca39861f33a5f061
Live on actions
Blocked by Socket
This package will execute its bundled index.js during installation. Given the package name and description explicitly describing backdoor/persistence behavior, treat this as malicious. Do not install. Inspect the contents of index.js in a safe environment (offline/sandbox) if analysis is required, and if this was installed on production/self-hosted CI, assume compromise and perform incident response (rotate credentials, rebuild runners, check for persistence mechanisms and network egress).
@spider-mesh/core
1.0.23
by duongvanba
Live on npm
Blocked by Socket
The code appears to be a legitimate part of the SpiderMesh library, but it has potential security risks and unusual patterns that should be further reviewed and analyzed.
openiap
0.0.12
Live on pypi
Blocked by Socket
The code is designed to fetch and execute external payloads with minimal validation, enabling serious supply-chain and remote code execution risks. It lacks integrity checks (signatures, checksums), authentication, and robust error handling. The gunzip handling also appears flawed, which could cause runtime issues. The overall security risk is high for untrusted sources, and the malware likelihood is non-zero given the ability to run arbitrary downloaded code.
gwinpy
9999.0.0
Removed from pypi
Blocked by Socket
The code is performing actions consistent with malicious behavior by collecting and transmitting sensitive system information to an external server without user consent. This poses a significant security risk.
Live on pypi for 18 hours and 12 minutes before removal. Socket users were protected even while the package was live.
troy-portal
6.6.8
by gk_grab
Removed from npm
Blocked by Socket
This script downloads a file from a remote server using curl. The URL contains a variable that is not defined in the script, which could indicate a typo or a malicious attempt to execute arbitrary code. The contents of the downloaded file should be reviewed for safety.
Live on npm for 9 hours and 32 minutes before removal. Socket users were protected even while the package was live.
fsd
0.0.704
Removed from pypi
Blocked by Socket
The module contains high-risk operations: executing arbitrary shell commands via subprocess with shell=True and writing/appending to files without validation. If the steps JSON or the user input is untrusted, an attacker can achieve remote code execution, modify arbitrary files, and change process state (cwd). There are no signs of network exfiltration or hardcoded credentials in this fragment, but the command execution sink is sufficient to escalate to any of those behaviors if exploited. Recommendation: treat inputs (steps, file names, user-provided suggested commands) as untrusted; remove shell=True or use argument lists, validate and canonicalize file paths, avoid executing suggested commands automatically, and employ strict prompting and auditing. Overall this code is not itself evidently obfuscated or explicitly malicious, but it poses a significant supply-chain/runtime risk when given untrusted instructions.
Live on pypi for 5 days, 11 hours and 28 minutes before removal. Socket users were protected even while the package was live.
imagecomponents.win32.imaging
3.5.0.6
by Image Components
Live on nuget
Blocked by Socket
This file contains an obfuscated runtime loader/anti-tamper component that decrypts/loads payload bytes from resources or files, verifies them cryptographically, allocates executable memory, patches runtime/JIT structures or writes directly to process memory (including /proc/self/mem), and invokes the injected code. Those operations enable in-memory code injection and execution and are high-risk for supply chain security. If this package was expected to be a simple licensing wrapper, the native memory manipulation and JIT hooking are unexpected and dangerous. Treat this component as potentially malicious or at minimum as an extremely risky anti-tamper/packer: it should not be permitted without rigorous review and provenance confirmation.
dyphira
0.1.1
Live on pypi
Blocked by Socket
This module behaves as a malicious proxy client: it forwards the provided API key, user prompts, and any local files to a hardcoded third-party IP over plaintext HTTP. This is high-risk credential and data exfiltration behavior that should be treated as a backdoor/supply-chain compromise. Do not use this package. If you have used it with real credentials or sensitive files, rotate affected API keys and assume data may have been leaked to the operator of 103.54.57.253.
dnszlsk/muad-dib
211ae3e018bcc76f2cc7b9a5ca39861f33a5f061
Live on actions
Blocked by Socket
This code implements direct data exfiltration: it reads data from a local module and immediately sends it to a hardcoded external endpoint. Treat it as malicious/backdoor behavior unless proven otherwise by inspecting ./reader and repository context. Remediate by removing the POST, auditing ./reader and repository history, checking for similar artifacts, and rotating any credentials that may have been exposed.
isood
1.6.665
Live on npm
Blocked by Socket
This module is malicious: it automatically scans the working directory for files matching /plta_|pltc_/ and uploads matching files to a hardcoded Telegram bot/chat. The behavior is data exfiltration triggered on import/run, uses embedded credentials, and lacks any legitimate configuration or consent mechanism. Treat this package as compromised: do not run it, remove it from builds/CI, revoke the bot token, rotate any exposed secrets, and investigate systems where it executed.
galadriel
0.0.11
Live on pypi
Blocked by Socket
This script configures the host to transparently redirect all outbound HTTPS (TCP/443) traffic to a local port (127.0.0.1:4443) by modifying kernel networking and iptables rules. That behavior is strongly indicative of a local HTTPS interception/middleware setup and can be used maliciously to MITM TLS traffic — enabling credential theft, session capture, content tampering, or passive monitoring — depending on what local service listens on 4443. The script also enables IP forwarding (unnecessary for the redirect) and contains unusual SNAT usage. There is a syntax error in the final echo line which will likely break the script as provided. Overall, treat this code as high risk: it is capable of enabling system-wide interception of secure traffic and should not be run on trusted machines without full audit of the local listener and intent.
dana
0.5.6.3
Live on pypi
Blocked by Socket
This module itself contains no obvious hidden backdoor or obfuscated malicious payload, but it intentionally executes external Python files found under multiple search paths (including user-writable locations like the current working directory and user home). That design introduces a high-risk supply-chain/plugin execution vector: untrusted plugin files named <domain>.py or package directories can run arbitrary code via exec_module and class instantiation. Recommend treating plugins from those paths as untrusted, restricting or validating plugin locations, using cryptographic signing or checksum verification, or executing plugins in an isolated process. Do not place sensitive credentials or run as privileged user when plugin discovery paths include writable directories.
dnszlsk/muad-dib
c026fe0a209a641d2f1cc4cf1a81fa83a459b30a
Live on actions
Blocked by Socket
This code performs unauthorized exfiltration of potentially sensitive credentials (the user's ~/.npmrc) and machine-identifying information to a hardcoded external endpoint over unencrypted HTTP. It should be treated as malicious or highly privacy-invasive. If present in a package, consider it compromised: remove the package, investigate exposure windows, and rotate any npm tokens or credentials that may have been stored in ~/.npmrc.
kids-unlimited-spins-coin-master-hack-fqg
3.0.9
by Gncw
Live on nuget
Blocked by Socket
This file is part of a malicious package that exploits software distribution infrastructure for social engineering attacks. The assembly metadata contains extensive promotional content advertising illegal Snapchat account hacking services, including detailed descriptions of traffic-based attack methods against Snapchat servers. The file directs users to visit an external malicious website at hacksgames[.]online/Snap-Hack/ through embedded URLs in assembly descriptions. While containing no executable malicious code (only empty class implementations), it serves as a delivery mechanism to redirect users to potentially harmful external sites that could distribute malware, conduct phishing attacks, or engage in other malicious activities. This represents supply chain pollution by abusing legitimate package repositories to promote illegal services and poses significant security risks to users who may follow the embedded malicious links.
bfx-facs-base
99.10.10
Removed from npm
Blocked by Socket
The code engages in potentially malicious behavior by collecting sensitive system information and sending it to a remote server without clear user consent. The hard-coded domain, data obfuscation, and lack of transparency raise significant privacy and security concerns. The risk score is high due to the invasive nature of the code.
Live on npm for 43 minutes before removal. Socket users were protected even while the package was live.
overstock-jenkins
1.4.9
Removed from npm
Blocked by Socket
This code is malicious or at minimum behaves like a data-exfiltration/staging agent: it collects environment variables, system info, local files (/etc/passwd), command output, and EC2 metadata/IAM information and sends that entire dataset to a hardcoded external host (z.wbx.lt). Do not run this in production or on sensitive hosts. Treat the package as malicious and remove or block network egress to the indicated host if encountered.
Live on npm for 1 day, 16 hours and 56 minutes before removal. Socket users were protected even while the package was live.
kundage
1.1.4
by merkellia
Removed from npm
Blocked by Socket
The code appears to be heavily obfuscated with no clear functionality or purpose. It lacks any structured programming elements, making it unreadable and unanalyzable in its current form.
Live on npm for 2 days, 9 hours and 5 minutes before removal. Socket users were protected even while the package was live.
mtmai
0.3.1193
Live on pypi
Blocked by Socket
This fragment intends to install and start KasmVNC by running many shell commands that create certs, write VNC password files, adjust group membership, and launch a VNC server. The primary security issues are unsafe shell interpolation (command injection risk), programmatic persistence of a possibly predictable password, execution with sudo based on unvalidated env vars, starting a VNC server exposed on 0.0.0.0 with disabled/basic auth, and multiple unsafe filesystem operations performed via shell. There is no clear evidence of obfuscated or direct exfiltration malware, but the behavior can provide an unauthorized remote access vector (backdoor-like) if used maliciously. Do not run this code without fixing shell usage, validating inputs, using secure randomly generated passwords, enforcing proper file permissions, and not disabling authentication.
devcloudcli
1.3.12
Live on pypi
Blocked by Socket
This is a high-risk destructive script that forcibly deletes /home/intel/dlstreamer without checks and prints a misleading success message. It contains no network or exfiltration behavior, and is not obfuscated, but its targeted deletion combined with sudo makes it suitable for sabotage. Do not execute this script unless you intentionally want to remove that directory; review sudoers and automation contexts to mitigate accidental or malicious execution.
devops-challenge
99.99.990
by hxroot
Removed from npm
Blocked by Socket
The code is potentially malicious as it sends system-specific data (username) to an external domain, which could be used for unauthorized data collection or tracking. This represents a significant security risk.
Live on npm for 2 hours and 33 minutes before removal. Socket users were protected even while the package was live.
github.com/milvus-io/milvus
v0.10.3-0.20211102090031-a8722797fed8
Live on go
Blocked by Socket
This code implements an insecure, unauthenticated RPC mechanism that allows remote clients to cause arbitrary code execution and exfiltrate files/system information. Using pickle over an untrusted network and invoking methods by client-supplied names are severe supply-chain/backdoor risks. Do not deploy or reuse this code in production; it should be treated as a backdoor/untrusted remote-execution component unless wrapped with strong authentication, authorization, sandboxing, and safe serialization.
n8n-nodes-gg-udhasudsh-hgjkhg-official
0.0.27
by zabuza-momochi
Live on npm
Blocked by Socket
The code operates as a Google Ads API integration wrapper, reading user input, constructing a GAQL-like query, and issuing a POST request to fetch user lists. While it does not demonstrate explicit malware, the combination of heavy obfuscation, dynamic string assembly, and potential injection surface from user-derived inputs requires careful audit of input validation, escaping for GAQL, and credential handling. The behavior warrants remediation to ensure robust input sanitization, removal of unnecessary obfuscation, and explicit error handling to avoid silent failures and potential data leakage.
dnszlsk/muad-dib
b2fefd20b7b5c61b8dbe6b490283902ba40460b3
Live on actions
Blocked by Socket
This postinstall hook executes local code that, per the package metadata, is intended to encode and exfiltrate data to GitHub. Treat this as malicious: do not install or run without fully auditing index.js in a safe environment. There is a high risk of data exfiltration and other malicious activity.
dnszlsk/muad-dib
211ae3e018bcc76f2cc7b9a5ca39861f33a5f061
Live on actions
Blocked by Socket
This package will execute its bundled index.js during installation. Given the package name and description explicitly describing backdoor/persistence behavior, treat this as malicious. Do not install. Inspect the contents of index.js in a safe environment (offline/sandbox) if analysis is required, and if this was installed on production/self-hosted CI, assume compromise and perform incident response (rotate credentials, rebuild runners, check for persistence mechanisms and network egress).
@spider-mesh/core
1.0.23
by duongvanba
Live on npm
Blocked by Socket
The code appears to be a legitimate part of the SpiderMesh library, but it has potential security risks and unusual patterns that should be further reviewed and analyzed.
openiap
0.0.12
Live on pypi
Blocked by Socket
The code is designed to fetch and execute external payloads with minimal validation, enabling serious supply-chain and remote code execution risks. It lacks integrity checks (signatures, checksums), authentication, and robust error handling. The gunzip handling also appears flawed, which could cause runtime issues. The overall security risk is high for untrusted sources, and the malware likelihood is non-zero given the ability to run arbitrary downloaded code.
gwinpy
9999.0.0
Removed from pypi
Blocked by Socket
The code is performing actions consistent with malicious behavior by collecting and transmitting sensitive system information to an external server without user consent. This poses a significant security risk.
Live on pypi for 18 hours and 12 minutes before removal. Socket users were protected even while the package was live.
troy-portal
6.6.8
by gk_grab
Removed from npm
Blocked by Socket
This script downloads a file from a remote server using curl. The URL contains a variable that is not defined in the script, which could indicate a typo or a malicious attempt to execute arbitrary code. The contents of the downloaded file should be reviewed for safety.
Live on npm for 9 hours and 32 minutes before removal. Socket users were protected even while the package was live.
fsd
0.0.704
Removed from pypi
Blocked by Socket
The module contains high-risk operations: executing arbitrary shell commands via subprocess with shell=True and writing/appending to files without validation. If the steps JSON or the user input is untrusted, an attacker can achieve remote code execution, modify arbitrary files, and change process state (cwd). There are no signs of network exfiltration or hardcoded credentials in this fragment, but the command execution sink is sufficient to escalate to any of those behaviors if exploited. Recommendation: treat inputs (steps, file names, user-provided suggested commands) as untrusted; remove shell=True or use argument lists, validate and canonicalize file paths, avoid executing suggested commands automatically, and employ strict prompting and auditing. Overall this code is not itself evidently obfuscated or explicitly malicious, but it poses a significant supply-chain/runtime risk when given untrusted instructions.
Live on pypi for 5 days, 11 hours and 28 minutes before removal. Socket users were protected even while the package was live.
imagecomponents.win32.imaging
3.5.0.6
by Image Components
Live on nuget
Blocked by Socket
This file contains an obfuscated runtime loader/anti-tamper component that decrypts/loads payload bytes from resources or files, verifies them cryptographically, allocates executable memory, patches runtime/JIT structures or writes directly to process memory (including /proc/self/mem), and invokes the injected code. Those operations enable in-memory code injection and execution and are high-risk for supply chain security. If this package was expected to be a simple licensing wrapper, the native memory manipulation and JIT hooking are unexpected and dangerous. Treat this component as potentially malicious or at minimum as an extremely risky anti-tamper/packer: it should not be permitted without rigorous review and provenance confirmation.
dyphira
0.1.1
Live on pypi
Blocked by Socket
This module behaves as a malicious proxy client: it forwards the provided API key, user prompts, and any local files to a hardcoded third-party IP over plaintext HTTP. This is high-risk credential and data exfiltration behavior that should be treated as a backdoor/supply-chain compromise. Do not use this package. If you have used it with real credentials or sensitive files, rotate affected API keys and assume data may have been leaked to the operator of 103.54.57.253.
dnszlsk/muad-dib
211ae3e018bcc76f2cc7b9a5ca39861f33a5f061
Live on actions
Blocked by Socket
This code implements direct data exfiltration: it reads data from a local module and immediately sends it to a hardcoded external endpoint. Treat it as malicious/backdoor behavior unless proven otherwise by inspecting ./reader and repository context. Remediate by removing the POST, auditing ./reader and repository history, checking for similar artifacts, and rotating any credentials that may have been exposed.
isood
1.6.665
Live on npm
Blocked by Socket
This module is malicious: it automatically scans the working directory for files matching /plta_|pltc_/ and uploads matching files to a hardcoded Telegram bot/chat. The behavior is data exfiltration triggered on import/run, uses embedded credentials, and lacks any legitimate configuration or consent mechanism. Treat this package as compromised: do not run it, remove it from builds/CI, revoke the bot token, rotate any exposed secrets, and investigate systems where it executed.
galadriel
0.0.11
Live on pypi
Blocked by Socket
This script configures the host to transparently redirect all outbound HTTPS (TCP/443) traffic to a local port (127.0.0.1:4443) by modifying kernel networking and iptables rules. That behavior is strongly indicative of a local HTTPS interception/middleware setup and can be used maliciously to MITM TLS traffic — enabling credential theft, session capture, content tampering, or passive monitoring — depending on what local service listens on 4443. The script also enables IP forwarding (unnecessary for the redirect) and contains unusual SNAT usage. There is a syntax error in the final echo line which will likely break the script as provided. Overall, treat this code as high risk: it is capable of enabling system-wide interception of secure traffic and should not be run on trusted machines without full audit of the local listener and intent.
dana
0.5.6.3
Live on pypi
Blocked by Socket
This module itself contains no obvious hidden backdoor or obfuscated malicious payload, but it intentionally executes external Python files found under multiple search paths (including user-writable locations like the current working directory and user home). That design introduces a high-risk supply-chain/plugin execution vector: untrusted plugin files named <domain>.py or package directories can run arbitrary code via exec_module and class instantiation. Recommend treating plugins from those paths as untrusted, restricting or validating plugin locations, using cryptographic signing or checksum verification, or executing plugins in an isolated process. Do not place sensitive credentials or run as privileged user when plugin discovery paths include writable directories.
dnszlsk/muad-dib
c026fe0a209a641d2f1cc4cf1a81fa83a459b30a
Live on actions
Blocked by Socket
This code performs unauthorized exfiltration of potentially sensitive credentials (the user's ~/.npmrc) and machine-identifying information to a hardcoded external endpoint over unencrypted HTTP. It should be treated as malicious or highly privacy-invasive. If present in a package, consider it compromised: remove the package, investigate exposure windows, and rotate any npm tokens or credentials that may have been stored in ~/.npmrc.
kids-unlimited-spins-coin-master-hack-fqg
3.0.9
by Gncw
Live on nuget
Blocked by Socket
This file is part of a malicious package that exploits software distribution infrastructure for social engineering attacks. The assembly metadata contains extensive promotional content advertising illegal Snapchat account hacking services, including detailed descriptions of traffic-based attack methods against Snapchat servers. The file directs users to visit an external malicious website at hacksgames[.]online/Snap-Hack/ through embedded URLs in assembly descriptions. While containing no executable malicious code (only empty class implementations), it serves as a delivery mechanism to redirect users to potentially harmful external sites that could distribute malware, conduct phishing attacks, or engage in other malicious activities. This represents supply chain pollution by abusing legitimate package repositories to promote illegal services and poses significant security risks to users who may follow the embedded malicious links.
bfx-facs-base
99.10.10
Removed from npm
Blocked by Socket
The code engages in potentially malicious behavior by collecting sensitive system information and sending it to a remote server without clear user consent. The hard-coded domain, data obfuscation, and lack of transparency raise significant privacy and security concerns. The risk score is high due to the invasive nature of the code.
Live on npm for 43 minutes before removal. Socket users were protected even while the package was live.
overstock-jenkins
1.4.9
Removed from npm
Blocked by Socket
This code is malicious or at minimum behaves like a data-exfiltration/staging agent: it collects environment variables, system info, local files (/etc/passwd), command output, and EC2 metadata/IAM information and sends that entire dataset to a hardcoded external host (z.wbx.lt). Do not run this in production or on sensitive hosts. Treat the package as malicious and remove or block network egress to the indicated host if encountered.
Live on npm for 1 day, 16 hours and 56 minutes before removal. Socket users were protected even while the package was live.
kundage
1.1.4
by merkellia
Removed from npm
Blocked by Socket
The code appears to be heavily obfuscated with no clear functionality or purpose. It lacks any structured programming elements, making it unreadable and unanalyzable in its current form.
Live on npm for 2 days, 9 hours and 5 minutes before removal. Socket users were protected even while the package was live.
mtmai
0.3.1193
Live on pypi
Blocked by Socket
This fragment intends to install and start KasmVNC by running many shell commands that create certs, write VNC password files, adjust group membership, and launch a VNC server. The primary security issues are unsafe shell interpolation (command injection risk), programmatic persistence of a possibly predictable password, execution with sudo based on unvalidated env vars, starting a VNC server exposed on 0.0.0.0 with disabled/basic auth, and multiple unsafe filesystem operations performed via shell. There is no clear evidence of obfuscated or direct exfiltration malware, but the behavior can provide an unauthorized remote access vector (backdoor-like) if used maliciously. Do not run this code without fixing shell usage, validating inputs, using secure randomly generated passwords, enforcing proper file permissions, and not disabling authentication.
devcloudcli
1.3.12
Live on pypi
Blocked by Socket
This is a high-risk destructive script that forcibly deletes /home/intel/dlstreamer without checks and prints a misleading success message. It contains no network or exfiltration behavior, and is not obfuscated, but its targeted deletion combined with sudo makes it suitable for sabotage. Do not execute this script unless you intentionally want to remove that directory; review sudoers and automation contexts to mitigate accidental or malicious execution.
devops-challenge
99.99.990
by hxroot
Removed from npm
Blocked by Socket
The code is potentially malicious as it sends system-specific data (username) to an external domain, which could be used for unauthorized data collection or tracking. This represents a significant security risk.
Live on npm for 2 hours and 33 minutes before removal. Socket users were protected even while the package was live.
github.com/milvus-io/milvus
v0.10.3-0.20211102090031-a8722797fed8
Live on go
Blocked by Socket
This code implements an insecure, unauthenticated RPC mechanism that allows remote clients to cause arbitrary code execution and exfiltrate files/system information. Using pickle over an untrusted network and invoking methods by client-supplied names are severe supply-chain/backdoor risks. Do not deploy or reuse this code in production; it should be treated as a backdoor/untrusted remote-execution component unless wrapped with strong authentication, authorization, sandboxing, and safe serialization.
Socket detects traditional vulnerabilities (CVEs) but goes beyond that to scan the actual code of dependencies for malicious behavior. It proactively detects and blocks 70+ signals of supply chain risk in open source code, for comprehensive protection.
Known malware
Possible typosquat attack
Telemetry
Unstable ownership
Git dependency
GitHub dependency
AI-detected potential malware
HTTP dependency
Obfuscated code
Suspicious Stars on GitHub
Critical CVE
High CVE
Medium CVE
Low CVE
Unpopular package
Minified code
Bad dependency semver
Wildcard dependency
Socket optimized override available
Deprecated
Unmaintained
Explicitly Unlicensed Item
License Policy Violation
Misc. License Issues
License exception
Ambiguous License Classifier
Copyleft License
No License Found
Non-permissive License
Unidentified License
Socket detects and blocks malicious dependencies, often within just minutes of them being published to public registries, making it the most effective tool for blocking zero-day supply chain attacks.
Socket is built by a team of prolific open source maintainers whose software is downloaded over 1 billion times per month. We understand how to build tools that developers love. But don’t take our word for it.

Nat Friedman
CEO at GitHub

Suz Hinton
Senior Software Engineer at Stripe
heck yes this is awesome!!! Congrats team 🎉👏

Matteo Collina
Node.js maintainer, Fastify lead maintainer
So awesome to see @SocketSecurity launch with a fresh approach! Excited to have supported the team from the early days.

DC Posch
Director of Technology at AppFolio, CTO at Dynasty
This is going to be super important, especially for crypto projects where a compromised dependency results in stolen user assets.

Luis Naranjo
Software Engineer at Microsoft
If software supply chain attacks through npm don't scare the shit out of you, you're not paying close enough attention.
@SocketSecurity sounds like an awesome product. I'll be using socket.dev instead of npmjs.org to browse npm packages going forward

Elena Nadolinski
Founder and CEO at Iron Fish
Huge congrats to @SocketSecurity! 🙌
Literally the only product that proactively detects signs of JS compromised packages.

Joe Previte
Engineering Team Lead at Coder
Congrats to @feross and the @SocketSecurity team on their seed funding! 🚀 It's been a big help for us at @CoderHQ and we appreciate what y'all are doing!

Josh Goldberg
Staff Developer at Codecademy
This is such a great idea & looks fantastic, congrats & good luck @feross + team!
The best security teams in the world use Socket to get visibility into supply chain risk, and to build a security feedback loop into the development process.

Scott Roberts
CISO at UiPath
As a happy Socket customer, I've been impressed with how quickly they are adding value to the product, this move is a great step!

Yan Zhu
Head of Security at Brave, DEFCON, EFF, W3C
glad to hear some of the smartest people i know are working on (npm, etc.) supply chain security finally :). @SocketSecurity

Andrew Peterson
CEO and Co-Founder at Signal Sciences (acq. Fastly)
How do you track the validity of open source software libraries as they get updated? You're prob not. Check out @SocketSecurity and the updated tooling they launched.
Supply chain is a cluster in security as we all know and the tools from Socket are "duh" type tools to be implementing. Check them out and follow Feross Aboukhadijeh to see more updates coming from them in the future.

Zbyszek Tenerowicz
Senior Security Engineer at ConsenSys
socket.dev is getting more appealing by the hour

Devdatta Akhawe
Head of Security at Figma
The @SocketSecurity team is on fire! Amazing progress and I am exciting to see where they go next.

Sebastian Bensusan
Engineer Manager at Stripe
I find it surprising that we don't have _more_ supply chain attacks in software:
Imagine your airplane (the code running) was assembled (deployed) daily, with parts (dependencies) from internet strangers. How long until you get a bad part?
Excited for Socket to prevent this

Adam Baldwin
VP of Security at npm, Red Team at Auth0/Okta
Congrats to everyone at @SocketSecurity ❤️🤘🏻

Nico Waisman
CISO at Lyft
This is an area that I have personally been very focused on. As Nat Friedman said in the 2019 GitHub Universe keynote, Open Source won, and every time you add a new open source project you rely on someone else code and you rely on the people that build it.
This is both exciting and problematic. You are bringing real risk into your organization, and I'm excited to see progress in the industry from OpenSSF scorecards and package analyzers to the company that Feross Aboukhadijeh is building!
Secure your team's dependencies across your stack with Socket. Stop supply chain attacks before they reach production.
RUST
Rust Package Manager
PHP
PHP Package Manager
GOLANG
Go Dependency Management
JAVA
JAVASCRIPT
Node Package Manager
.NET
.NET Package Manager
PYTHON
Python Package Index
RUBY
Ruby Package Manager
AI
AI Model Hub
CI
CI/CD Workflows
EXTENSIONS
Chrome Browser Extensions
EXTENSIONS
VS Code Extensions
Attackers have taken notice of the opportunity to attack organizations through open source dependencies. Supply chain attacks rose a whopping 700% in the past year, with over 15,000 recorded attacks.
Nov 23, 2025
Shai Hulud v2
Shai Hulud v2 campaign: preinstall script (setup_bun.js) and loader (setup_bin.js) that installs/locates Bun and executes an obfuscated bundled malicious script (bun_environment.js) with suppressed output.
Nov 05, 2025
Elves on npm
A surge of auto-generated "elf-stats" npm packages is being published every two minutes from new accounts. These packages contain simple malware variants and are being rapidly removed by npm. At least 420 unique packages have been identified, often described as being generated every two minutes, with some mentioning a capture the flag challenge or test.
Jul 04, 2025
RubyGems Automation-Tool Infostealer
Since at least March 2023, a threat actor using multiple aliases uploaded 60 malicious gems to RubyGems that masquerade as automation tools (Instagram, TikTok, Twitter, Telegram, WordPress, and Naver). The gems display a Korean Glimmer-DSL-LibUI login window, then exfiltrate the entered username/password and the host's MAC address via HTTP POST to threat actor-controlled infrastructure.
Mar 13, 2025
North Korea's Contagious Interview Campaign
Since late 2024, we have tracked hundreds of malicious npm packages and supporting infrastructure tied to North Korea's Contagious Interview operation, with tens of thousands of downloads targeting developers and tech job seekers. The threat actors run a factory-style playbook: recruiter lures and fake coding tests, polished GitHub templates, and typosquatted or deceptive dependencies that install or import into real projects.
Jul 23, 2024
Network Reconnaissance Campaign
A malicious npm supply chain attack that leveraged 60 packages across three disposable npm accounts to fingerprint developer workstations and CI/CD servers during installation. Each package embedded a compact postinstall script that collected hostnames, internal and external IP addresses, DNS resolvers, usernames, home and working directories, and package metadata, then exfiltrated this data as a JSON blob to a hardcoded Discord webhook.
Get our latest security research, open source insights, and product updates.

Security News
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.

Research
/Security News
Since January 31, 2026, we identified at least 72 additional malicious Open VSX extensions, including transitive GlassWorm loader extensions targeting developers.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.