redacta 0.0.0

Command line tool for redacting information from text.
Documentation

redacta

crates.io GitHub Release GitHub Actions Workflow Status MIT

Command line tool for redacting information from text.

[!WARNING] This is an early stage implementation, it might not redact accurately.

Install

Download from releases then:

tar -xvzf redacta.tar.gz

Or install via cargo:

cargo install redacta

Usage

Takes logs via stdin and forwards redacted logs to stdout.

$ redacta --help
Usage: redacta [OPTIONS]

Options:
      --ipv4     Enable IPv4 redaction
      --ipv6     Enable IPv6 redaction
  -h, --help     Print help
  -V, --version  Print version

Example

$ echo "Look at my 192.168.0.1 IP!" | redacta --ipv4
Look at my *********** IP!