blackstork-io / fabric

An open-source command-line tool for reporting workflow automation and a configuration language for reusable templates. Reporting-as-Code
https://blackstork.io/fabric/
Apache License 2.0
10 stars 0 forks source link
compliance compliance-reporting cti cybersecurity pentesting reporting secops security-reporting
Fabric logo

Codifying and automating mission-critical communications with standardized and reusable templates. [Releases](https://github.com/blackstork-io/fabric/releases) | [Docs](https://blackstork.io/fabric/docs/) | [Slack](https://fabric-community.slack.com/) ![GitHub Repository stars](https://img.shields.io/github/stars/blackstork-io/fabric?style=social) ![GitHub Release](https://img.shields.io/github/v/release/blackstork-io/fabric) [![Join Slack](https://img.shields.io/badge/slack-join-8F87F7)](https://fabric-community.slack.com/)

Fabric is an open-source Command-Line Interface (CLI) tool with a configuration language designed to encode and automate content generation for cyber security and compliance.

The diagram illustrates a Fabric template and the corresponding rendered document

Fabric generates documents based on modular templates written in Fabric Configuration Language (FCL). Template authors can delineate data requirements and content structures within the template, significantly reducing the manual effort associated with data consolidation and improving re-usability.

The plugin ecosystem expands Fabric's capabilities by offering integrations with various platforms, data stores, and security solutions, including JSON/CSV files, Elastic, OpenCTI, Splunk Cloud, GitHub, and more. A comprehensive list of supported plugins is available in the documentation.

To facilitate flexible content generation, Fabric content providers leverage powerful Go templates and incorporate capabilities such as generative AI/LLMs (OpenAI API, Azure OpenAI, etc).

Refer to the documentation for in-depth details about Fabric.

[!NOTE]
Fabric is currently in the early stages of development, and there may be some issues. If you have any suggestions, ideas, or bug reports, please share them in Fabric Community slack.

Installation

Installing Fabric

Fabric binaries for Windows, macOS, and Linux are available at "Releases" page in the project's GitHub.

To install Fabric:

For example, the steps for macOS (arm64) are:

# Create a folder
mkdir fabric-bin

# Download the latest release of Fabric
wget https://github.com/blackstork-io/fabric/releases/latest/download/fabric_darwin_arm64.tar.gz \
    -O ./fabric_darwin_arm64.tar.gz

# Unpack Fabric release archive into `fabric-bin` folder
tar -xvzf ./fabric_darwin_arm64.tar.gz -C ./fabric-bin

# Verify that `fabric` runs
./fabric-bin/fabric --help

Installing Fabric plugins

Fabric relies on the plugins for implementing the integrations with various data sources, platforms, and services.

Before the plugins can be used during the template rendering, they must be installed. Fabric's sub-command install can install the plugins automatically from the registry.

To install the plugins:

The plugins are downloaded and installed in ./fabric folder.

[!NOTE]
It's not necessary to install any plugins if you are only using built-in data sources and content providers in your templates

Usage

The command line interface to Fabric is fabric CLI tool.

The core sub-commands are:

To get more details, run fabric --help:

$ ./fabric --help
Usage:
  fabric [command]

Available Commands:
  completion  Generate the autocompletion script for the specified shell
  data        Execute a single data block
  help        Help about any command
  install     Install plugins
  render      Render the document

Flags:
      --color               enables colorizing the logs and diagnostics (if supported by the terminal and log format) (default true)
  -h, --help                help for fabric
      --log-format string   format of the logs (plain or json) (default "plain")
      --log-level string    logging level ('debug', 'info', 'warn', 'error') (default "info")
      --source-dir string   a path to a directory with *.fabric files (default ".")
  -v, --verbose             a shortcut to --log-level debug
      --version             version for fabric

Use "fabric [command] --help" for more information about a command.

Templates

You can find free Fabric templates in Fabric Templates repository.

Documentation

Visit https://blackstork.io/fabric/docs/ for full documentation.

Security

If you suspect any vulnerabilities within Fabric, please promptly report them using GitHub's security advisory reporting. We treat every report with the utmost seriousness and commit to conducting a thorough investigation.

We kindly request that you converse with us before making any public disclosures. This precautionary step ensures that no excessive information is divulged prematurely, allowing us to prepare a patch. Additionally, it gives users enough time to upgrade and enhance their system security.

License

Fabric is licensed under Apache-2.0 license. See the LICENSE file for the details.