Skip to main content

Lokus: Find issues in your APIs from the docs

Project description

Lokus: Swagger/OpenAPI Specification Validator

Lokus Validator CI Python Version License: MIT

A powerful tool for validating Swagger/OpenAPI specification files (YAML format) against configurable security rules and LGPD compliance requirements. This validator helps ensure your API specifications don't contain forbidden keys, sensitive information, or insecure configurations.

Table of Contents

Features

  • 🔍 Deep search through all parts of the specification
  • ⚙️ Configurable forbidden keys, patterns, and path-specific rules
  • 📝 Multiple output formats (text, JSON, and PDF)
  • 🔄 Ready-to-use CI/CD templates for GitHub Actions
  • 🛡️ LGPD (Brazilian General Data Protection Law) compliance validation
  • 🔒 OWASP API Security Top 10 validation
  • 🚦 Clear exit codes for different scenarios:
    • 0: Validation passes
    • 1: Issues found
    • 2: Other errors (file not found, parsing issues)

How It Works

flowchart TD
    A[Swagger/OpenAPI Spec] --> B[Load Configuration]
    B --> C[Load Swagger Spec]
    B --> D[Deep Search]
    C --> D
    D --> E[Security Validation]
    D --> F[LGPD Compliance]
    E --> G[Report Findings]
    F --> G
    G --> H{Output Format}
    H -->|Text| I[Console Output]
    H -->|JSON| J[JSON Report]
    H -->|PDF| K[PDF Report]

    subgraph Configuration
        B --> B1[Forbidden Keys]
        B --> B2[Key Patterns]
        B --> B3[Path Rules]
    end

    subgraph Validation
        D --> D1[Search Keys]
        D --> D2[Check Patterns]
        E --> E1[Security Rules]
        F --> F1[Data Protection]
        F --> F2[Purpose Definition]

    end

Installation

  • Using docker (recommended):

    docker run -qit --rm geaven/lokus --version
    
  • Building from source:

    git clone https://github.com/geavenx/lokus.git
    cd lokus
    pip install -e . # The use of a virtual environment is recommended
    lokus --version
    
  • Using uv:

    git clone https://github.com/geavenx/lokus.git
    cd lokus
    uv sync --locked --all-extras
    uv run lokus --version
    

Quick Start

  1. Create a configuration file (.forbidden_keys.yaml):

    forbidden_keys:
      - "apiKey"
      - "secretKey"
      - "password"
    
    forbidden_key_patterns:
      - ".*_token$"
      - "^internal_.*"
    
  2. Run the validator:

    # Validate a single file
    lokus path/to/your/api.yaml
    
    # Validate multiple files
    lokus path/to/specs/*.yaml
    
    # Use custom config file
    lokus --config custom_config.yaml path/to/your/api.yaml
    
    # Generate JSON report
    lokus --json path/to/your/api.yaml
    
    # Generate PDF report
    lokus --pdf path/to/your/api.yaml
    
    • Using docker:
    # Validate a single file
    docker run -qit --rm geaven/lokus:latest path/to/your/api.yaml
    
    # Get help
    docker run -qit --rm geaven/lokus:latest --help
    

Configuration

The validator uses a YAML configuration file (.forbidden_keys.yaml by default) to define:

  • Globally forbidden keys
  • Forbidden key patterns (regex)
  • Path-specific forbidden keys
  • Allowed exceptions

Example configuration:

forbidden_keys:
  - "apiKey"
  - "secretKey"
  - "password"

forbidden_key_patterns:
  - ".*_token$"
  - "^internal_.*"

forbidden_keys_at_paths:
  - path: "info.contact.email"
    key: "email"
    reason: "Contact email is sensitive."

allowed_exceptions:
  - key: "session_token"
    path_prefix: "components.schemas.Session"

LGPD Compliance Features

The validator includes specific checks for LGPD compliance:

  1. Sensitive Data Detection

    • Identifies common sensitive data patterns (CPF, CNPJ, RG, email, phone numbers)
    • Flags sensitive data in examples and descriptions
    • Detects sensitive field names in schemas and parameters
  2. Data Minimization

    • Ensures all properties have proper descriptions
    • Flags unnecessary fields without justification
    • Validates that only required data is collected
  3. Purpose Limitation

    • Requires clear descriptions of data processing purposes
    • Validates that endpoints have proper documentation
    • Ensures transparency in data handling
  4. Direct Identifier Protection

    • Flags direct identifiers in API paths
    • Recommends using indirect identifiers (e.g., UUIDs)
    • Prevents exposure of sensitive identifiers

Usage Examples

Basic Validation

# Validate a single API specification
lokus api.yaml

# Validate with custom config
lokus --config security_rules.yaml api.yaml

CI/CD Integration

Check the integration in this project workflow file.

For more comprehensive CI/CD integration, see our CI/CD Templates section.

CI/CD Templates

Lokus provides ready-to-use CI/CD templates for seamless integration into your development workflow. These templates make it easy to add API security and LGPD compliance validation to your GitHub Actions pipelines.

🚀 Quick Integration

Copy any template to your .github/workflows/ directory and customize for your project:

# Basic validation on push/PR
curl -o .github/workflows/lokus-validation.yml \
  https://raw.githubusercontent.com/geavenx/lokus/main/templates/github-actions/basic/lokus-basic.yml

# PR validation with comments
curl -o .github/workflows/lokus-pr.yml \
  https://raw.githubusercontent.com/geavenx/lokus/main/templates/github-actions/basic/lokus-pr.yml

📋 Available Templates

Template Purpose Features
lokus-basic.yml Simple validation Push/PR triggers, auto-config creation
lokus-pr.yml PR integration Automated PR comments, change detection
lokus-release.yml Release gates Strict validation, report generation
lokus-scheduled.yml Compliance monitoring Weekly checks, PDF reports, issue creation

⚙️ Configuration Options

Pre-built configurations for different validation levels:

📖 Full Documentation

For detailed setup instructions, customization options, and troubleshooting:

👉 Complete CI/CD Templates Guide

🔧 Example Integration

  1. Add a basic workflow:

    # .github/workflows/api-security.yml
    name: API Security Validation
    on: [push, pull_request]
    
    jobs:
      lokus-validation:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - name: Install Lokus
            run: |
              pip install uv
              uv tool install lokus
          - name: Validate API
            run: lokus api-spec.yaml
    
  2. Customize for your project:

    env:
      SPEC_PATH: "path/to/your/api.yaml"
      CONFIG_PATH: ".forbidden_keys.yaml"
    
  3. Add configuration (optional):

    curl -o .forbidden_keys.yaml \
      https://raw.githubusercontent.com/geavenx/lokus/main/templates/configs/basic-config.yaml
    

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lokus-1.0.1.tar.gz (24.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lokus-1.0.1-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file lokus-1.0.1.tar.gz.

File metadata

  • Download URL: lokus-1.0.1.tar.gz
  • Upload date:
  • Size: 24.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lokus-1.0.1.tar.gz
Algorithm Hash digest
SHA256 dfc880e3811a152d3fac99535bcf5e23ca7f47a12f066cf8d4ff9fab117bb8bf
MD5 7d5797031c4c316a6ef44f627e88274a
BLAKE2b-256 aac446fadd22addd6be7cfe50a491a21c5462b4dd8727b2b4409bb24ea1c7b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for lokus-1.0.1.tar.gz:

Publisher: publish-pypi.yml on geavenx/lokus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lokus-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: lokus-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lokus-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eba3b9968a20953c8ae963ac3efba2aa7d62794940373f4ed9069cb0535c4dcf
MD5 439f2d37dcb4cb40509bb73f6401e9aa
BLAKE2b-256 87aa950af80cfc209b0acf6a750cb12cad0a46c56156658a6d2237c8c860c3ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for lokus-1.0.1-py3-none-any.whl:

Publisher: publish-pypi.yml on geavenx/lokus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page