## Summary Consider the following yara rule, ``` rule example { strings: $xor = "hello world!" xor condition: any of them } ``` When using `yara-python`, one could fetch the found XOR key from [the xor_key property from a StringMatchInstance object](https://yara.readthedocs.io/en/stable/yarapython.html#yara.StringMatchInstance). This property does not appear to be passed to the yara wrapper in malduck yet?