YaraSharp
YaraSharp copied to clipboard
C# wrapper around the Yara pattern matching library
1. Added YaraSharp.YSScanner.ScanMemory overload to take an array instead of a pointer, since this is a C# wrapper, and it is expected of C# wrappers to insulate you from such...
I want to add rules using a string and not a external file
I'm attempting to use the library via a simple example: ``` YSInstance YSInstance = new YSInstance(); Dictionary CONST_YS_EXTERNAL_VALUES = new Dictionary() { { "filename", string.Empty }, { "filepath", string.Empty },...
I plan to use C# FileSystemWatcher to write an automatic directory monitoring program. When a new file is created, the callback function uses Yara to review it. However, the Yara...