5 releases (2 stable)

1.1.0 Mar 29, 2024
1.0.0 Mar 28, 2024
0.1.2 Mar 26, 2024
0.1.1 Mar 23, 2024
0.1.0 Mar 21, 2024

#306 in Filesystem

Download history 334/week @ 2024-03-18 331/week @ 2024-03-25 28/week @ 2024-04-01

693 downloads per month

MIT license

20KB
437 lines

tav

Basic terminal anti-virus

Features

  • Actively monitor filesystem and processes
  • Delete blacklisted files automatically
  • Monitor processes by regex (no action)
  • Blacklist processes globally
  • Prohibit processes by user

Install

cargo install tav

Examples

# Run with default config: conf/config.yaml
tav run

# Override config location (path to yaml file)
tav run --config ./config.yaml

# Load and test/debug config file
tav config --config ./config.yaml

Config Example

# Filesystem options
fs:
  # List of directories to walk & watch
  watch:
    - /etc
    - /tmp
    - /var/tmp
    - /var/www
  # Blacklist files (simple case insensitive regex)
  blacklist:
    - badfile.*
    - deleteme[0-9]+
    - dontletmelive
# Process options
ps:
  # Watch for processes (no action)
  watch:
    - python
    - sketchy
  # Blacklist processes (partial case insensitive compare)
  blacklist:
    - malwareps
    - killthisproc
  # Blacklist processes for specific users
  prohibit:
    # Don't allow www-data user to run sh or bash processes
    www-data:
      - /bin/sh
      - /bin/bash

Usage

Default Options

# tav --help
A basic terminal anti-virus

Usage: tav [OPTIONS] [COMMAND]

Commands:
  run     Run active scanner and watcher
  config  Config test
  help    Print this message or the help of the given subcommand(s)

Options:
  -B, --no-banner  Don't show the banner
  -v, --verbose    Show additional info logs
  -h, --help       Print help
  -V, --version    Print version

Run Options

# tav run --help
Run active scanner and watcher

Usage: tav run [OPTIONS]

Options:
  -c, --config <FILE>  Path to config file (yaml) [default: conf/config.yaml]
  -h, --help           Print help

Config Options

# tav config --help
Config test

Usage: tav config [OPTIONS]

Options:
  -c, --config <FILE>  Path to config file (yaml) [default: conf/config.yaml]
  -h, --help           Print help

Dependencies

~11–47MB
~731K SLoC