From 8baaa1f1fb2c677ba8a484a0aa81237aa7ef9dca Mon Sep 17 00:00:00 2001 From: dubs3c <1545807+dubs3c@users.noreply.github.com> Date: Fri, 6 Jun 2025 23:52:19 +0200 Subject: [PATCH] docs: fix 'config' spelling --- README.md | 2 +- cmd/main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5442e82..8892dfe 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Usage: Server options: -s, --sample Malware sample to analyse - -vm, --agent-vm VM to use for analysis, read from conffig file + -vm, --agent-vm VM to use for analysis, read from config file -ip, --agent-ip IP of agent to send sample to -r, --result Folder location to store analysis results in. Default ~/.sandlada/result -e, --executor Run malware with specific command, e.g. "python2.7" diff --git a/cmd/main.go b/cmd/main.go index 93ea3eb..6f702f3 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -22,8 +22,8 @@ func main() { serverMode.StringVar(&srvOpts.Sample, "sample", "", "Malware sample to analyse") serverMode.StringVar(&srvOpts.Sample, "s", "", "Malware sample to analyse") - serverMode.StringVar(&srvOpts.AgentVM, "agentVM", "", "VM to use for analysis, read from conffig file") - serverMode.StringVar(&srvOpts.AgentVM, "vm", "", "VM to use for analysis, read from conffig file") + serverMode.StringVar(&srvOpts.AgentVM, "agentVM", "", "VM to use for analysis, read from config file") + serverMode.StringVar(&srvOpts.AgentVM, "vm", "", "VM to use for analysis, read from config file") serverMode.StringVar(&srvOpts.AgentIP, "agentIP", "", "IP of agent to send sample to") serverMode.StringVar(&srvOpts.AgentIP, "ip", "", "IP of agent to send sample to") serverMode.StringVar(&srvOpts.Database, "database", "~/.sandlada/sqlite.db", "Use local sqlite database for storing results. Default ~/.sandlada/sqlite.db")