https://github.com/AikidoSec/firewall-node
Zen protects your Node app against attacks with one line of code. Get peace of mindβ at runtime.
https://github.com/AikidoSec/firewall-node
attack-defense firewall nodejs nosql-injection path-traversal rasp security shell-injection sql-injection
Last synced: 3 months ago
JSON representation
Zen protects your Node app against attacks with one line of code. Get peace of mindβ at runtime.
- Host: GitHub
- URL: https://github.com/AikidoSec/firewall-node
- Owner: AikidoSec
- License: other
- Created: 2024-01-22T10:45:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-04T17:46:22.000Z (3 months ago)
- Last Synced: 2025-03-05T06:14:04.718Z (3 months ago)
- Topics: attack-defense, firewall, nodejs, nosql-injection, path-traversal, rasp, security, shell-injection, sql-injection
- Language: TypeScript
- Homepage: http://aikido.dev/zen
- Size: 8.17 MB
- Stars: 53
- Watchers: 7
- Forks: 6
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README

# Zen, in-app firewall for Node.js | by Aikido
[](https://www.npmjs.com/package/@aikidosec/firewall)
[](https://app.codecov.io/gh/aikidosec/firewall-node)
[](https://github.com/AikidoSec/firewall-node/blob/main/LICENSE)
[](http://makeapullrequest.com)
[](https://github.com/AikidoSec/firewall-node/actions/workflows/unit-test.yml)
[](https://github.com/AikidoSec/firewall-node/actions/workflows/end-to-end-tests.yml)Zen, your in-app firewall for peace of mindβ at runtime.
Zen by Aikido is an embedded Web Application Firewall that autonomously protects Node.js apps against common and critical attacks.
It protects your Node.js apps by preventing user input containing dangerous strings, which allow injection, pollution, and path traversal attacks. It runs on the same server as your Node.js app for simple [installation](#installation) and zero maintenance.
## Features
Zen will autonomously protect your Node.js applications against:
* π‘οΈ [NoSQL injection attacks](https://www.aikido.dev/blog/web-application-security-vulnerabilities)
* π‘οΈ [SQL injection attacks](https://www.aikido.dev/blog/the-state-of-sql-injections)
* π‘οΈ [Command injection attacks](https://www.aikido.dev/blog/command-injection-in-2024-unpacked)
* π‘οΈ [Prototype pollution](./docs/prototype-pollution.md)
* π‘οΈ [Path traversal attacks](https://owasp.org/www-community/attacks/Path_Traversal)
* π‘οΈ [Server-side request forgery (SSRF)](./docs/ssrf.md)
* π‘οΈ JS injectionZen operates autonomously on the same server as your Node.js app to:
* β Secure your app like a classic web application firewall (WAF), but with none of the infrastructure or cost.
* β Rate limit specific API endpoints by IP or by user
* β Allow you to block specific users manually## Supported libraries and frameworks
Zen for Node.js 16+ is compatible with:
### Web frameworks
* β [Express](docs/express.md) 4.x, 5.x
* β [Hono](docs/hono.md) 4.x
* β [hapi](docs/hapi.md) 21.x
* β [micro](docs/micro.md) 10.x
* β [Next.js](docs/next.md) 12.x, 13.x and 14.x
* β [Fastify](docs/fastify.md) 4.x and 5.x
* β [Koa](docs/koa.md) 2.x
* β [NestJS](docs/nestjs.md) 10.x### Database drivers
* β [`mongodb`](https://www.npmjs.com/package/mongodb) 4.x, 5.x and 6.x _(npm package versions, not MongoDB server versions)_
* β [`mongoose`](https://www.npmjs.com/package/mongoose) 8.x, 7.x and 6.x
* β [`pg`](https://www.npmjs.com/package/pg) 8.x and 7.x
* β [`mysql`](https://www.npmjs.com/package/mysql) 2.x
* β [`mysql2`](https://www.npmjs.com/package/mysql2) 3.x
* β [`mariadb`](https://www.npmjs.com/package/mariadb) 3.x
* β [`sqlite3`](https://www.npmjs.com/package/sqlite3) 5.x
* β [`node:sqlite`](https://nodejs.org/api/sqlite.html)
* β [`better-sqlite3`](https://www.npmjs.com/package/better-sqlite3) 11.x, 10.x, 9.x and 8.x
* β [`postgres`](https://www.npmjs.com/package/postgres) 3.x
* β [`@clickhouse/client`](https://www.npmjs.com/package/@clickhouse/client) 1.x
* β [`@prisma/client`](https://www.npmjs.com/package/@prisma/client) 5.x### Cloud providers
* β [`@google-cloud/functions-framework`](https://www.npmjs.com/package/@google-cloud/functions-framework) 3.x
* β [`@google-cloud/pubsub`](https://www.npmjs.com/package/@google-cloud/pubsub) 4.x
* β Google Cloud Functions
* β AWS Lambda### ORMs and query builders
See list above for supported database drivers.
* β [`sequelize`](https://www.npmjs.com/package/sequelize)
* β [`knex`](https://www.npmjs.com/package/knex)
* β [`typeorm`](https://www.npmjs.com/package/typeorm)
* β [`bookshelf`](https://www.npmjs.com/package/bookshelf)
* β [`drizzle-orm`](https://www.npmjs.com/package/drizzle-orm)### API tools
* β [`graphql`](https://www.npmjs.com/package/graphql) 16.x
### Data serialization tools
* β [`xml2js`](https://www.npmjs.com/package/xml2js) 0.6.x, 0.5.x, ^0.4.18
* β [`fast-xml-parser`](https://www.npmjs.com/package/fast-xml-parser) 4.x
* β [`xml-js`](https://www.npmjs.com/package/xml-js) 1.x### Shell tools
* β [`ShellJS`](https://www.npmjs.com/package/shelljs) 0.8.x, 0.7.x
### Routers
* β [`@koa/router`](https://www.npmjs.com/package/@koa/router) 13.x, 12.x, 11.x and 10.x
## Installation
We recommend testing Zen locally or on staging before deploying to production.
```shell
# The --save-exact makes sure that you don't automatically install a newer version
$ npm install --save-exact @aikidosec/firewall# The --exact makes sure that you don't automatically install a newer version
$ yarn add --exact @aikidosec/firewall
```For framework- and provider- specific instructions, check out our docs:
- [Express](docs/express.md)
- [Fastify](docs/fastify.md)
- [Hapi](docs/hapi.md)
- [Koa](docs/koa.md)
- [Hono](docs/hono.md)
- [NestJS](docs/nestjs.md)
- [micro](docs/micro.md)
- [Next.js](docs/next.md)
- [AWS Lambda](docs/lambda.md)
- [Google Cloud Functions](docs/cloud-functions.md)
- [Google Cloud Pub/Sub](docs/pubsub.md)## Reporting to your Aikido Security dashboard
> Aikido is your no nonsense application security platform. One central system that scans your source code & cloud, shows you what vulnerabilities matter, and how to fix them - fast. So you can get back to building.
Zen is a new product by Aikido. Built for developers to level up their security. While Aikido scans, get Zen for always-on protection.
You can use some of Zenβs features without Aikido, of course. Peace of mind is just a few lines of code away.
But you will get the most value by reporting your data to Aikido.
You will need an Aikido account and a token to report events to Aikido. If you don't have an account, you can [sign up for free](https://app.aikido.dev/login).
Here's how:
* [Log in to your Aikido account](https://app.aikido.dev/login).
* Go to [Zen](https://app.aikido.dev/runtime/services).
* Go to apps.
* Click on **Add app**.
* Choose a name for your app.
* Click **Generate token**.
* Copy the token.
* Set the token as an environment variable, `AIKIDO_TOKEN`, using [dotenv](https://github.com/motdotla/dotenv) or another method of your choosing.## Running in production (blocking) mode
By default, Zen will only detect and report attacks to Aikido.
To block requests, set the `AIKIDO_BLOCK` environment variable to `true`.
See [Reporting to Aikido](#reporting-to-your-aikido-security-dashboard) to learn how to send events to Aikido.
## Additional configuration
[Configure Zen using environment variables for authentication, mode settings, debugging, and more.](https://help.aikido.dev/doc/configuration-via-env-vars/docrSItUkeR9)
## License
This program is offered under a commercial and under the AGPL license.
You can be released from the requirements of the AGPL license by purchasing
a commercial license. Buying such a license is mandatory as soon as you
develop commercial activities involving the Zen software without
disclosing the source code of your own applications.For more information, please contact Aikido Security at this
address: [email protected] or create an account at https://app.aikido.dev.## Benchmarks
We run a benchmark on every commit to ensure Zen has a minimal impact on your application's performance.
See [benchmarks](benchmarks)
## Bug bounty program
Our bug bounty program is public and can be found by all registered Intigriti users at: https://app.intigriti.com/researcher/programs/aikido/aikidoruntime
## Contributing
See [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information.
## Code of Conduct
See [CODE_OF_CONDUCT.md](.github/CODE_OF_CONDUCT.md) for more information.
## Security
See [SECURITY.md](.github/SECURITY.md) for more information.