By clicking “Accept”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information.
18px_cookie
e-remove
Blog
Glossary
Customer Story
Video
eBook / Report
Solution Brief

Shai-Hulud 2 Malware Campaign Targets GitHub and Cloud Credentials Using Bun Runtime

Written by
Henrik Plate
Henrik Plate
Kiran Raj
Kiran Raj
Cris Staicu
Cris Staicu
Published on
November 24, 2025

A significantly escalated wave of the Shai-Hulud software supply chain attack is currently impacting the npm ecosystem. Beginning around November 24, 2025, the campaign expanded its target surface and adopted new execution techniques. The immediate consequence is automated credential theft, supply-chain propagation, and potential destructive data loss across developer environments and CI/CD systems. Organizations and developers who install impacted npm packages, including those from Zapier, ENS Domains, Postman, and PostHog, may be affected.

A key advancement in this wave is the adoption of the “Bun” runtime for malicious execution. Rather than relying solely on Node.js, which is more heavily monitored, the malware dynamically installs Bun during package installation, benefiting from its high performance and self-contained architecture to execute large payloads with improved stealth. This shift likely helps the malware evade traditional defenses tuned specifically to observe Node.js behavior.

The infection chain is triggered via a malicious pre-install script added to compromised “package.json” files. This script deploys a dropper (setup_bun.js) that installs Bun if absent, then launches a heavily obfuscated payload (bun_environment.js) as a detached background process to ensure persistence. The payload is environment-aware and explicitly targets CI/CD pipelines such as GitHub Actions to maximize access to high-value secrets.

What We’re Monitoring

This is an active incident with ongoing discovery and research. Information may change, and we will keep this section updated with the latest modifications to our analysis. Expect changes to:

  • Complete list of compromised packages and specific versions
  • Total number of infected repositories (currently >26,000)
  • Attribution and attack analysis details

What Happened

The current wave of Shai-Hulud activity was identified after abnormal publication activity and malicious code commits were observed in several widely used npm packages from verified and trusted organizations.

Initial indicators appeared around November 24, 2025, followed by an observable pattern of automated credential misuse, fraudulent npm publishes, and injection of malicious CI/CD workflows across private and public repositories. This represents a continuation and expansion of prior Shai-Hulud-linked attacks, now backed by broader automation and infrastructure.

What’s Impacted

The campaign currently affects npm packages that were compromised during publication. Any environment installing a compromised package—including laptops, build servers, and GitHub Actions runners—may be impacted.

See the affected packages list for the full breakdown.

Technical Analysis

Current Version Capabilities:

  1. Credential Harvesting & Exfiltration: Steals secrets for major cloud platforms (AWS, GCP, Azure) and development ecosystems (GitHub, npm).
  2. Self-Replication / Worming: Uses stolen tokens to propagate across additional repositories and organizations.
  3. Destructive Wiper Behavior: Includes conditional logic to shred and permanently erase the user’s home directory:
    1. Windows: Uses del and rd to delete files and directories in %USERPROFILE%, then cipher /W to overwrite the data.
    2. Linux: Uses shred to overwrite files to prevent recovery, then deletes empty directories.

Entry Point: Package.json

Image of “package.json” file where attackers inserted a malicious preinstall script hook that automatically executes upon installation.

Dropper Script: setup_bun.js

This script acts as the dropper and loader. Its behavior is as follows:

Step 1: Main execution flow (main function)

Step 2: Check if Bun is on PATH (isBunOnPath)

Step 3: Check for local Bun distribution

Step 4: Download and install Bun if needed (downloadAndSetupBun)

Step 5: Reload PATH environment variable (reloadPath)

Step 6: Locate the Bun executable (findBunExecutable)

Step 7: Execute the payload (runExecutable)

Payload Analysis: bun_environment.js

This is the core malicious script; the payload is a 480,000+ line JavaScript file, heavily obfuscated, likely using https://obfuscator.io/. On deobfuscating the code, static analysis revealed several critical malicious components.

Secret Discovery and Theft (TruffleHog-like Behavior)

  • Contains string references to “trufflehog,” “Truffler,” and “findings.”
  • Includes logic to classify results as “Verified” or “Unverified” secrets.
  • Focused on extracting credentials from:
    • Cloud Providers: AWS (aws-sdk, secrets), GCP, Azure
    • Development and Build Tools: GitHub access tokens, NPM tokens (NPM_CONFIG_TOKEN, npm publish credentials)

Exfiltration and Network Activity

  • Uses fetch() to send harvested data over the network.
  • Likely exfiltrates credentials to an attacker-controlled command-and-control (C2) server.

Worming and Supply-Chain Propagation

  • Contains functionality for automated npm publish
  • Attempts to upload compromised versions of other packages found in the environment, leveraging the stolen NPM credentials.

Impact: Infected GitHub Package Artifacts

The blast radius of this Shai‑Hulud attack is substantial, extending far beyond individual npm packages. Once the malware acquires valid authentication tokens, such as privileged GitHub access tokens, it leverages them to automatically compromise additional repositories and organizations. This leads to chained infections across developer ecosystems where the original victim has access privileges. At the time of authoring this blog, more than 26k repositories with leaked credentials can be found using the GitHub search.GitHub had over 27,000 packages identified as infected.

Note, however, that many of those repositories are created within the same GitHub account, sometimes several hundred:

Worm / Replication Logic

Function bundleAssets() and updatePackage() is responsible for preparing the malicious payload for injection into a target package, it bundles both the dropper (setup_bun.js) and the main payload (bun_environment.js) into the target package, ensuring the next victim gets the full infection chain. The malware attempts to replicate in two ways as mentioned below. 

  1. NPM Supply Chain Infection: It checks for a valid NPM token in the environment. If found, it lists all packages maintained by that user and attempts to publish compromised updates (updatePackage), injecting itself into them.
  2. GitHub Repository Infection: It uses the authenticated GitHub session to create new repositories with random names (using generateRandomString) to host malicious artifacts.

After obtaining a GitHub token, the malware enumerates all repositories accessible to the compromised account and uses automated GitHub API actions to inject malicious artifacts. The following files are observed as indicators of infection, the attacker embeds stolen secrets inside these files, applying double Base64 encoding to obscure the credential data from simple string-based detection. Below are the decoded contents of these files along with an explanation of how they operate.

  1. .github/workflows/discussion.yaml
  2. cloud.json
  3. contents.json
  4. environment.json
  5. truffleSecrets.json

As part of the infection chain, a malicious GitHub workflow file (.github/workflows/discussion.yaml) is also added to the repository to automate further propagation or payload execution.

1. .github/workflows/discussion.yaml

This YAML file defines a GitHub Actions workflow that is designed to trigger whenever a "Discussion" is created or interacted with in the repository.

  1. Trigger: The workflow starts automatically whenever a GitHub Discussion event occurs (created, edited, deleted, etc.).
  2. Runner: It is configured to run on a self-hosted runner, not GitHub's infrastructure.
  3. Environment: Sets an environment variable RUNNER_TRACKING_ID to 0. This is sometimes used to disable runner telemetry or tracking features.
  4. The exploit: 

“run: echo ${{ github.event.discussion.body }}”

This line performs an intentional command injection, taking the content of the discussion body (`github.event.discussion.body`) and inserting it directly into a shell command. As a result, the shell executes the remote command and then immediately runs any additional malicious commands appended within the discussion body.

2. cloud.json

  1. This file contains the compromised cloud credentials, Its structure groups stolen secrets by provider, with separate sections for AWS, GCP, and Azure

3. contents.json

This file reveals highly sensitive reconnaissance data gathered by the malware from the victim's machine.

  1. The file captures detailed system profiling data, including OS type (Linux), architecture (x64), hostname, and the runner’s local user information such as home directory, username, shell, UID, and GID
  2. The data includes account metadata (login name, display name, repository count, followers, following, and account creation date), suggesting the malware is assessing the account’s value and reachable repositories.
  3. It records GitHub authentication details, confirming that the malware successfully authenticated using a stolen token and validated access to the victim’s GitHub account.

4. environment.json

The file captures a comprehensive snapshot of the GitHub Actions runner environment at the exact moment of the malware's execution. This data allows an attacker to fully understand the build context, available tools, and potential pivots for further compromise.

5. truffleSecrets.json

  1. The truffleSecrets-decoded.json file is a consolidated findings report produced by TruffleHog during execution in the compromised environment.
  2. It records discovery of a GitHub Actions token (JWT) located in “/home/runner/actions-runner/cached/.credentials”, providing authentication for the runner to interact with GitHub services.
  3. The scan also uncovered a GitHub OAuth installation token (ghs_) within the .git/config file, which could grant repository-level access.
  4. Multiple hardcoded or embedded credentials were flagged, including potential Box API tokens.
  5. Several findings in binary files (`node`, `bun`) identified as "Aiven" or "TomorrowIO" keys appear to be false positives based on the raw data (random strings or alphabet sequences).
  6. Scan Metadata: Provides operational data about the scan itself, including execution time, volume of data scanned, and the scanner version used.

Indicators of Compromise

Compromised repositories and systems may include any of the following files:

FilenameSha256
setup_bun.jsa3894003ad1d293ba96d77881ccd2071446dc3f65f434669b49b3da92421901a
bun_environment.js62ee164b9b306250c1172583f138c9614139264f889fa99614903c12755468d0
cloud.jsonc723605455e8667a4c84327cf6b704bbdcb9b4ce3707ddddd927d32b8372ff77
contents.json2e44e8d8a8e906fd5bfbb37be08dfe2dcf1ce41bd4ba726987ab516446dfb4f1
environment.jsonfa7df9e9fc5390cc54e0086073fc9b3054087ffddf661bbc9f836b007fa25f20
truffleSecrets.jsond66343059793800e72ef17690ce26492dc854c8513905778630ff1ed4e7a81b8
.github/workflows/discussion.yaml981d3e2f5d7e26c93bd4b758ea722468900894fb2368db5f8399282e2414fe33

Malicious GitHub Actions Workflow

The workflow file contains a command-injection mechanism triggered by discussion activity:
run: echo ${{ github.event.discussion.body }}

Recommended Response

Detect

Check recent repos, devices and build systems for:

  • New or modified preinstall scripts in package.json
  • Unexpected installation or use of Bun
  • Presence of any IoC files listed above
  • npm or GitHub accounts publishing new versions without human action
  • Logs showing unexpected registry authentication events

Contain & Remediate

  • Rotate all credentials (npm, GitHub, cloud platform tokens, CI/CD secrets).
  • Remove malicious repositories from affected GitHub accounts.
  • Temporarily restrict repository creation in your GitHub account.

Strengthen Long-Term Defenses

  • Delay package adoption for a period of time. While guidance varies across the industry, the Center for Internet Security Supply Chain Security Benchmark recommends organizations “ensure all packages used are more than 60 days old” for new software packages (not versions) that you use. When a new version comes out, you can use cooldown periods in automated dependency management tools, such as Dependabot allow you to reduce the probability that you update to a newly published and potentially malicious version of a software package. Setting a minimum release age in your pnpm settings can also assist here. 
  • Integrate malware detection. Run software composition analysis (SCA) and malware scanning in CI/CD and regularly on your codebase so that you can respond quickly when you are compromised. Supply chain risk is often implicitly accepted when software is reused. One can mitigate but never truly prevent it. Detective controls, like malware detection, help you effectively initiate incident response activities quickly. Making sure you have an up-to-date bill of materials and a quality malware feed is critical. Often, open source malware feeds are limited and the addition of proprietary feeds may be prudent.
  • Reduce the number of dependencies you use. This can primarily be done in two ways. You can reduce software reuse for similar use cases. Now, you probably don’t need to use two PDF creation libraries in your application. Just use one. Everyone will thank you for the standardization, except the supply chain hackers. You can also remove unused dependencies that are no longer where the code may not be used any longer due to application refactoring. You can use technologies like reachability analysis/call graph analysis to identify unused software dependencies in your packages.
  • Enforce integrity checks and pin versions in CI. Require lockfiles (package-lock.json, pnpm-lock.yaml) to be used in CI environments and teach developers to use npm ci rather than npm install unless they are adding, removing, or updating a dependency. 
  • Opt out of `--ignore-scripts` rather than opting into them as a CI practice. The npm / yarn CLI has a flag called ignore-scripts that can be used to prevent the execution of any lifecycle hooks defined in the package.json file of the packages you are installing. This flag can be used with any npm command that installs packages, such as npm install, npm ci, npm update. Package managers like pnpm have started to disable the use of lifecycle scripts by default and have made them opt in. The practice of ignoring lifecycle scripts could potentially break existing codebases, but educating developers on ignoring them by default and using them on an “as needed” basis will materially reduce the risk of them executing malware. You can obviously not patch human behavior, but building this practice into existing security awareness campaigns adds value.

Affected Packages

The campaign currently affects npm packages that were compromised during publication. Any environment installing a compromised package—including laptops, build servers, and GitHub Actions runners—may be impacted.

Package NameVersionStatus
02-echo0.0.7online
@accordproject/concerto-analysis3.24.1online
@accordproject/concerto-linter3.24.1online
@accordproject/concerto-linter-default-ruleset3.24.1online
@accordproject/concerto-metamodel3.12.5online
@accordproject/concerto-types3.24.1online
@accordproject/markdown-it-cicero0.16.26online
@accordproject/template-engine2.7.2online
@actbase/css-to-react-native-transform1.0.3offline
@actbase/native0.1.32online
@actbase/node-server1.1.19offline
@actbase/react-absolute0.8.3offline
@actbase/react-daum-postcode1.0.5offline
@actbase/react-kakaosdk0.9.27offline
@actbase/react-native-actionsheet1.0.3offline
@actbase/react-native-devtools0.1.3offline
@actbase/react-native-fast-image8.5.13offline
@actbase/react-native-kakao-channel1.0.2offline
@actbase/react-native-kakao-navi2.0.4offline
@actbase/react-native-less-transformer1.0.6offline
@actbase/react-native-naver-login1.0.1offline
@actbase/react-native-simple-video1.0.13offline
@actbase/react-native-tiktok1.1.3offline
@alaan/s2s-auth2.0.3offline
@alexcolls/nuxt-socket.io0.0.7online
@alexcolls/nuxt-socket.io0.0.8online
@alexcolls/nuxt-ux0.6.1online
@alexcolls/nuxt-ux0.6.2online
@antstackio/eslint-config-antstack0.0.3online
@antstackio/express-graphql-proxy0.2.8online
@antstackio/graphql-body-parser0.1.1online
@antstackio/json-to-graphql1.0.3online
@antstackio/shelbysam1.1.7online
@aryanhussain/my-angular-lib0.0.23offline
@asyncapi/avro-schema-parser3.0.25offline
@asyncapi/avro-schema-parser3.0.26offline
@asyncapi/bundler0.6.5offline
@asyncapi/bundler0.6.6offline
@asyncapi/cli4.1.2offline
@asyncapi/cli4.1.3offline
@asyncapi/converter1.6.3offline
@asyncapi/converter1.6.4offline
@asyncapi/diff0.5.1offline
@asyncapi/diff0.5.2offline
@asyncapi/dotnet-rabbitmq-template1.0.1offline
@asyncapi/dotnet-rabbitmq-template1.0.2offline
@asyncapi/edavisualiser1.2.1offline
@asyncapi/edavisualiser1.2.2offline
@asyncapi/generator2.8.5offline
@asyncapi/generator2.8.6offline
@asyncapi/generator-components0.3.2offline
@asyncapi/generator-components0.3.3offline
@asyncapi/generator-helpers0.2.1offline
@asyncapi/generator-helpers0.2.2offline
@asyncapi/generator-react-sdk1.1.4offline
@asyncapi/generator-react-sdk1.1.5offline
@asyncapi/go-watermill-template0.2.76offline
@asyncapi/go-watermill-template0.2.77offline
@asyncapi/html-template3.3.2offline
@asyncapi/html-template3.3.3offline
@asyncapi/java-spring-cloud-stream-template0.13.5offline
@asyncapi/java-spring-cloud-stream-template0.13.6offline
@asyncapi/java-spring-template1.6.1offline
@asyncapi/java-spring-template1.6.2offline
@asyncapi/java-template0.3.5offline
@asyncapi/java-template0.3.6offline
@asyncapi/keeper0.0.2offline
@asyncapi/keeper0.0.3offline
@asyncapi/markdown-template1.6.8offline
@asyncapi/markdown-template1.6.9offline
@asyncapi/modelina5.10.3offline
@asyncapi/modelina-cli5.10.2offline
@asyncapi/modelina-cli5.10.3offline
@asyncapi/multi-parser2.2.1offline
@asyncapi/multi-parser2.2.2offline
@asyncapi/nodejs-template3.0.5offline
@asyncapi/nodejs-template3.0.6offline
@asyncapi/nodejs-ws-template0.10.1offline
@asyncapi/nodejs-ws-template0.10.2offline
@asyncapi/nunjucks-filters2.1.1offline
@asyncapi/nunjucks-filters2.1.2offline
@asyncapi/openapi-schema-parser3.0.25offline
@asyncapi/openapi-schema-parser3.0.26offline
@asyncapi/optimizer1.0.5offline
@asyncapi/optimizer1.0.6offline
@asyncapi/parser3.4.1offline
@asyncapi/parser3.4.2offline
@asyncapi/php-template0.1.1offline
@asyncapi/php-template0.1.2offline
@asyncapi/problem1.0.1offline
@asyncapi/problem1.0.2offline
@asyncapi/protobuf-schema-parser3.5.2offline
@asyncapi/protobuf-schema-parser3.5.3offline
@asyncapi/protobuf-schema-parser3.6.1offline
@asyncapi/python-paho-template0.2.14offline
@asyncapi/python-paho-template0.2.15offline
@asyncapi/react-component2.6.6offline
@asyncapi/react-component2.6.7offline
@asyncapi/server-api0.16.24offline
@asyncapi/server-api0.16.25offline
@asyncapi/specs6.8.3offline
@asyncapi/specs6.9.1offline
@asyncapi/studio1.0.2online
@asyncapi/studio1.0.3online
@asyncapi/web-component2.6.6offline
@asyncapi/web-component2.6.7offline
@browserbasehq/bb91.2.21online
@browserbasehq/director-ai1.0.3online
@browserbasehq/mcp2.1.1online
@browserbasehq/mcp-server-browserbase2.4.2online
@browserbasehq/sdk-functions0.0.4offline
@browserbasehq/stagehand3.0.4online
@browserbasehq/stagehand-docs1.0.1online
@caretive/caret-cli0.0.2offline
@clausehq/flows-step-httprequest0.1.14online
@clausehq/flows-step-jsontoxml0.1.14online
@clausehq/flows-step-mqtt0.1.14online
@clausehq/flows-step-sendgridemail0.1.14online
@clausehq/flows-step-taskscreateurl0.1.14online
@commute/bloom1.0.3online
@commute/market-data1.0.2online
@commute/market-data-chartjs2.3.1online
@dev-blinq/ai-qa-logic1.0.19online
@dev-blinq/blinqioclient1.0.21offline
@dev-blinq/cucumber-js1.0.131online
@dev-blinq/cucumber_client1.0.738online
@dev-blinq/ui-systems1.0.93online
@ensdomains/address-encoder1.1.5offline
@ensdomains/blacklist1.0.1offline
@ensdomains/buffer0.1.2online
@ensdomains/ccip-read-cf-worker0.0.4online
@ensdomains/ccip-read-dns-gateway0.1.1offline
@ensdomains/ccip-read-router0.0.7offline
@ensdomains/ccip-read-worker-viem0.0.4offline
@ensdomains/content-hash3.0.1offline
@ensdomains/curvearithmetics1.0.1offline
@ensdomains/cypress-metamask1.2.1offline
@ensdomains/dnsprovejs0.5.3offline
@ensdomains/dnssec-oracle-anchors0.0.2offline
@ensdomains/dnssecoraclejs0.2.9offline
@ensdomains/durin0.1.2online
@ensdomains/durin-middleware0.0.2offline
@ensdomains/ens-archived-contracts0.0.3offline
@ensdomains/ens-avatar1.0.4offline
@ensdomains/ens-contracts1.6.1online
@ensdomains/ens-test-env1.0.2online
@ensdomains/ens-validation0.1.1offline
@ensdomains/ensjs4.0.3online
@ensdomains/ensjs-react0.0.5online
@ensdomains/eth-ens-namehash2.0.16offline
@ensdomains/hackathon-registrar1.0.5offline
@ensdomains/hardhat-chai-matchers-viem0.1.15offline
@ensdomains/hardhat-toolbox-viem-extended0.0.6offline
@ensdomains/mock2.1.52offline
@ensdomains/name-wrapper1.0.1offline
@ensdomains/offchain-resolver-contracts0.2.2offline
@ensdomains/op-resolver-contracts0.0.2online
@ensdomains/react-ens-address0.0.32offline
@ensdomains/renewal0.0.13offline
@ensdomains/renewal-widget0.1.10offline
@ensdomains/reverse-records1.0.1offline
@ensdomains/server-analytics0.0.2offline
@ensdomains/solsha10.0.4offline
@ensdomains/subdomain-registrar0.2.4offline
@ensdomains/test-utils1.3.1offline
@ensdomains/thorin0.6.51offline
@ensdomains/ui3.4.6offline
@ensdomains/unicode-confusables0.1.1offline
@ensdomains/unruggable-gateways0.0.3offline
@ensdomains/vite-plugin-i18next-loader4.0.4offline
@ensdomains/web3modal1.10.2offline
@everreal/react-charts2.0.2online
@everreal/validate-esmoduleinterop-imports1.4.5online
@everreal/web-analytics0.0.2online
@faq-component/core0.0.4online
@faq-component/react1.0.1online
@fishingbooker/browser-sync-plugin1.0.5online
@fishingbooker/react-loader1.0.7online
@fishingbooker/react-pagination2.0.6online
@fishingbooker/react-raty2.0.1online
@fishingbooker/react-swiper0.1.5online
@hapheus/n8n-nodes-pgp1.5.1online
@hover-design/core0.0.1online
@hover-design/react0.2.1online
@ifelsedeveloper/protocol-contracts-svm-idl0.1.2online
@ifelsedeveloper/protocol-contracts-svm-idl0.1.3online
@ifings/design-system4.9.2online
@ifings/metatron30.1.5online
@kvytech/cli0.0.7offline
@kvytech/components0.0.2offline
@kvytech/habbit-e2e-test0.0.2online
@kvytech/medusa-plugin-announcement0.0.8offline
@kvytech/medusa-plugin-management0.0.5offline
@kvytech/medusa-plugin-newsletter0.0.5offline
@kvytech/medusa-plugin-product-reviews0.0.9offline
@kvytech/medusa-plugin-promotion0.0.2online
@kvytech/web0.0.2offline
@lessondesk/api-client9.12.2online
@lessondesk/api-client9.12.3online
@lessondesk/babel-preset1.0.1online
@lessondesk/electron-group-api-client1.0.3online
@lessondesk/eslint-config1.4.2online
@lessondesk/material-icons1.0.3online
@lessondesk/react-table-context2.0.4online
@lessondesk/schoolbus5.2.2online
@lessondesk/schoolbus5.2.3online
@livecms/live-edit0.0.32online
@livecms/nuxt-live-edit1.9.2online
@louisle2/core1.0.1online
@louisle2/cortex-js0.1.6offline
@lpdjs/firestore-repo-service1.0.1online
@markvivanco/app-version-checker1.0.2offline
@mcp-use/cli2.2.6offline
@mcp-use/cli2.2.7offline
@mcp-use/inspector0.6.2offline
@mcp-use/inspector0.6.3offline
@mcp-use/mcp-use1.0.1offline
@mcp-use/mcp-use1.0.2offline
@ntnx/passport-wso20.0.3online
@ntnx/t0.0.101online
@orbitgtbelgium/mapbox-gl-draw-cut-polygon-mode2.0.5online
@orbitgtbelgium/mapbox-gl-draw-scale-rotate-mode1.1.1offline
@orbitgtbelgium/orbit-components1.2.9offline
@orbitgtbelgium/time-slider1.0.187offline
@osmanekrem/bmad1.0.6online
@osmanekrem/error-handler1.2.2online
@posthog/agent1.24.1offline
@posthog/ai7.1.2offline
@posthog/automatic-cohorts-plugin0.0.8offline
@posthog/bitbucket-release-tracker0.0.8offline
@posthog/cli0.5.15offline
@posthog/clickhouse1.7.1online
@posthog/core1.5.6offline
@posthog/currency-normalization-plugin0.0.8offline
@posthog/customerio-plugin0.0.8offline
@posthog/databricks-plugin0.0.8offline
@posthog/drop-events-on-property-plugin0.0.8offline
@posthog/event-sequence-timer-plugin0.0.8offline
@posthog/filter-out-plugin0.0.8offline
@posthog/first-time-event-tracker0.0.8offline
@posthog/geoip-plugin0.0.8offline
@posthog/github-release-tracking-plugin0.0.8offline
@posthog/gitub-star-sync-plugin0.0.8offline
@posthog/heartbeat-plugin0.0.8offline
@posthog/hedgehog-mode0.0.42offline
@posthog/icons0.36.1offline
@posthog/ingestion-alert-plugin0.0.8offline
@posthog/intercom-plugin0.0.8offline
@posthog/kinesis-plugin0.0.8offline
@posthog/laudspeaker-plugin0.0.8offline
@posthog/lemon-ui0.0.1offline
@posthog/maxmind-plugin0.1.6offline
@posthog/migrator3000-plugin0.0.8offline
@posthog/netdata-event-processing0.0.8offline
@posthog/nextjs0.0.3offline
@posthog/nextjs-config1.5.1offline
@posthog/nuxt1.2.9offline
@posthog/pagerduty-plugin0.0.8offline
@posthog/piscina3.2.1offline
@posthog/plugin-contrib0.0.6offline
@posthog/plugin-server1.10.8offline
@posthog/plugin-unduplicates0.0.8offline
@posthog/postgres-plugin0.0.8offline
@posthog/react-rrweb-player1.1.4offline
@posthog/rrdom0.0.31offline
@posthog/rrweb0.0.31offline
@posthog/rrweb-player0.0.31offline
@posthog/rrweb-record0.0.31offline
@posthog/rrweb-replay0.0.19online
@posthog/rrweb-snapshot0.0.31offline
@posthog/rrweb-utils0.0.31offline
@posthog/sendgrid-plugin0.0.8offline
@posthog/siphash1.1.2offline
@posthog/snowflake-export-plugin0.0.8offline
@posthog/taxonomy-plugin0.0.8offline
@posthog/twilio-plugin0.0.8offline
@posthog/twitter-followers-plugin0.0.8offline
@posthog/url-normalizer-plugin0.0.8offline
@posthog/variance-plugin0.0.8offline
@posthog/web-dev-server1.0.5offline
@posthog/wizard1.18.1offline
@posthog/zendesk-plugin0.0.8offline
@postman/csv-parse4.0.3offline
@postman/csv-parse4.0.5offline
@postman/final-node-keytar7.9.1offline
@postman/final-node-keytar7.9.2offline
@postman/final-node-keytar7.9.3offline
@postman/mcp-ui-client5.5.1offline
@postman/mcp-ui-client5.5.3offline
@postman/node-keytar7.9.4offline
@postman/node-keytar7.9.6offline
@postman/pm-bin-linux-x641.24.3offline
@postman/pm-bin-linux-x641.24.4offline
@postman/pm-bin-linux-x641.24.5offline
@postman/pm-bin-macos-arm641.24.3offline
@postman/pm-bin-macos-arm641.24.5offline
@postman/pm-bin-macos-x641.24.3offline
@postman/pm-bin-macos-x641.24.5offline
@postman/pm-bin-windows-x641.24.3offline
@postman/pm-bin-windows-x641.24.5offline
@postman/postman-collection-fork4.3.3offline
@postman/postman-collection-fork4.3.5offline
@postman/postman-mcp-cli1.0.3offline
@postman/postman-mcp-cli1.0.4offline
@postman/postman-mcp-cli1.0.5offline
@postman/postman-mcp-server2.4.10offline
@postman/postman-mcp-server2.4.12offline
@postman/pretty-ms6.1.1offline
@postman/pretty-ms6.1.2offline
@postman/pretty-ms6.1.3offline
@postman/secret-scanner-wasm2.1.3offline
@postman/secret-scanner-wasm2.1.4offline
@postman/tunnel-agent0.6.5offline
@postman/tunnel-agent0.6.7offline
@postman/wdio-allure-reporter0.0.7offline
@postman/wdio-allure-reporter0.0.9offline
@postman/wdio-junit-reporter0.0.4offline
@postman/wdio-junit-reporter0.0.5offline
@postman/wdio-junit-reporter0.0.6offline
@pradhumngautam/common-app1.0.2online
@pruthvi21/use-debounce1.0.3online
@quick-start-soft/quick-document-translator1.4.2511142126offline
@quick-start-soft/quick-git-clean-markdown1.4.2511142126offline
@quick-start-soft/quick-markdown1.4.2511142126offline
@quick-start-soft/quick-markdown-compose1.4.2506300029offline
@quick-start-soft/quick-markdown-image1.4.2511142126offline
@quick-start-soft/quick-markdown-print1.4.2511142126online
@quick-start-soft/quick-markdown-translator1.4.2509202331online
@quick-start-soft/quick-remove-image-background1.4.2511142126online
@quick-start-soft/quick-task-refine1.4.2511142126offline
@relyt/claude-context-core0.1.1online
@relyt/claude-context-mcp0.1.1offline
@seezo/sdr-mcp-server0.0.5online
@seung-ju/next0.0.2offline
@seung-ju/openapi-generator0.0.4offline
@seung-ju/react-hooks0.0.2offline
@seung-ju/react-native-action-sheet0.2.1online
@sme-ui/aoma-vevasound-metadata-lib0.1.3online
@strapbuild/react-native-date-time-picker2.0.4offline
@strapbuild/react-native-perspective-image-cropper0.4.15offline
@strapbuild/react-native-perspective-image-cropper-20.4.7offline
@strapbuild/react-native-perspective-image-cropper-poojan310.4.6offline
@suraj_h/medium-common1.0.5online
@thedelta/eslint-config1.0.2online
@tiaanduplessis/json2.0.2online
@tiaanduplessis/json2.0.3online
@tiaanduplessis/react-progressbar1.0.1online
@tiaanduplessis/react-progressbar1.0.2online
@trefox/sleekshop-js0.1.6online
@trigo/atrix7.0.1offline
@trigo/atrix-acl4.0.2offline
@trigo/atrix-elasticsearch2.0.1offline
@trigo/atrix-mongoose1.0.2offline
@trigo/atrix-orientdb1.0.2offline
@trigo/atrix-postgres1.0.3offline
@trigo/atrix-pubsub4.0.3offline
@trigo/atrix-redis1.0.2offline
@trigo/atrix-soap1.0.2offline
@trigo/atrix-swagger3.0.1online
@trigo/bool-expressions4.1.3offline
@trigo/eslint-config-trigo3.3.1offline
@trigo/fsm3.4.2offline
@trigo/hapi-auth-signedlink1.3.1offline
@trigo/jsdt0.2.1offline
@trigo/keycloak-api1.3.1offline
@trigo/node-soap0.5.4offline
@trigo/pathfinder-ui-css0.1.1offline
@trigo/trigo-hapijs5.0.1offline
@trpc-rate-limiter/cloudflare0.1.4online
@trpc-rate-limiter/hono0.1.4online
@varsityvibe/api-client1.3.36online
@varsityvibe/api-client1.3.37online
@varsityvibe/utils5.0.6online
@varsityvibe/validation-schemas0.6.7online
@varsityvibe/validation-schemas0.6.8online
@vishadtyagi/full-year-calendar0.1.11online
@voiceflow/alexa-types2.15.61online
@voiceflow/anthropic0.4.4online
@voiceflow/anthropic0.4.5online
@voiceflow/api-sdk3.28.59online
@voiceflow/backend-utils5.0.1online
@voiceflow/backend-utils5.0.2online
@voiceflow/base-types2.136.2online
@voiceflow/base-types2.136.3online
@voiceflow/body-parser1.21.2online
@voiceflow/body-parser1.21.3online
@voiceflow/chat-types2.14.58online
@voiceflow/chat-types2.14.59online
@voiceflow/circleci-config-sdk-orb-import0.2.1online
@voiceflow/circleci-config-sdk-orb-import0.2.2online
@voiceflow/commitlint-config2.6.1online
@voiceflow/common8.9.1online
@voiceflow/common8.9.2online
@voiceflow/default-prompt-wrappers1.7.3online
@voiceflow/default-prompt-wrappers1.7.4online
@voiceflow/dependency-cruiser-config1.8.11online
@voiceflow/dependency-cruiser-config1.8.12online
@voiceflow/dtos-interact1.40.1online
@voiceflow/dtos-interact1.40.2online
@voiceflow/encryption0.3.2online
@voiceflow/encryption0.3.3online
@voiceflow/eslint-config7.16.4online
@voiceflow/eslint-config7.16.5online
@voiceflow/eslint-plugin1.6.1online
@voiceflow/eslint-plugin1.6.2online
@voiceflow/exception1.10.1online
@voiceflow/exception1.10.2online
@voiceflow/fetch1.11.1online
@voiceflow/fetch1.11.2online
@voiceflow/general-types3.2.22online
@voiceflow/general-types3.2.23online
@voiceflow/git-branch-check1.4.3online
@voiceflow/google-dfes-types2.17.12online
@voiceflow/google-dfes-types2.17.13online
@voiceflow/google-types2.21.13online
@voiceflow/husky-config1.3.1online
@voiceflow/logger2.4.2online
@voiceflow/logger2.4.3online
@voiceflow/metrics1.5.1online
@voiceflow/metrics1.5.2online
@voiceflow/natural-language-commander0.5.2online
@voiceflow/natural-language-commander0.5.3online
@voiceflow/nestjs-common2.75.2online
@voiceflow/nestjs-common2.75.3online
@voiceflow/nestjs-mongodb1.3.1online
@voiceflow/nestjs-mongodb1.3.2online
@voiceflow/nestjs-rate-limit1.3.2online
@voiceflow/nestjs-rate-limit1.3.3online
@voiceflow/nestjs-redis1.3.1online
@voiceflow/nestjs-redis1.3.2online
@voiceflow/nestjs-timeout1.3.1online
@voiceflow/npm-package-json-lint-config1.1.1online
@voiceflow/openai3.2.2online
@voiceflow/openai3.2.3online
@voiceflow/pino6.11.3online
@voiceflow/pino6.11.4online
@voiceflow/pino-pretty4.4.1online
@voiceflow/pino-pretty4.4.2online
@voiceflow/prettier-config1.10.1online
@voiceflow/react-chat1.65.4online
@voiceflow/runtime1.29.1online
@voiceflow/runtime1.29.2online
@voiceflow/runtime-client-js1.17.2online
@voiceflow/runtime-client-js1.17.3online
@voiceflow/sdk-runtime1.43.1online
@voiceflow/sdk-runtime1.43.2online
@voiceflow/secrets-provider1.9.2online
@voiceflow/semantic-release-config1.4.1online
@voiceflow/serverless-plugin-typescript2.1.7online
@voiceflow/serverless-plugin-typescript2.1.8online
@voiceflow/slate-serializer1.7.3online
@voiceflow/slate-serializer1.7.4online
@voiceflow/stitches-react2.3.2online
@voiceflow/stitches-react2.3.3online
@voiceflow/storybook-config1.2.2online
@voiceflow/storybook-config1.2.3online
@voiceflow/stylelint-config1.1.1online
@voiceflow/test-common2.1.1online
@voiceflow/test-common2.1.2online
@voiceflow/tsconfig1.12.1online
@voiceflow/tsconfig-paths1.1.4online
@voiceflow/tsconfig-paths1.1.5online
@voiceflow/utils-designer1.74.20online
@voiceflow/verror1.1.4online
@voiceflow/vite-config2.6.2online
@voiceflow/vite-config2.6.3online
@voiceflow/vitest-config1.10.2online
@voiceflow/vitest-config1.10.3online
@voiceflow/voice-types2.10.58online
@voiceflow/voice-types2.10.59online
@voiceflow/voiceflow-types3.32.45online
@voiceflow/voiceflow-types3.32.46online
@voiceflow/widget1.7.18online
@voiceflow/widget1.7.19online
@zapier/ai-actions0.1.18offline
@zapier/ai-actions0.1.19offline
@zapier/ai-actions0.1.20offline
@zapier/ai-actions-react0.1.12offline
@zapier/ai-actions-react0.1.13offline
@zapier/ai-actions-react0.1.14offline
@zapier/babel-preset-zapier6.4.1offline
@zapier/babel-preset-zapier6.4.2offline
@zapier/babel-preset-zapier6.4.3offline
@zapier/browserslist-config-zapier1.0.3offline
@zapier/browserslist-config-zapier1.0.4offline
@zapier/browserslist-config-zapier1.0.5offline
@zapier/eslint-plugin-zapier11.0.3offline
@zapier/eslint-plugin-zapier11.0.4offline
@zapier/eslint-plugin-zapier11.0.5offline
@zapier/mcp-integration3.0.1offline
@zapier/mcp-integration3.0.2offline
@zapier/mcp-integration3.0.3offline
@zapier/secret-scrubber1.1.3offline
@zapier/secret-scrubber1.1.4offline
@zapier/secret-scrubber1.1.5offline
@zapier/spectral-api-ruleset1.9.1offline
@zapier/spectral-api-ruleset1.9.2offline
@zapier/spectral-api-ruleset1.9.3offline
@zapier/stubtree0.1.2offline
@zapier/stubtree0.1.3offline
@zapier/stubtree0.1.4offline
@zapier/zapier-sdk0.15.5offline
@zapier/zapier-sdk0.15.6offline
@zapier/zapier-sdk0.15.7offline
ai-crowl-shield1.0.7online
arc-cli-fc1.0.1online
asciitranslator1.0.3online
asyncapi-preview1.0.1offline
asyncapi-preview1.0.2offline
atrix1.0.1offline
atrix-mongoose1.0.1offline
automation_model1.0.491online
axios-builder1.2.1offline
axios-cancelable1.0.1online
axios-cancelable1.0.2online
axios-timed1.0.1online
axios-timed1.0.2online
barebones-css1.1.3online
barebones-css1.1.4online
benmostyn-frame-print1.0.1online
best_gpio_controller1.0.10online
bidirectional-adapter1.2.2online
bidirectional-adapter1.2.3online
bidirectional-adapter1.2.4online
blinqio-executions-cli1.0.41online
blob-to-base641.0.3online
bool-expressions0.1.2offline
bun-plugin-httpfile0.1.1online
bytecode-checker-cli1.0.10offline
bytecode-checker-cli1.0.11offline
bytecode-checker-cli1.0.8offline
bytecode-checker-cli1.0.9offline
bytes-to-x1.0.1online
calc-loan-interest1.0.4offline
capacitor-plugin-apptrackingios0.0.21offline
capacitor-plugin-purchase0.1.1offline
capacitor-plugin-scgssigninwithgoogle0.0.5offline
capacitor-purchase-history0.0.10offline
capacitor-voice-recorder-wav6.0.3online
chrome-extension-downloads0.0.3online
chrome-extension-downloads0.0.4online
claude-token-updater1.0.3offline
coinmarketcap-api3.1.2online
coinmarketcap-api3.1.3online
colors-regex2.0.1online
command-irail0.5.4online
compare-obj1.1.1online
compare-obj1.1.2online
composite-reducer1.0.2online
composite-reducer1.0.3online
composite-reducer1.0.4online
count-it-down1.0.1online
count-it-down1.0.2online
cpu-instructions0.0.14offline
create-director-app0.1.1online
create-glee-app0.2.2offline
create-glee-app0.2.3offline
create-hardhat3-app1.1.1offline
create-hardhat3-app1.1.2offline
create-hardhat3-app1.1.3offline
create-hardhat3-app1.1.4offline
create-mcp-use-app0.5.3offline
create-mcp-use-app0.5.4offline
crypto-addr-codec0.1.9offline
css-dedoupe0.1.2online
dashboard-empty-state1.0.3online
designstudiouiux1.0.1online
devstart-cli1.0.6offline
dialogflow-es1.1.2online
dialogflow-es1.1.3online
dialogflow-es1.1.4online
discord-bot-server0.1.2offline
docusaurus-plugin-vanilla-extract1.0.3online
dont-go1.1.2online
dotnet-template0.0.3offline
dotnet-template0.0.4offline
drop-events-on-property-plugin0.0.2online
email-deliverability-tester1.1.1online
enforce-branch-name1.1.3online
esbuild-plugin-brotli0.2.1online
esbuild-plugin-eta0.1.1offline
esbuild-plugin-httpfile0.4.1offline
eslint-config-nitpicky4.0.1online
eslint-config-trigo22.0.2offline
eslint-config-zeallat-base1.0.4offline
ethereum-ens0.8.1offline
evm-checkcode-cli1.0.12offline
evm-checkcode-cli1.0.13offline
evm-checkcode-cli1.0.14offline
evm-checkcode-cli1.0.15offline
exact-ticker0.3.5offline
expo-audio-session0.2.1offline
expressos1.1.3online
fat-fingered1.0.1online
fat-fingered1.0.2online
feature-flip1.0.1online
feature-flip1.0.2online
firestore-search-engine1.2.3online
fittxt1.0.2online
fittxt1.0.3online
flapstacks1.0.1online
flapstacks1.0.2online
flatten-unflatten1.0.1online
flatten-unflatten1.0.2online
formik-error-focus2.0.1online
formik-store1.0.1online
fuzzy-finder1.0.5online
fuzzy-finder1.0.6online
gate-evm-check-code22.0.3offline
gate-evm-check-code22.0.4offline
gate-evm-check-code22.0.5offline
gate-evm-check-code22.0.6offline
gate-evm-tools-test1.0.5offline
gate-evm-tools-test1.0.6offline
gate-evm-tools-test1.0.7offline
gate-evm-tools-test1.0.8offline
gatsby-plugin-cname1.0.1online
gatsby-plugin-cname1.0.2online
generator-meteor-stock0.1.6online
generator-ng-itobuz0.0.15online
get-them-args1.3.3online
github-action-for-generator2.1.27offline
github-action-for-generator2.1.28online
gitsafe1.0.5online
go-template0.1.8offline
go-template0.1.9offline
gulp-inject-envs1.2.1online
gulp-inject-envs1.2.2online
haufe-axera-api-client0.0.2online
hope-mapboxdraw0.1.1online
hopedraw1.0.3online
hover-design-prototype0.0.5online
httpness1.0.2online
httpness1.0.3online
hyper-fullfacing1.0.3online
hyperterm-hipster1.0.7online
ids-css1.5.1online
ids-enterprise-mcp-server0.0.2online
ids-enterprise-typings20.1.6online
image-to-uri1.0.1online
image-to-uri1.0.2online
insomnia-plugin-random-pick1.0.4online
invo0.2.2online
iron-shield-miniapp0.0.2offline
ito-button8.0.3online
itobuz-angular0.0.1online
itobuz-angular-auth8.0.11online
itobuz-angular-button8.0.11online
jacob-zuma1.0.1online
jacob-zuma1.0.2online
jaetut-varit-test1.0.2online
jan-browser0.13.1offline
jquery-bindings1.1.2online
jquery-bindings1.1.3online
jsonsurge1.0.7online
just-toasty1.7.1online
kill-port2.0.2online
kill-port2.0.3online
korea-administrative-area-geo-json-util1.0.7offline
kwami1.5.10online
kwami1.5.9online
lang-codes1.0.1online
lang-codes1.0.2online
license-o-matic1.2.1online
license-o-matic1.2.2online
lint-staged-imagemin1.3.1online
lint-staged-imagemin1.3.2online
lite-serper-mcp-server0.2.2offline
luno-api1.2.3online
manual-billing-system-miniapp-api1.3.1offline
mcp-use1.4.2offline
mcp-use1.4.3offline
medusa-plugin-announcement0.0.3offline
medusa-plugin-logs0.0.17online
medusa-plugin-momo0.0.68offline
medusa-plugin-product-reviews-kvy0.0.4offline
medusa-plugin-zalopay0.0.40offline
mod10-check-digit1.0.1online
mon-package-react-typescript1.0.1online
my-saeed-lib0.1.1online
n8n-nodes-tmdb0.5.1offline
n8n-nodes-vercel-ai-sdk0.1.7online
n8n-nodes-viral-app0.2.5online
nanoreset7.0.1online
nanoreset7.0.2online
next-circular-dependency1.0.2online
next-circular-dependency1.0.3online
next-simple-google-analytics1.1.1online
next-simple-google-analytics1.1.2online
next-styled-nprogress1.0.4online
next-styled-nprogress1.0.5online
ngx-useful-swiper-prosenjit9.0.2online
ngx-wooapi12.0.1online
normal-store1.3.1online
normal-store1.3.2online
normal-store1.3.3online
obj-to-css1.0.2online
obj-to-css1.0.3online
okta-react-router-65.0.1online
open2internet0.1.1offline
orbit-boxicons2.1.3offline
orbit-nebula-draw-tools1.0.10offline
orbit-nebula-editor1.0.2offline
orbit-soap0.43.13offline
orchestrix12.1.2online
package-tester1.0.1online
parcel-plugin-asset-copier1.1.2online
parcel-plugin-asset-copier1.1.3online
pdf-annotation0.0.2online
piclite1.0.1online
pico-uid1.0.3online
pico-uid1.0.4online
pkg-readme1.1.1online
poper-react-sdk0.1.2offline
posthog-docusaurus2.0.6offline
posthog-js1.297.3offline
posthog-node4.18.1offline
posthog-node5.13.3offline
posthog-plugin-hello-world1.0.1offline
posthog-react-native4.11.1offline
posthog-react-native4.12.5offline
posthog-react-native-session-replay1.2.2offline
prime-one-table0.0.19online
prompt-eng1.0.50online
prompt-eng-server1.0.18offline
puny-req1.0.3online
ra-auth-firebase1.0.3online
ra-data-firebase1.0.7online
ra-data-firebase1.0.8online
react-component-taggers0.1.9online
react-data-to-export1.0.1online
react-element-prompt-inspector0.1.18offline
react-favic1.0.2online
react-hook-form-persist3.0.1online
react-hook-form-persist3.0.2online
react-jam-icons1.0.1online
react-jam-icons1.0.2online
react-keycloak-context1.0.8online
react-keycloak-context1.0.9online
react-library-setup0.0.6offline
react-linear-loader1.0.2online
react-micromodal.js1.0.1online
react-micromodal.js1.0.2online
react-native-datepicker-modal1.3.1online
react-native-datepicker-modal1.3.2online
react-native-email2.1.1online
react-native-email2.1.2online
react-native-fetch2.0.1online
react-native-fetch2.0.2online
react-native-get-pixel-dimensions1.0.1online
react-native-get-pixel-dimensions1.0.2online
react-native-google-maps-directions2.1.2online
react-native-jam-icons1.0.1online
react-native-jam-icons1.0.2online
react-native-log-level1.2.1online
react-native-log-level1.2.2online
react-native-modest-checkbox3.3.1online
react-native-modest-storage2.1.1online
react-native-phone-call1.2.1online
react-native-phone-call1.2.2online
react-native-retriable-fetch2.0.1online
react-native-retriable-fetch2.0.2online
react-native-use-modal1.0.3offline
react-native-view-finder1.2.1online
react-native-view-finder1.2.2online
react-native-websocket1.0.3online
react-native-websocket1.0.4online
react-native-worklet-functions3.3.3offline
react-qr-image1.1.1online
rediff1.0.5online
rediff-viewer0.0.7online
redux-forge2.5.3offline
redux-router-kit1.2.2offline
redux-router-kit1.2.3offline
redux-router-kit1.2.4offline
rollup-plugin-httpfile0.2.1offline
sa-company-registration-number-regex1.0.1online
sa-company-registration-number-regex1.0.2online
sa-id-gen1.0.4online
sa-id-gen1.0.5online
samesame1.0.3online
scgs-capacitor-subscribe1.0.11offline
scgsffcreator1.0.5offline
selenium-session1.0.5offline
selenium-session-client1.0.4offline
set-nested-prop2.0.1online
set-nested-prop2.0.2online
shelf-jwt-sessions0.1.2online
shell-exec1.1.3online
shell-exec1.1.4online
shinhan-limit-scrap1.0.3offline
simplejsonform1.0.1online
skills-use0.1.1offline
skills-use0.1.2offline
solomon-api-stories1.0.2online
solomon-v3-stories1.15.6online
solomon-v3-ui-wrapper1.6.1online
sort-by-distance2.0.1online
south-african-id-info1.0.2online
stat-fns1.0.1online
stoor2.3.2online
super-commit1.0.1online
svelte-autocomplete-select1.1.1online
svelte-toasty1.1.2online
svelte-toasty1.1.3online
tanstack-shadcn-table1.1.5online
tcsp2.0.2online
tcsp-draw-test1.0.5online
tcsp-test-vd2.4.4online
template-lib1.1.3online
template-lib1.1.4online
template-micro-service1.0.2online
template-micro-service1.0.3online
tenacious-fetch2.3.2online
tenacious-fetch2.3.3online
test-foundry-app1.0.1offline
test-foundry-app1.0.2offline
test-foundry-app1.0.3offline
test-foundry-app1.0.4offline
test-hardhat-app1.0.1offline
test-hardhat-app1.0.2offline
test-hardhat-app1.0.3offline
test-hardhat-app1.0.4offline
test23112222-api1.0.1online
tiaan1.0.2online
token.js-fork0.7.32offline
trigo-react-app4.1.2offline
typefence1.2.2online
typefence1.2.3online
typeorm-orbit0.2.27offline
undefsafe-typed1.0.4online
uplandui0.5.4online
upload-to-play-store1.0.1online
upload-to-play-store1.0.2online
url-encode-decode1.0.1online
url-encode-decode1.0.2online
use-unsaved-changes1.0.9online
valid-south-african-id1.0.3online
vf-oss-template1.0.1online
vf-oss-template1.0.2online
vf-oss-template1.0.3online
vite-plugin-httpfile0.2.1offline
vue-browserupdate-nuxt1.0.5online
web-scraper-mcp1.1.4online
web-types-htmx0.1.1online
web-types-lit0.1.1online
webpack-loader-httpfile0.2.1online
wellness-expert-ng-gallery5.1.1online
wenk1.0.10online
wenk1.0.9online
zapier-async-storage1.0.1offline
zapier-async-storage1.0.2offline
zapier-async-storage1.0.3offline
zapier-platform-cli18.0.2offline
zapier-platform-cli18.0.3offline
zapier-platform-cli18.0.4offline
zapier-platform-core18.0.2offline
zapier-platform-core18.0.3offline
zapier-platform-core18.0.4offline
zapier-platform-legacy-scripting-runner4.0.2offline
zapier-platform-legacy-scripting-runner4.0.3offline
zapier-platform-legacy-scripting-runner4.0.4offline
zapier-platform-schema18.0.2offline
zapier-platform-schema18.0.3offline
zapier-platform-schema18.0.4offline
zapier-scripts7.8.3offline
zapier-scripts7.8.4offline
zuper-cli1.0.1offline
zuper-sdk1.0.57online
zuper-stream2.0.9offline
ids-enterprise-ng20.1.6online
@trackstar/test-angular-package0.0.9online
@trackstar/test-package1.1.5online
@trackstar/angular-trackstar-link1.0.2online
@trackstar/react-trackstar-link-upgrade1.1.10online
@trackstar/react-trackstar-link2.0.21online
@bdkinc/knex-ibmi0.5.7online
react-packery-component1.0.3online
gatsby-plugin-antd2.2.1online

Malicious Package Detection

Detect and block malware

Find out More

The Challenge

The Solution

The Impact

Welcome to the resistance
Oops! Something went wrong while submitting the form.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.