liona24
liona24
***Describe the bug** When trying to emulate simple binaries on a vanilla ubuntu 22.04 qiling fails gloriously with `unicorn.unicorn.UcError: Invalid memory fetch (UC_ERR_FETCH_UNMAPPED)` **Sample Code** ```dockerfile FROM ubuntu:22.04 RUN apt-get...
Hey. The current version of unicorn shipped with a default pip install on linux may segfault in tb_set_jmp_target_mipsel. Stack trace: ``` #0 0x00007fdacb094ff1 in tb_set_jmp_target_mipsel () from /lib64/python3.10/site-packages/unicorn/lib/libunicorn.so.2 #1 0x00007fdacb09532d...
Hey. I am just checking out the project. The `importCode` function seems to be very intransparent of what it does, is there a way to control what is actually imported...
Hey. I have experimented with the slicing code and I stumbled over this little issue. Essentially I compute some small slices and try to determine if the analysis could find...
### Checklist - [X] I have fzf 0.54.0 or later - [X] I have searched through the existing issues ### Output of `:echo system(fzf#exec() .. ' --version')` 0.54.3 (Fedora) ###...
Hey, currently the `longest_common_prefix` function behaves like this: ```rust let mut trie = qp_trie::Trie::new(); let a = vec![1]; let b = vec![1, 2, 3]; trie.insert(a.as_slice(), 1111); trie.insert(b.as_slice(), 2222); assert_eq!( trie.longest_common_prefix([1u8,...