Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: Velocidex/go-yara

Tags

v1.1.9

Toggle v1.1.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #2 from Velocidex/move

Dep ensure can not handle nested directories.

v1.0.9a

Toggle v1.0.9a's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #2 from Velocidex/move

Dep ensure can not handle nested directories.

v1.0.9

Toggle v1.0.9's commit message
Change callbackdata implementation details

callbackdata is now handled using a copy of
github.com/hillu/cgo-util-callbackdata

This also fixes a CGO pointer rule violation
around (*Compiler).SetIncludeCallback.

v1.0.8

Toggle v1.0.8's commit message
Fix incompatibility introduced with new callback code

v1.0.7

Toggle v1.0.7's commit message
Don't rely on cuckoo module in test

v1.0.6

Toggle v1.0.6's commit message
Move _yr_rules_scan_fd definition to rules_yara34.go

v1.0.5

Toggle v1.0.5's commit message
Make include callback functionality compatible with Go 1.6

v1.0.4

Toggle v1.0.4's commit message
test: Replace t.Error/return combinations with t.Fatal

v1.0.3

Toggle v1.0.3's commit message
Merge pull request #12 from comawill/pull-req/TestWriterBuffer

go1.8 "Argument Liveness" might lead to early free

v1.0.2

Toggle v1.0.2's commit message
streamRead / streamWrite: Avoid memcpy and local buffer

Build a slice that is backed by the passed buffer rather using memcpy
to move data around.

This fixes a segfault in TestReaderBZIP2 with go1.8 where a large
chunk of data is written through (*Rules).Write() ->
yr_rules_save_stream() -> streamWrite() and piped to an external bzip2
process. (This *may* have had to do with a the stack being moved due
to the large buffer allocation.)