gospider icon indicating copy to clipboard operation
gospider copied to clipboard

Where do I add the Virus Total API key?

Open thezakman opened this issue 3 years ago • 1 comments

I can't find the config file do add the API anywere. " WARN You are not set VirusTotal API Key yet."

thezakman avatar Sep 16 '21 13:09 thezakman

"Read the source, Luke" ;)

apiKey := os.Getenv("VT_API_KEY")
if apiKey == "" {
    Logger.Warnf("You are not set VirusTotal API Key yet.")
    return out, nil
}

You need to set up environment variable VT_API_KEY

0xJeti avatar Nov 23 '21 19:11 0xJeti