Skip to content

RESTful interface for sophos-av free (Linux) powered by Express/Nodejs and maxpowa/sophos-av (docker image).

License

Notifications You must be signed in to change notification settings

clifflu/guanyu-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

144 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Guanyu

RESTful API wrapper for Sohpos Antivirus for Linux Free on top of maxipowa/sophos-av.

Install

docker pull clifflu/guanyu

Starting Guanyu

docker run -d -p 3000:3000 clifflu/guanyu

Using Guanyu

curl -X POST -F "file=@/tmp/virus.exe" http://localhost:3000/scan/file"

Environment Options

API Token

  • Env name: API_TOKEN
  • Format: characters separated by comma (,)
  • When enabled, POST requests must have request header Api-Token set with matching values to be authenticated.

Cache

AWS DynamoDB

  • Env name: CACHE__DDB__HOST

  • Format: table name

  • Enables cache on AWS DynamoDB

  • Env name: CACHE__DDB__DISABLED,

  • Type: boolean (0/1 preferred)

  • Disable DynamoDB even if CACHE__DDB__TABLE is set.

Redis

  • Env name: CACHE__REDIS__HOST

  • Format: IP or domain name to Redis server

  • Enables cache on redis

  • Env name: CACHE__REDIS__DISABLED,

  • Type: boolean (0/1 preferred)

  • Disable redis even if CACHE__REDIS__HOST is set.

docker run -d --name guanyu-storage redis redis-server --save 30 5  # Start redis
docker run -d -p 3000:3000 --link guanyu-storage --env CACHE__REDIS__HOST=guanyu-storage clifflu/guanyu

Drunk

  • Env name: DRUNK
  • Type: boolean (0/1 preferred)
  • Skip scanning and pretend all files to be clean, primarily for debugging.

File Max Size

  • Env name: FILE__MAX_SIZE
  • Type: number
  • Default: 33554432 (32mb)
  • Maximal size in bytes for file uploads and remote files.

Log Level

  • Env name: LOG_LEVEL
  • Possible values: ['debug', 'verbose', 'info', 'warn']
  • Default: info

Process per Core

  • Env name: PROC_PER_CORE,
  • Type: number
  • Default: 2
  • Number of concurrent scans allowed per CPU core

License

MIT

Note

Guanyu is open-sourced under permission as a side project from 104 Corp.

About

RESTful interface for sophos-av free (Linux) powered by Express/Nodejs and maxpowa/sophos-av (docker image).

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages