-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: 'yara.StringMatch' object is not subscriptable #44
Comments
The same problem here with yara-python 4.3.1 |
I solved this problem by installing yara-python 4.2 |
The yarsearch function needs to be modified as follows: def yarasearch(self, memory, offsets, rules): |
TypeError: 'yara.StringMatch' object is not subscriptable polymorf/findcrypt-yara#44
Failed while executing plugin_t.run():
Traceback (most recent call last):
File "D:/tools/IDA_Pro_7.7/plugins/findcrypt3.py", line 224, in run
self.search()
File "D:/tools/IDA_Pro_7.7/plugins/findcrypt3.py", line 180, in search
values = self.yarasearch(memory, offsets, rules)
File "D:/tools/IDA_Pro_7.7/plugins/findcrypt3.py", line 197, in yarasearch
self.toVirtualAddress(string[0], offsets),
TypeError: 'yara.StringMatch' object is not subscriptable
The text was updated successfully, but these errors were encountered: