realArcherL / metlo

Metlo is an open-source API security platform.

Home Page:https://metlo.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

Metlo API Security

Secure Your API.


Prs Welcome Join Discord Server Github Commit Activity GitHub Workflow Status License


Metlo is an open-source API security platform

  • Create an Inventory of all your API Endpoints.
  • Proactively test your APIs before they go into production.
  • Detect API attacks in real time.

Get started for free!

Run the following in your cloud environment:

git clone https://github.com/metlo-labs/metlo.git
cd metlo
ENCRYPTION_KEY="some random string" EXPRESS_SECRET="some random string" docker-compose up

Now visit http://localhost:8000

See our Docs for an in-depth walk-throughs on how to set up Metlo in your cloud environment. You can also join our Discord community if you need help or just want to chat!

Features

walkthrough

  • Endpoint Discovery - Metlo scans network traffic and creates an inventory of every single endpoint in your API.
  • Sensitive Data Scannning - Each endpoint is scanned for PII data and given a risk score.
  • Vulnerability Discovery - Get Alerts for issues like unauthenticated endpoints returning sensitive data, No HSTS headers, PII data in URL params, Open API Spec Diffs and more
  • API Security Testing - Build security tests directly in Metlo with a simple HTTP Request editor and javascript assertions.
  • CI/CD Integration - Integrate with your CI/CD to find issues in development and staging.
  • Attack Detection - Our ML Algorithms build a model for baseline API behavior. Any deviation from this baseline is surfaced to your security team as soon as possible. (Coming Soon)
  • Attack Context - Metlo’s UI gives you full context around any attack to help quickly fix the vulnerability. (Coming Soon)

Testing

Testing Screenshot

For tests that we can't autogenerate, our built in testing framework helps you get to 100% Security Coverage on your highest risk APIs. You can build requests in an http editor and write javascript assertions to make sure your API is working as intendend.

For example the following checks if an API returns a 401:

m.test("Test Status Code Unauthorized", () => {
    expect(m.response.status).toBe(401)
})

Why Metlo?

Most businesses have adopted public facing APIs to power their websites and apps. This has dramatically increased the attack surface for your business. There’s been a 200% increase in API security breaches in just the last year with the APIs of companies like Uber, Meta, Experian and Just Dial leaking millions of records. It's obvious that tools are needed to help security teams make APIs more secure but there's no great solution on the market.

Some solutions require you to go through sales calls to even try the product while others have you to send all your API traffic to their own cloud. Metlo is the first Open Source API security platform that you can self host, and get started for free right away!

We're Hiring!

We would love for you to come help us make Metlo better. Come join us at Metlo!

Open-source vs. paid

This repo is entirely MIT licensed. Features like user management, user roles and attack protection require an enterprise license. Contact us for more information.

Development

1. Build the Common Modules

$ cd common
$ yarn watch

2. Start the Frontend

$ cd frontend
$ yarn install
$ yarn dev

3. Start the Backend

$ cd backend
$ yarn install
$ yarn dev

4. Start the Job Runner

$ cd backend
$ yarn dev-jobs

About

Metlo is an open-source API security platform.

https://metlo.com

License:MIT License


Languages

Language:TypeScript 95.8%Language:Python 3.2%Language:Shell 0.3%Language:Dockerfile 0.3%Language:JavaScript 0.2%Language:CSS 0.2%Language:Makefile 0.0%