├── .document ├── .gitignore ├── .rspec ├── Gemfile ├── History.txt ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── VERSION ├── ext └── yara_native │ ├── Match.c │ ├── Match.h │ ├── Rules.c │ ├── Rules.h │ ├── Yara_native.c │ ├── Yara_native.h │ └── extconf.rb ├── lib └── yara.rb ├── samples ├── flashfinder ├── ispe.rb ├── sslkeyfinder └── upx.rb └── spec ├── rules_spec.rb ├── samples ├── DumpMem.exe ├── packers.yara └── upx.yara ├── spec_helper.rb └── yara_spec.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format nested 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/History.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.6.0 -------------------------------------------------------------------------------- /ext/yara_native/Match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Match.c -------------------------------------------------------------------------------- /ext/yara_native/Match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Match.h -------------------------------------------------------------------------------- /ext/yara_native/Rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Rules.c -------------------------------------------------------------------------------- /ext/yara_native/Rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Rules.h -------------------------------------------------------------------------------- /ext/yara_native/Yara_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Yara_native.c -------------------------------------------------------------------------------- /ext/yara_native/Yara_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/Yara_native.h -------------------------------------------------------------------------------- /ext/yara_native/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/ext/yara_native/extconf.rb -------------------------------------------------------------------------------- /lib/yara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/lib/yara.rb -------------------------------------------------------------------------------- /samples/flashfinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/samples/flashfinder -------------------------------------------------------------------------------- /samples/ispe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/samples/ispe.rb -------------------------------------------------------------------------------- /samples/sslkeyfinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/samples/sslkeyfinder -------------------------------------------------------------------------------- /samples/upx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/samples/upx.rb -------------------------------------------------------------------------------- /spec/rules_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/rules_spec.rb -------------------------------------------------------------------------------- /spec/samples/DumpMem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/samples/DumpMem.exe -------------------------------------------------------------------------------- /spec/samples/packers.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/samples/packers.yara -------------------------------------------------------------------------------- /spec/samples/upx.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/samples/upx.yara -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/yara_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiderLabs/yara-ruby/HEAD/spec/yara_spec.rb --------------------------------------------------------------------------------