Steven Ding

Results 11 comments of Steven Ding

Let me check. I am getting an IDA 7.3. Haven't tested on 7.3 yet. It looks like they change the Choose api again. Thanks!

Hi Takahiro. Thank you for your interest in our research. Could you share more details in the log file? Is there any exception message in the log file? Which version...

It looks like the processor is not in our list of defined architectures (hard-coded for JSON parsing). Let me push an update. It gonna take 1-2 days. Would you mind...

Hi Takahiro. Sorry for getting back to you so late. I did some preliminary tests with the .net assemblies. Our existing scripts are not compatible yet. We need more time...

Hi! Thank you for the contribution! Actually we didn't have any setup for developing the plugin yet, I just edited like you did. For the backend codebase we use Eclipse...

Sorry for the late followup. I was traveling. We will add auto expand for the tree for sure. I will try separating the html file from the Jar. But there...

Hi kvozon! Your feedback iswell-received. We will include them in future release (soon). Thanks!

Hi! Thank you for your interests! We haven't managed to add the support for the other disassembler yet, since we are still intensively improving the backend server. The IDA plugin...

Ran into the same problem. If you ran two fuzzer on a benchmark, it magically went away though..

```python df['firsts'] = ( df.groupby(grouping2, group_keys=False).apply(is_unique_crash) & ~df.crash_key.isna()) ```` The problem is that `group_keys=False` is not working here when there is only one entry, `df.groupby(grouping2, group_keys=False).apply(is_unique_crash) ` outputs: ``` Name:...