yarascanner/main.go

256 lines
4.4 KiB
Go
Raw Normal View History

2021-02-25 02:46:02 +00:00
package main
import (
"encoding/json"
"github.com/go-chi/chi"
2021-02-25 03:00:39 +00:00
"github.com/hillu/go-yara/v4"
"github.com/package-url/packageurl-go"
2021-02-25 02:46:02 +00:00
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"io"
"net/http"
"os"
"os/signal"
"runtime"
"strings"
"sync"
2021-02-25 02:46:02 +00:00
"syscall"
"time"
)
type callbackFunc func(rules yara.MatchRules)
2021-02-25 02:46:02 +00:00
type Job struct {
Data io.ReadCloser
Callback callbackFunc
2021-02-25 02:46:02 +00:00
}
var (
client *http.Client
jobChan = make(chan *Job)
2021-02-25 02:46:02 +00:00
)
func main() {
viper.SetDefault("threads", runtime.NumCPU())
viper.SetDefault("rules", "pkg:github/Neo23x0/signature-base#yara")
2021-03-07 05:03:48 +00:00
viper.SetDefault("bind", ":8080")
2021-02-25 02:46:02 +00:00
viper.AutomaticEnv()
client = &http.Client{
Timeout: 15 * time.Second,
}
2021-03-07 05:07:06 +00:00
if viper.GetBool("debug") {
log.SetLevel(log.DebugLevel)
}
2021-02-25 02:46:02 +00:00
c, err := yara.NewCompiler()
if err != nil {
log.WithError(err).Fatal("Unable to setup new compiler")
}
2021-03-07 04:48:25 +00:00
c.DefineVariable("filename", "")
2021-03-07 04:47:15 +00:00
c.DefineVariable("filepath", "")
2021-03-07 04:48:25 +00:00
c.DefineVariable("extension", "")
c.DefineVariable("filetype", "")
2021-03-07 04:47:15 +00:00
2021-03-07 04:52:50 +00:00
log.Info("Loading rules")
2021-02-25 02:46:02 +00:00
loadRules(c)
rules, err := c.GetRules()
if err != nil {
log.WithError(err).Fatal("Unable to compile rules")
}
threads := viper.GetInt("threads")
log.WithField("workers", threads).Info("Starting workers")
for i := 0; i < threads; i++ {
go worker(rules)
2021-02-25 02:46:02 +00:00
}
r := chi.NewRouter()
2021-02-25 02:46:02 +00:00
r.Post("/scan", scanHandler)
2021-02-25 02:46:02 +00:00
2021-03-07 05:03:48 +00:00
bind := viper.GetString("bind")
log.WithField("bind", bind).Info("Binding to address")
go http.ListenAndServe(bind, r)
2021-02-25 02:46:02 +00:00
ch := make(chan os.Signal)
signal.Notify(ch, syscall.SIGKILL, syscall.SIGTERM, syscall.SIGINT)
2021-02-25 03:00:39 +00:00
<-ch
2021-02-25 02:46:02 +00:00
}
// HTTP handler for scanning files
func scanHandler(w http.ResponseWriter, r *http.Request) {
contentType := r.Header.Get("Content-Type")
2021-02-25 02:46:02 +00:00
if idx := strings.Index(contentType, ";"); idx != -1 {
contentType = contentType[0:idx]
}
2021-02-25 02:46:02 +00:00
switch contentType {
case "multipart/form-data":
if r.MultipartForm == nil {
r.ParseMultipartForm(32 << 20)
2021-02-25 02:46:02 +00:00
}
wg := &sync.WaitGroup{}
2021-02-25 02:46:02 +00:00
results := make([]yara.MatchRules, 0)
2021-02-25 02:46:02 +00:00
jobCallback := func(m yara.MatchRules) {
results = append(results, m)
wg.Done()
2021-02-25 02:46:02 +00:00
}
2021-03-07 05:02:55 +00:00
log.WithField("contentType", contentType).Debug("Adding files from multipart form as jobs")
fileCount := 0
for _, files := range r.MultipartForm.File {
// Append files
for _, file := range files {
wg.Add(1)
2021-02-25 02:46:02 +00:00
2021-03-07 05:02:55 +00:00
fileCount++
f, err := file.Open()
2021-02-25 02:46:02 +00:00
if err != nil {
continue
}
2021-02-25 02:46:02 +00:00
job := &Job{
Data: f,
Callback: jobCallback,
}
2021-02-25 02:46:02 +00:00
jobChan <- job
}
2021-02-25 02:46:02 +00:00
}
2021-03-07 05:02:55 +00:00
log.WithField("count", fileCount).Debug("Waiting for jobs to finish")
wg.Wait()
2021-02-25 02:46:02 +00:00
json.NewEncoder(w).Encode(results)
default:
job := &Job{
Data: r.Body,
Callback: func(m yara.MatchRules) {
json.NewEncoder(w).Encode(m)
},
}
2021-02-25 02:46:02 +00:00
2021-03-07 05:02:55 +00:00
log.WithField("contentType", contentType).Debug("Scanning contents of body")
jobChan <- job
2021-02-25 02:46:02 +00:00
}
}
2021-02-25 02:46:02 +00:00
// Load rules from the rules configuration option
func loadRules(c *yara.Compiler) {
rulePaths := strings.Split(viper.GetString("rules"), ",")
2021-02-25 02:46:02 +00:00
for _, p := range rulePaths {
2021-03-07 04:52:50 +00:00
log.WithField("package", p).Info("Loading rules from package")
instance, err := packageurl.FromString(p)
2021-02-25 02:46:02 +00:00
if err != nil {
log.WithFields(log.Fields{
"error": err,
"package": p,
}).Fatalln("Invalid rule URL")
}
2021-02-25 02:46:02 +00:00
switch instance.Type {
case "git", "bitbucket", "github", "gitlab":
err = loadRulesFromGit(instance, c)
case "http", "https":
err = loadRulesFromHttp(instance, c)
}
2021-02-25 02:46:02 +00:00
if err != nil {
log.WithFields(log.Fields{
"error": err,
"package": p,
}).Fatalln("Unable to load rules")
}
2021-02-25 02:46:02 +00:00
}
}
2021-02-25 02:46:02 +00:00
// Load rules from http(s)
// TODO: Support archive files alongside standard yar files
func loadRulesFromHttp(pkg packageurl.PackageURL, c *yara.Compiler) error {
res, err := client.Get(pkg.Name)
2021-02-25 02:46:02 +00:00
if err != nil {
return err
2021-02-25 02:46:02 +00:00
}
defer res.Body.Close()
2021-02-25 02:46:02 +00:00
b, err := io.ReadAll(res.Body)
2021-02-25 02:46:02 +00:00
if err != nil {
return err
2021-02-25 02:46:02 +00:00
}
return c.AddString(string(b), "")
2021-02-25 02:46:02 +00:00
}
// A worker routine. Creates a new scanner instance and pulls jobs.
func worker(rules *yara.Rules) {
2021-02-25 02:46:02 +00:00
s, err := yara.NewScanner(rules)
if err != nil {
panic(err)
}
for {
job := <-jobChan
2021-02-25 02:46:02 +00:00
2021-03-07 05:02:55 +00:00
log.Debug("Processing job")
2021-02-25 02:46:02 +00:00
processJob(s, job)
}
}
func processJob(s *yara.Scanner, job *Job) {
2021-02-25 03:00:39 +00:00
var m yara.MatchRules
defer job.Data.Close()
2021-02-25 02:46:02 +00:00
b, err := io.ReadAll(job.Data)
2021-02-25 02:46:02 +00:00
if err != nil {
2021-02-25 02:46:02 +00:00
return
}
err = s.SetCallback(&m).ScanMem(b)
2021-02-25 02:46:02 +00:00
if err != nil {
return
}
// Respond with job
if len(m) < 1 {
2021-02-25 02:46:02 +00:00
return
}
2021-03-07 04:56:53 +00:00
job.Callback(m)
2021-02-25 03:00:39 +00:00
}