jaeles-project / gospider

Gospider - Fast web spider written in Go
MIT License
2.59k stars 313 forks source link

Where do I add the Virus Total API key? #42

Open thezakman opened 3 years ago

thezakman commented 3 years ago

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

0xJeti commented 3 years ago

"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