- 15 Jun, 2016 2 commits
- 23 Feb, 2016 10 commits
-
-
plusvic authored
-
Victor M. Alvarez authored
-
plusvic authored
-
plusvic authored
-
plusvic authored
-
plusvic authored
-
plusvic authored
-
plusvic authored
-
plusvic authored
-
Implement CALLBACK_MSG_MODULE_IMPORTED.
Victor M. Alvarez authored
-
- 31 Jan, 2016 2 commits
-
-
Victor M. Alvarez authored
-
- 22 Jan, 2016 1 commit
-
-
Victor M. Alvarez authored
-
- 02 Jan, 2016 1 commit
-
-
Implement a callback to handle module data. It will be given a dictionary which contains all the information stored in the module that is fit for consumption. Things like functions are left out. You can now do things like this: ``` import yara import json from pprint import pprint def modules_callback(d): try: pprint(d) # This will not work if you have non-ASCII in your strings. #print json.dumps(d, indent=4) except Exception as e: print "Exception: %s" % e return yara.CALLBACK_CONTINUE rules = yara.compile(source='import "pe" rule always_false { condition: false }') with open('foo.exe') as f: rules.match(data=f.read(), modules_callback=modules_callback) ```
Wesley Shields authored
-
- 26 Nov, 2015 2 commits
-
-
Victor M. Alvarez authored
-
yara_callback was invoking Python's code without acquiring the global interpreter lock.
Victor M. Alvarez authored
-
- 11 Nov, 2015 1 commit
-
- 23 Oct, 2015 1 commit
-
- 25 Sep, 2015 5 commits
-
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Starting with Python 3.2 hash functions should return Py_hash_t instead of long.
Victor M. Alvarez authored -
Victor M. Alvarez authored
-
- 24 Sep, 2015 1 commit
-
-
Victor M. Alvarez authored
-
- 23 Sep, 2015 1 commit
-
-
Victor M. Alvarez authored
-
- 15 Sep, 2015 8 commits
-
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
- 11 Sep, 2015 5 commits
-
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-
Victor M. Alvarez authored
-