Shift
Shift
MDIndx partially broken. FNV Hash. FCatalog optimized per call.
If someone started a matching task and nobody added a remote IDB to diff against, the GUI would just wait there until getting an empty diffing dialog, (which would take...
In case we get no reply from the server, (for any reason), matching tasks should have a timeout. Currently, we have to manually kill the IDA in order to stop...
``` INFO:match_action:Data upload started Caching 'Strings window'... ok Traceback (most recent call last): File "C:/Program Files (x86)/IDA 6.95/plugins\rematch\actions\match.py", line 126, in perform_upload self.instance_set.append(func.serialize()) File "C:/Program Files (x86)/IDA 6.95/plugins\rematch\instances\base.py", line 13,...
Right now we're uploading exactly 100 functions in order to be efficient and save space, however some binaries would not include 100 functions at all, maybe 10 or 20, while...
When creating a hash from a function, we're currently working slowly on Bytes instead of Dword due to laziness. This has to be changed. We also work on each basic...
Create a basic graph diffing either by constructing our own graph or using IDA's. Classic examples would be Levenstein and Hamming distance but I think we could do better, specifically...
Each bb-based function is basically the same, create a class which one must only implement digest() and let the class has it's own bb iterator function. This issue depends on...
Based on IDA hooks and timers, (in case we don't have all the information).