unicorn icon indicating copy to clipboard operation
unicorn copied to clipboard

Unicorn CPU emulator framework (ARM, AArch64, M68K, Mips, Sparc, PowerPC, RiscV, S390x, TriCore, X86)

Results 151 unicorn issues
Sort by recently updated
recently updated
newest added

We maintain a few branches of Unicorn, as follows. - **[master](https://github.com/unicorn-engine/unicorn/tree/master)** branch is for the stable version, which is always synced with the latest stable release. Do NOT pull-request to...

pinned

Since its born in 2015, Unicorn has been inspiring so many cool research & tools, that we believe it deserves serious upgrade. Based on Qemu 2.1.2, there is a lot...

pinned

Soon we are going to release **Unicorn 1.0.2** after more than 3 years. Looking for some donation that help us to keep maintaining our development. In return, we will do...

pinned

``` USE="java" ebuild unicorn-bindings-0.9_p20160901.ebuild manifest clean install >>> Creating Manifest for /var/lib/layman/pentoo/dev-libs/unicorn-bindings >>> Unpacking source... * Fetching https://github.com/unicorn-engine/unicorn.git ... git fetch https://github.com/unicorn-engine/unicorn.git +HEAD:refs/git-r3/HEAD git update-ref --no-deref refs/git-r3/dev-libs/unicorn-bindings/0/__main__ 7b47ab6b667f8959cbfe149fc67de7cfcd0bcf54 * Checking...

bug

a proposal for a more Pythonic binding was posted on Twitter at https://gist.github.com/moyix/669344f534c83e0704e0 - by @moyix. this looks cool. @JonathonReinhart, is this similar to what you plan to propose?

enhancement
help wanted
TODO

The website has links for w32 and w64 builds of the core engine for version 1.0.3, but the links are broken: https://www.unicorn-engine.org/download/ links to: https://github.com/unicorn-engine/unicorn/releases/download/1.0.3/unicorn-1.0.3-win32.zip and https://github.com/unicorn-engine/unicorn/releases/download/1.0.3/unicorn-1.0.3-win64.zip

Unicorn is available as a port in [vcpkg](https://github.com/microsoft/vcpkg), a C++ library manager that simplifies installation for unicorn and other project dependencies. Documenting the install process here will help users get...

I happened to find a bug when using the Python binding of unicorn, not sure if it is a feature of MIPS architecture or it works differently in other language...

Previously I tried to install pwntools using the pip command, but found the error cannot install unicorn pip3 install unicorn Collecting unicorn Using cached unicorn-2.0.0.tar.gz (2.7 MB) Preparing metadata (setup.py)...

I found a wrong type hint for ``reg_write`` method of ``Uc`` in Python bindings. Wrong: ```python def reg_write(self, reg_id: Union[int, ARMCPRegValue, ARM64CPRegValue, X86MMRReg, X86FPReg], value: int): ... ``` Correct: ```python...