npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

strapi-plugin-cypherscan

v0.1.12

Published

CypherScan plugin for Strapi uploads

Readme

CypherScan Strapi Plugin

Scans uploaded files immediately after upload — before they are trusted by downstream systems.

The plugin helps detect:

  • malware
  • exposed secrets
  • leaked API keys
  • suspicious payloads
  • unsafe embedded content

before files continue through production workflows.


Marketplace

Available on the official Strapi Marketplace:

https://market.strapi.io/plugins/strapi-plugin-cypherscan


Example Result

CypherScan demo


What it does

The plugin hooks into the Strapi upload lifecycle and scans files immediately after upload.

Instead of relying only on:

  • mime-type validation
  • file extensions
  • upload size limits

it adds a deeper analysis layer before files are processed elsewhere in the application.


Why this matters

Many systems validate upload structure — not operational risk.

Unsafe files can still:

  • move through backend workflows
  • reach storage systems
  • enter moderation pipelines
  • trigger downstream processing
  • expose secrets or embedded payloads

CypherScan shifts part of this validation earlier in the pipeline.


Upload Flow

  1. File is uploaded through Strapi
  2. Strapi stores the file locally
  3. Plugin hooks into afterCreate
  4. File is sent to the CypherScan API
  5. API returns a structured security analysis

Where it hooks

The plugin hooks into the Strapi upload lifecycle (afterCreate).

At this stage:

  • the upload already exists locally
  • the file is accessible in /public/uploads
  • downstream systems have not processed it yet

This creates an opportunity to analyze the file before it is trusted further in the workflow.


Example API Call

const res = await fetch("https://cyphernetsecurity.com/api/v1/scan", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.CYPHERSCAN_API_KEY}`,
  },
  body: formData,
});

The API returns a structured security verdict for the uploaded file.


Returned Security Data

Structured results can include:

  • verdict (clean, suspicious, malicious)
  • risk level
  • score
  • traceId
  • findings
  • exposed secret detection
  • malware indicators
  • summary

Installation

Install the plugin:

npm install strapi-plugin-cypherscan

Environment Variables

CYPHERSCAN_API_KEY=cs_xxxxx
CYPHERSCAN_BASE_URL=https://cyphernetsecurity.com

Restart your Strapi application after configuration.


Quick Start

  1. Install plugin
  2. Configure API key
  3. Upload a file through Strapi
  4. View structured scan results

Demo

https://youtu.be/zRk-9Es7mwA


API Documentation

https://cyphernetsecurity.com/docs/api


Status

  • Live API
  • Public marketplace distribution
  • Production-tested integration flow
  • Active onboarding and ecosystem distribution