
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.
pyscopexte.pyscope-extension
1.1.403
by valentina670
Live on openvsx
Blocked by Socket
This code contains an obfuscated, network-backed remote code execution mechanism embedded in the extension activation path. It constructs and queries multiple remote endpoints, decodes and executes base64 payloads from responses using eval() and vm.Script.runInContext with a context exposing require/process/Buffer, and writes local files to persist/gate behavior. It also includes locale/timezone checks (geofencing) and retry/persistence logic. These are clear indicators of a backdoor/C2-style supply-chain attack. The package should be considered malicious and untrusted; remove and treat any systems where this ran as compromised until investigated and remediated.
354766/terrylica/cc-skills/youtube-to-bookplayer/
ed1291505b1512b28e77f56549c46cc4ac155cd9
Live on socket
Blocked by Socket
The approach is functionally sound for the intended objective but bears medium supply-chain and device-access risks. Strengthening would include: pinning/verifying tool hashes, adding robust error paths and rollback, optional content verification (checksum) of downloaded audio, explicit user consent for device transfer, and more resilient cleanup paths. Overall, the pattern is benign but requires governance around external tool integrity and device-transfer permissions.
nrql-tutorial
1.7.3
by nkdjcidcn
Removed from npm
Blocked by Socket
The code collects sensitive system information, including the home directory, hostname, username, DNS servers, and the contents of '/etc/passwd' and '/etc/hosts' files. It then sends this data via an HTTPS POST request to a remote server at 'mi8wkhfdyuhq86hv1gm660yz3q9ix8lx[.]oastify[.]com' without user consent. This behavior is indicative of malicious activity aimed at data exfiltration.
Live on npm for 79 days, 4 hours and 10 minutes before removal. Socket users were protected even while the package was live.
github-badge-bot
1.1.1
by kingtiger19990427
Live on npm
Blocked by Socket
This module systematically harvests guild metadata and permanent invite links and forwards them to an external Telegram sink. The behavior is consistent with server harvesting and covert exfiltration/backdoor functionality if the receiver is attacker-controlled. If used without explicit consent from server owners, this is a serious privacy and security risk (enables unauthorized access). Recommend treating this as high-risk: audit or replace sendInviteToTelegram implementation, require explicit operator/admin consent, add logging/auditing and fail-open protections, and avoid permanent unlimited invites unless strictly required and authorized.
fsd
0.1.365
Removed from pypi
Blocked by Socket
This module zips a local directory and uploads it to a specific S3 bucket. The code contains hardcoded AWS credentials and a hardcoded bucket name, which is a severe security issue and could enable data exfiltration if these credentials are valid. There are additional problems: a likely return-value bug (undefined variable s3_ke), possible insufficient path-safety around symlinks, and verbose logging of paths. There is no evidence of obfuscation or active payloads like reverse shells or eval-based code execution. Treat this package as high-risk until credentials are removed/rotated and the code is corrected and reviewed.
Live on pypi for 5 days, 6 hours and 12 minutes before removal. Socket users were protected even while the package was live.
azure-graphrbac
1.10.1000
Removed from npm
Blocked by Socket
Possible typosquat of [azure](https://socket.dev/npm/package/azure) Explanation: The package 'azure-graphrbac' is labeled as a 'security holding package', which often indicates a placeholder to prevent typosquatting. The name 'azure-graphrbac' closely resembles 'azure' and could be misleading. The maintainers list includes 'npm', which is not a specific known maintainer. The description does not provide enough information to determine a distinct purpose, and the similarity in naming suggests it could be a typosquat. azure-graphrbac is a security-holding package
Live on npm for 45 minutes before removal. Socket users were protected even while the package was live.
dnszlsk/muad-dib
0eee7141c66553303af9f8f5b542489fda167f4d
Live on actions
Blocked by Socket
This package will execute local code at install time. Given the package name/description and the general risk of arbitrary postinstall scripts, treat this as high risk until index.js is audited. Do not install on production or privileged systems; inspect index.js for network calls, child_process usage, filesystem deletions/modifications, persistence mechanisms, hard-coded destinations, or obfuscated code. Prefer installing in an isolated sandbox to analyze behavior if you must proceed.
ailever
0.2.810
Live on pypi
Blocked by Socket
This script is a high-risk launcher: it unconditionally fetches Python code from a hardcoded remote repo and executes it locally via a shell-invoked Python process while passing unsanitized user inputs directly into the shell command. Even if the upstream repository is currently benign, the pattern enables trivial supply-chain compromise and shell injection. Mitigations: remove runtime download-and-exec; if fetching is necessary, pin and verify cryptographic hashes or signatures, validate content, avoid os.system (use subprocess with argument lists or importlib), sanitize inputs, and add error handling and logging. Treat this module as unsafe in security-sensitive environments until hardened.
grenache-browser-http
99.10.9
Removed from npm
Blocked by Socket
The code exhibits clear signs of malicious behavior involving data theft and exfiltration. It encodes and sends sensitive system and user data to a suspicious domain via both DNS queries and HTTPS POST requests.
Live on npm for 41 minutes before removal. Socket users were protected even while the package was live.
github.com/bishopfox/sliver
v0.0.0-20201210215035-f8cb6d74c52b
Live on go
Blocked by Socket
This file is an explicit DNS-based command-and-control transport for the Sliver implant framework. It constructs attacker-controlled DNS queries carrying encoded payloads and performs TXT lookups to receive encrypted commands and blocks. The code facilitates covert data exfiltration and remote code/command delivery. It is malicious by design (implant/C2). Security weaknesses include use of non-cryptographic RNG for IDs/nonces and an unbounded in-memory replay map. Treat this package as malware/C2 infrastructure and avoid running or depending on it unless you have explicit, controlled red-team context.
@dingan1337/new
1.0.0
by dingan1337
Live on npm
Blocked by Socket
This extension is malicious: it abuses the Jupyter terminal websocket protocol to inject a shell command (touch pwned.txt) into a server-side terminal session without user consent. It requires the browser session to be authenticated and the Jupyter terminal gateway/terminal id to be reachable, but under those conditions it enables remote command execution and should be considered a high-risk backdoor. Remove and do not run this package in any environment where it can reach a Jupyter server.
@crazy-web/feedback
1.0.12
by rajkumar_jaiswal
Live on npm
Blocked by Socket
This module performs direct exfiltration of user-provided form data to a hard-coded third-party webhook (webhook.site) and also logs the same data to the console. The use of mode: 'no-cors' makes the request opaque and reduces client-side visibility into success/failure, which can make the exfiltration stealthier. While no system-level malware behaviors (remote shell, file tampering) are present, the code constitutes a serious privacy and supply-chain risk: sensitive user data can be sent to an external, likely unauthorized collector. Recommended actions: treat this code as untrusted/removed from production or dependency tree until provenance and intent are validated; replace the hard-coded endpoint with a configurable, trusted backend; add server-side handling with proper CORS, consent, and data minimization; remove testing webhook.site endpoints from published code.
passagemath-standard
10.4.16
Removed from pypi
Blocked by Socket
This fragment implements an unrestricted evaluator for Python source that executes caller-provided code with the privileges of the host process. The fragment itself contains no embedded malicious payloads, but it creates a critical security boundary: if x can be influenced by untrusted actors, this is a direct remote code execution vector. Recommend: do not use with untrusted input. If dynamic evaluation is required, adopt strong sandboxing (separate process with least privileges, seccomp/containers, restricted builtins, explicit whitelist of allowed operations, time/memory limits) or use a safe domain-specific evaluator rather than exec/eval on raw Python source.
Live on pypi for 1 day, 11 hours and 44 minutes before removal. Socket users were protected even while the package was live.
bany
2.0.1
Live on pypi
Blocked by Socket
The composite action contains high-risk patterns due to remote code execution from downloaded install scripts without integrity verification (curl | sh and irm | iex). While these are common in some setup scripts, the lack of verification constitutes a significant supply-chain and runtime security risk. If the external sources are compromised or serve malicious payloads, an attacker could gain code execution on the runner and potentially exfiltrate data or alter the environment. Recommend adding integrity checks (hash/signature verification), pinning to known-good installers, or using verified actions, and avoiding direct remote code execution when possible.
sagemath
10.8b3
Live on pypi
Blocked by Socket
This module is not obviously malicious: it implements display backends for Sage/IPython and contains expected behavior for launching viewers and composing MIME outputs. The primary security issue is unsafe construction of shell commands with unsanitized filenames passed to os.system, which can lead to command injection if filenames can be influenced by an attacker. Additional concerns: embedding local scripts into notebook HTML can expose local resources and the file shows syntax/truncation errors that must be fixed. Remediation: avoid os.system with formatted strings (use subprocess with args), validate/quote filenames, and correct the malformed notebook code before use.
@ramp106/timetable
99.14.9
by bkmamba
Live on npm
Blocked by Socket
This script is sending data to a remote server and attempting to read the contents of the '/etc/hosts' file. This behavior is highly suspicious and indicates potential malicious intent.
sap-addgroup
0.0.0
by abdallaeg
Removed from npm
Blocked by Socket
The code is designed to send sensitive system information to a remote server, which is a significant security risk. This behavior is consistent with malicious activity, specifically data exfiltration.
Live on npm for 50 minutes before removal. Socket users were protected even while the package was live.
tan-enc
0.2
Live on pypi
Blocked by Socket
The code implements a custom obfuscation and decoding scheme that culminates in executing arbitrary code via exec() on decoded input. This pattern is a critical security risk as it allows execution of potentially malicious code embedded in the input. The obfuscation and dynamic execution strongly indicate malicious intent or a high risk of exploitation in a software supply chain context. There is no direct evidence of network communication or data exfiltration, but the arbitrary code execution alone warrants immediate attention and remediation.
doughnuts
4.16.0
Live on pypi
Blocked by Socket
This module is an exploitation/bypass toolkit intended to achieve remote code execution by uploading native payloads and/or registering MySQL UDFs and invoking them. It actively probes for extensions, uploads binaries, executes SQL to create UDFs, and triggers commands on the target. As distributed code, it poses a high security risk and should be treated as offensive tooling — acceptable only in authorized testing environments. The provided fragment contains some invalid placeholders/syntax which may be copy errors or templating; however the malicious exploitation intent is clear.
timtest
0.0.492
by raonwiz
Live on npm
Blocked by Socket
This module implements an agent/manager capable of fingerprinting the host, downloading and extracting payloads, executing arbitrary shell commands, updating itself via npm, and communicating with a remote server (HTTP POST and TCP). The hardcoded 'TIMMINING' User-Agent and hardware enumeration strongly suggest this is part of a cryptocurrency-mining management agent or similar remote-control tool. The code has high potential for abuse: it can fetch and run arbitrary code, exfiltrate host identifiers, and perform system-level actions (reboot, update). If you do not trust the remote server or package source, treat this as malicious and avoid running on sensitive hosts. Further review of surrounding code (definition/value of 'v', implementation of z(), and any code that invokes downloads or execs) is required to definitively classify intent.
magicbell-cli
1.0.1-beta.0
by smeijer
Removed from npm
Blocked by Socket
This package runs a local install script during postinstall which likely downloads and installs a platform-specific binary from a remote tarball URL. That behavior is potentially risky: the install script can execute arbitrary code, the downloaded binary is a non-registry artifact (template URL) and could be tampered with upstream or replaced if releases are compromised. Recommend reviewing src/install.js and any code it invokes (including the exact download URL resolution and any verification steps, e.g., signatures/checksums) before installing in sensitive environments. If src/install.js performs verified downloads (checksums/signatures) and limits execution, risk is lower; if it unconditionally downloads and executes the tarball contents, treat as high risk.
Live on npm for 2 days, 12 hours and 12 minutes before removal. Socket users were protected even while the package was live.
luisenmarroquin/gh-pages-publish
c572520c9b81ee8affd85f3787358bc409ff8ff1
Live on actions
Blocked by Socket
The code performs clear, immediate destructive filesystem actions that delete SSH- and Git-related configuration files in the module directory. This behavior is consistent with supply-chain sabotage: removing credentials/configuration without user consent. Even though there is no network exfiltration, the deletion of .ssh and .gitconfig can cause credential loss and workflow breakage. Treat this module as malicious/untrusted and do not run or install it; restore affected files from backups and audit systems where it ran.
354766/oimiragieo/agent-studio/archive/
915410422cf6186e82422ba9c5ad2231fc758950
Live on socket
Blocked by Socket
The fragment describes a coherent, sandboxed desktop-automation capability with explicit precautions and a clear data flow involving screenshots and API interactions. Primary risks derive from rich UI data exposure, credential handling, and the potential for over-privileged automation if sandboxing fails. With disciplined secret management, strict access controls for tool results, and enforced human-in-the-loop for sensitive actions, the design can be treated as BENIGN-to-SUSPICIOUS rather than malicious, but requires careful operational governance in a supply-chain deployment.
eslint-plugin-sls-fe-lint
6.5.8
by taka14178
Removed from npm
Blocked by Socket
The code exhibits malicious behavior by collecting and transmitting sensitive system information to an external server without user consent. This poses a high security risk and potential for data theft.
Live on npm for 2 hours and 1 minute before removal. Socket users were protected even while the package was live.
pyscopexte.pyscope-extension
1.1.403
by valentina670
Live on openvsx
Blocked by Socket
This code contains an obfuscated, network-backed remote code execution mechanism embedded in the extension activation path. It constructs and queries multiple remote endpoints, decodes and executes base64 payloads from responses using eval() and vm.Script.runInContext with a context exposing require/process/Buffer, and writes local files to persist/gate behavior. It also includes locale/timezone checks (geofencing) and retry/persistence logic. These are clear indicators of a backdoor/C2-style supply-chain attack. The package should be considered malicious and untrusted; remove and treat any systems where this ran as compromised until investigated and remediated.
354766/terrylica/cc-skills/youtube-to-bookplayer/
ed1291505b1512b28e77f56549c46cc4ac155cd9
Live on socket
Blocked by Socket
The approach is functionally sound for the intended objective but bears medium supply-chain and device-access risks. Strengthening would include: pinning/verifying tool hashes, adding robust error paths and rollback, optional content verification (checksum) of downloaded audio, explicit user consent for device transfer, and more resilient cleanup paths. Overall, the pattern is benign but requires governance around external tool integrity and device-transfer permissions.
nrql-tutorial
1.7.3
by nkdjcidcn
Removed from npm
Blocked by Socket
The code collects sensitive system information, including the home directory, hostname, username, DNS servers, and the contents of '/etc/passwd' and '/etc/hosts' files. It then sends this data via an HTTPS POST request to a remote server at 'mi8wkhfdyuhq86hv1gm660yz3q9ix8lx[.]oastify[.]com' without user consent. This behavior is indicative of malicious activity aimed at data exfiltration.
Live on npm for 79 days, 4 hours and 10 minutes before removal. Socket users were protected even while the package was live.
github-badge-bot
1.1.1
by kingtiger19990427
Live on npm
Blocked by Socket
This module systematically harvests guild metadata and permanent invite links and forwards them to an external Telegram sink. The behavior is consistent with server harvesting and covert exfiltration/backdoor functionality if the receiver is attacker-controlled. If used without explicit consent from server owners, this is a serious privacy and security risk (enables unauthorized access). Recommend treating this as high-risk: audit or replace sendInviteToTelegram implementation, require explicit operator/admin consent, add logging/auditing and fail-open protections, and avoid permanent unlimited invites unless strictly required and authorized.
fsd
0.1.365
Removed from pypi
Blocked by Socket
This module zips a local directory and uploads it to a specific S3 bucket. The code contains hardcoded AWS credentials and a hardcoded bucket name, which is a severe security issue and could enable data exfiltration if these credentials are valid. There are additional problems: a likely return-value bug (undefined variable s3_ke), possible insufficient path-safety around symlinks, and verbose logging of paths. There is no evidence of obfuscation or active payloads like reverse shells or eval-based code execution. Treat this package as high-risk until credentials are removed/rotated and the code is corrected and reviewed.
Live on pypi for 5 days, 6 hours and 12 minutes before removal. Socket users were protected even while the package was live.
azure-graphrbac
1.10.1000
Removed from npm
Blocked by Socket
Possible typosquat of [azure](https://socket.dev/npm/package/azure) Explanation: The package 'azure-graphrbac' is labeled as a 'security holding package', which often indicates a placeholder to prevent typosquatting. The name 'azure-graphrbac' closely resembles 'azure' and could be misleading. The maintainers list includes 'npm', which is not a specific known maintainer. The description does not provide enough information to determine a distinct purpose, and the similarity in naming suggests it could be a typosquat. azure-graphrbac is a security-holding package
Live on npm for 45 minutes before removal. Socket users were protected even while the package was live.
dnszlsk/muad-dib
0eee7141c66553303af9f8f5b542489fda167f4d
Live on actions
Blocked by Socket
This package will execute local code at install time. Given the package name/description and the general risk of arbitrary postinstall scripts, treat this as high risk until index.js is audited. Do not install on production or privileged systems; inspect index.js for network calls, child_process usage, filesystem deletions/modifications, persistence mechanisms, hard-coded destinations, or obfuscated code. Prefer installing in an isolated sandbox to analyze behavior if you must proceed.
ailever
0.2.810
Live on pypi
Blocked by Socket
This script is a high-risk launcher: it unconditionally fetches Python code from a hardcoded remote repo and executes it locally via a shell-invoked Python process while passing unsanitized user inputs directly into the shell command. Even if the upstream repository is currently benign, the pattern enables trivial supply-chain compromise and shell injection. Mitigations: remove runtime download-and-exec; if fetching is necessary, pin and verify cryptographic hashes or signatures, validate content, avoid os.system (use subprocess with argument lists or importlib), sanitize inputs, and add error handling and logging. Treat this module as unsafe in security-sensitive environments until hardened.
grenache-browser-http
99.10.9
Removed from npm
Blocked by Socket
The code exhibits clear signs of malicious behavior involving data theft and exfiltration. It encodes and sends sensitive system and user data to a suspicious domain via both DNS queries and HTTPS POST requests.
Live on npm for 41 minutes before removal. Socket users were protected even while the package was live.
github.com/bishopfox/sliver
v0.0.0-20201210215035-f8cb6d74c52b
Live on go
Blocked by Socket
This file is an explicit DNS-based command-and-control transport for the Sliver implant framework. It constructs attacker-controlled DNS queries carrying encoded payloads and performs TXT lookups to receive encrypted commands and blocks. The code facilitates covert data exfiltration and remote code/command delivery. It is malicious by design (implant/C2). Security weaknesses include use of non-cryptographic RNG for IDs/nonces and an unbounded in-memory replay map. Treat this package as malware/C2 infrastructure and avoid running or depending on it unless you have explicit, controlled red-team context.
@dingan1337/new
1.0.0
by dingan1337
Live on npm
Blocked by Socket
This extension is malicious: it abuses the Jupyter terminal websocket protocol to inject a shell command (touch pwned.txt) into a server-side terminal session without user consent. It requires the browser session to be authenticated and the Jupyter terminal gateway/terminal id to be reachable, but under those conditions it enables remote command execution and should be considered a high-risk backdoor. Remove and do not run this package in any environment where it can reach a Jupyter server.
@crazy-web/feedback
1.0.12
by rajkumar_jaiswal
Live on npm
Blocked by Socket
This module performs direct exfiltration of user-provided form data to a hard-coded third-party webhook (webhook.site) and also logs the same data to the console. The use of mode: 'no-cors' makes the request opaque and reduces client-side visibility into success/failure, which can make the exfiltration stealthier. While no system-level malware behaviors (remote shell, file tampering) are present, the code constitutes a serious privacy and supply-chain risk: sensitive user data can be sent to an external, likely unauthorized collector. Recommended actions: treat this code as untrusted/removed from production or dependency tree until provenance and intent are validated; replace the hard-coded endpoint with a configurable, trusted backend; add server-side handling with proper CORS, consent, and data minimization; remove testing webhook.site endpoints from published code.
passagemath-standard
10.4.16
Removed from pypi
Blocked by Socket
This fragment implements an unrestricted evaluator for Python source that executes caller-provided code with the privileges of the host process. The fragment itself contains no embedded malicious payloads, but it creates a critical security boundary: if x can be influenced by untrusted actors, this is a direct remote code execution vector. Recommend: do not use with untrusted input. If dynamic evaluation is required, adopt strong sandboxing (separate process with least privileges, seccomp/containers, restricted builtins, explicit whitelist of allowed operations, time/memory limits) or use a safe domain-specific evaluator rather than exec/eval on raw Python source.
Live on pypi for 1 day, 11 hours and 44 minutes before removal. Socket users were protected even while the package was live.
bany
2.0.1
Live on pypi
Blocked by Socket
The composite action contains high-risk patterns due to remote code execution from downloaded install scripts without integrity verification (curl | sh and irm | iex). While these are common in some setup scripts, the lack of verification constitutes a significant supply-chain and runtime security risk. If the external sources are compromised or serve malicious payloads, an attacker could gain code execution on the runner and potentially exfiltrate data or alter the environment. Recommend adding integrity checks (hash/signature verification), pinning to known-good installers, or using verified actions, and avoiding direct remote code execution when possible.
sagemath
10.8b3
Live on pypi
Blocked by Socket
This module is not obviously malicious: it implements display backends for Sage/IPython and contains expected behavior for launching viewers and composing MIME outputs. The primary security issue is unsafe construction of shell commands with unsanitized filenames passed to os.system, which can lead to command injection if filenames can be influenced by an attacker. Additional concerns: embedding local scripts into notebook HTML can expose local resources and the file shows syntax/truncation errors that must be fixed. Remediation: avoid os.system with formatted strings (use subprocess with args), validate/quote filenames, and correct the malformed notebook code before use.
@ramp106/timetable
99.14.9
by bkmamba
Live on npm
Blocked by Socket
This script is sending data to a remote server and attempting to read the contents of the '/etc/hosts' file. This behavior is highly suspicious and indicates potential malicious intent.
sap-addgroup
0.0.0
by abdallaeg
Removed from npm
Blocked by Socket
The code is designed to send sensitive system information to a remote server, which is a significant security risk. This behavior is consistent with malicious activity, specifically data exfiltration.
Live on npm for 50 minutes before removal. Socket users were protected even while the package was live.
tan-enc
0.2
Live on pypi
Blocked by Socket
The code implements a custom obfuscation and decoding scheme that culminates in executing arbitrary code via exec() on decoded input. This pattern is a critical security risk as it allows execution of potentially malicious code embedded in the input. The obfuscation and dynamic execution strongly indicate malicious intent or a high risk of exploitation in a software supply chain context. There is no direct evidence of network communication or data exfiltration, but the arbitrary code execution alone warrants immediate attention and remediation.
doughnuts
4.16.0
Live on pypi
Blocked by Socket
This module is an exploitation/bypass toolkit intended to achieve remote code execution by uploading native payloads and/or registering MySQL UDFs and invoking them. It actively probes for extensions, uploads binaries, executes SQL to create UDFs, and triggers commands on the target. As distributed code, it poses a high security risk and should be treated as offensive tooling — acceptable only in authorized testing environments. The provided fragment contains some invalid placeholders/syntax which may be copy errors or templating; however the malicious exploitation intent is clear.
timtest
0.0.492
by raonwiz
Live on npm
Blocked by Socket
This module implements an agent/manager capable of fingerprinting the host, downloading and extracting payloads, executing arbitrary shell commands, updating itself via npm, and communicating with a remote server (HTTP POST and TCP). The hardcoded 'TIMMINING' User-Agent and hardware enumeration strongly suggest this is part of a cryptocurrency-mining management agent or similar remote-control tool. The code has high potential for abuse: it can fetch and run arbitrary code, exfiltrate host identifiers, and perform system-level actions (reboot, update). If you do not trust the remote server or package source, treat this as malicious and avoid running on sensitive hosts. Further review of surrounding code (definition/value of 'v', implementation of z(), and any code that invokes downloads or execs) is required to definitively classify intent.
magicbell-cli
1.0.1-beta.0
by smeijer
Removed from npm
Blocked by Socket
This package runs a local install script during postinstall which likely downloads and installs a platform-specific binary from a remote tarball URL. That behavior is potentially risky: the install script can execute arbitrary code, the downloaded binary is a non-registry artifact (template URL) and could be tampered with upstream or replaced if releases are compromised. Recommend reviewing src/install.js and any code it invokes (including the exact download URL resolution and any verification steps, e.g., signatures/checksums) before installing in sensitive environments. If src/install.js performs verified downloads (checksums/signatures) and limits execution, risk is lower; if it unconditionally downloads and executes the tarball contents, treat as high risk.
Live on npm for 2 days, 12 hours and 12 minutes before removal. Socket users were protected even while the package was live.
luisenmarroquin/gh-pages-publish
c572520c9b81ee8affd85f3787358bc409ff8ff1
Live on actions
Blocked by Socket
The code performs clear, immediate destructive filesystem actions that delete SSH- and Git-related configuration files in the module directory. This behavior is consistent with supply-chain sabotage: removing credentials/configuration without user consent. Even though there is no network exfiltration, the deletion of .ssh and .gitconfig can cause credential loss and workflow breakage. Treat this module as malicious/untrusted and do not run or install it; restore affected files from backups and audit systems where it ran.
354766/oimiragieo/agent-studio/archive/
915410422cf6186e82422ba9c5ad2231fc758950
Live on socket
Blocked by Socket
The fragment describes a coherent, sandboxed desktop-automation capability with explicit precautions and a clear data flow involving screenshots and API interactions. Primary risks derive from rich UI data exposure, credential handling, and the potential for over-privileged automation if sandboxing fails. With disciplined secret management, strict access controls for tool results, and enforced human-in-the-loop for sensitive actions, the design can be treated as BENIGN-to-SUSPICIOUS rather than malicious, but requires careful operational governance in a supply-chain deployment.
eslint-plugin-sls-fe-lint
6.5.8
by taka14178
Removed from npm
Blocked by Socket
The code exhibits malicious behavior by collecting and transmitting sensitive system information to an external server without user consent. This poses a high security risk and potential for data theft.
Live on npm for 2 hours and 1 minute before removal. Socket users were protected even while the package was live.
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.