Mathieu Tarral

Results 388 comments of Mathieu Tarral

> yea, that was a mistake from my part. what i really meant was i would like to help you (specially learn from you) on future developments, IF that is...

@Jerely You should find interesting resources and documentation on this radare2 issue: https://github.com/radareorg/radare2/issues/1246

> From what i understand in your pyvmidbg project, you implement the GDBserver stub in userland and provide a glue through libVMI with the VMM. Yes the main goal is...

hi @mark-i-m , thanks for pinging me. A page table parsing implemented using the `Visitor` pattern seems an interesting approach, to separate the data from the algorithm operating on the...

> Thanks. pre_role is not very expressive, maybe call it pre_checks or pre_setup? I would have but this is missing the fact that it defines global variables for the whole...

Renamed to `pre_checks`

Thanks for reporting the issue. I would avoid tweaking pip's behavior unless it's absolutely necessary. kAFL's installer can't take responsability for the end-user connection hazards, and modifying pip's default values...

Partially solved by #103 Future Sphinx docs PR will solve this

I believe that the reason why `git` is reseting some repos is due to the `force` flag being enabled: https://github.com/IntelLabs/kAFL/search?q=force Documentation: https://docs.ansible.com/ansible/latest/collections/ansible/builtin/git_module.html#parameter-force If I remove the force parameter, I will...

Just found a similar issue on StackOverflow: https://stackoverflow.com/questions/41178361/how-to-use-ansible-git-module-pull-a-branch-with-local-changes seems like the git module is surprisingly limited to handle this situation. however, I found a workaround: ~~~yaml - name: Clone repo...