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 🙏

© 2024 – Pkg Stats / Ryan Hefner

safex

v2.1.1

Published

A language for writing safe expressions, in a tiny subset of JavaScript.

Downloads

152

Readme

Safex

A language for writing safe expressions, in a tiny subset of JavaScript.

Goals

This library follows these design goals:

  • Only a tiny subset of JavaScript is implemented, a subset that can be executed safely.
  • Every feature that is implemented works exactly like it would in JavaScript.
  • The library itself is implemented defensively, if there are bugs in it almost certainly they won't enable arbitrary code execution.

Language

The following features of JavaScript are supported:

  • Read-only variables: you can provide arbitrary read-only variables to your expressions.
  • Restricted function calls: you can provide arbitrary functions that your expressions are allowed to call.
  • Property accesses: a.b.c, a[b][c].
  • Primitive values: true, false, null, undefined, bigint, number, string.
  • Comparison operators: ==, !=, ===, !==, >, >=, <, <=.
  • Arithmetic operators: +, -, *, /, %, **.
  • Bitwise operators: &, |, ^, ~, <<, >>, >>>.
  • Logical operators: !, &&, ||, ??.
  • Group operator: (...).

The following features of JavaScript are instead not supported:

  • Assignments: no assignment operators are supported, your variables can't be mutated.
  • Increment/decrement: no postfix/prefix increment/decrement operators are supported either.
  • new operator: new can be used to execute unintentionally-exposed functions, so it's not supported.
  • New variables: safe expressions can't declare new variables.
  • Arbitrary function calls: no arbitrary function calls can be performed, only functions you explicitly list can be called.
  • Loops: not even loops can be created.

Security

While the language by itself is safe to execute, it's important to note that in order for it to be useful it supports giving expressions explicit access to a set of variables you control. And in order to be an actual subset of JavaScript it must indirectly support some very dynamic parts of the language, like getters and Proxy instances.

If you want to make this library useless you can give your expressions access to a variable like this:

const footgun = new Proxy ( {}, {
  get ( target, key ) {
    eval ( key );
  }
});

Which the no longer safe expressions could then use like this to execute arbitrary code:

footgun['alert(1)']

Additionally function calls to explicitly-provided functions are allowed, so providing this context object to your expressions is unsafe:

{ eval }

Note how a function must be explicitly listed to be callable by the expression:

// This will throw, "min" was not explicitly provided
safex.exec ( 'Math.min ( 1, 2 )', { Math } );
// This is allowed,"min" was explicitly provided
safex.exec ( 'min ( 1, 2 )', { min: Math.min } );

Basically executing a function in general is unsafe, and there are a lot of ways to execute a function in JavaScript, even with the allowed language being this restrictive, for example:

  • Coercing objects or functions to primitives could call Symbol.toPrimitive, toString and valueOf on them.
  • Accessing a property could cause a function call if that property is actually a getter.
  • Accessing a property could cause a function call if the property is being accessed on a Proxy object.

Unless you do weird stuff expressions executed via this library will be safe, but it's important to understand that you can shoot yourself in the foot by providing usafe variables to your expressions.

Install

npm install --save safex

Usage

import safex from 'safex';

// Execute an expression without pre-compiling it, which is slower if you need to execute it multiple times

safex.exec ( '128 / 2' ); // => 64
safex.exec ( 'activeView === "search"', { activeView: 'search' } ); // => true
safex.exec ( 'isFoo && ( isBar || baz < 3 )', { isFoo: true, isBar: false, baz: 123 } ); // => false

// Compile an expression, parsing it once, which is faster if you need to execute it multiple times with different variables

const expression = safex.compile ( 'isFoo || isBar' );

expression ({ isFoo: 1, isBar: 2 }); // => 1
expression ({ isFoo: 0, isBar: 2 }); // => 2

// Validate that an expression is actually valid syntactically

safex.validate ( '( -1 ) ** 2' ); // => true
safex.validate ( '-1 ** 2' ); // => false
safex.validate ( 'eval ( "alert(1)" )' ); // => false

// Low-level function that parse an expression into an AST

const ast = safex.parse ( '1 + 2' ) // => { type: 'root', children: [{ type: 'addition', children: [{ type: 'number', value: 1 }, { type: 'number', value: 2 }] }] }

License

MIT © Fabio Spampinato