├── LICENSE ├── README.md ├── bh 21.pdf ├── generate_sigs.py ├── model.py ├── models ├── elf_model.mdl ├── macho_model.mdl └── pe_model.mdl ├── sigs ├── 20210803_elf.yar ├── 20210803_macho.yar └── 20210803_pe.yar ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/README.md -------------------------------------------------------------------------------- /bh 21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/bh 21.pdf -------------------------------------------------------------------------------- /generate_sigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/generate_sigs.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/model.py -------------------------------------------------------------------------------- /models/elf_model.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/models/elf_model.mdl -------------------------------------------------------------------------------- /models/macho_model.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/models/macho_model.mdl -------------------------------------------------------------------------------- /models/pe_model.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/models/pe_model.mdl -------------------------------------------------------------------------------- /sigs/20210803_elf.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/sigs/20210803_elf.yar -------------------------------------------------------------------------------- /sigs/20210803_macho.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/sigs/20210803_macho.yar -------------------------------------------------------------------------------- /sigs/20210803_pe.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/sigs/20210803_pe.yar -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/siglearn/HEAD/utils.py --------------------------------------------------------------------------------