Skip to content

Security: wellwelwel/poku

SECURITY.md

Security Policy

Is Poku Safe?

Poku is an open-source project, so you can see both the Source Code on GitHub Repository and the Distribution Code on NPM.


Why does Poku use child_process?

Some test runners use eval, Poku prefers to use spawn to create an isolated process securely for each test file without transforming your files.


Protective Measures

  • Blocks access above target directory by filtering ../ and / paths, for example:
    • /root will be sanitized to ./root
    • ../../etc/secret will be sanitized to ./etc/secret
  • Normalizes paths according to the OS, allowing all collaborators to use the same path, each using their own OS:
    • \ for Windows
    • / for Linux and macOS
  • Normalizes paths by filtering unusual path characters, for example:
    • <>|^?*
  • Prevents shell scripts by setting shell to false in spawn options, ensuring that only secure arguments will be used.
  • Every RegExp is prev-tested using the ReDoS Checker.

Supported Versions

Currently, security updates will be applied to the following versions of Poku:

Version Supported
1.x.x
0.x.x

Reporting a Vulnerability

  • Please, give detailed reports
  • Include steps to reproduce the vulnerability, and if possible, a patch or workaround.
  • Include the specific version of Poku you are using.

Please report it privately: https://github.com/wellwelwel/poku/security/advisories.

  • Once the issue has been resolved, you will be attributed a part of the report.

Let's keeping Poku safe 🐷

There aren’t any published security advisories