goomba
goomba copied to clipboard
gooMBA is a Hex-Rays Decompiler plugin to simplify Mixed Boolean-Arithmetic (MBA) expressions
Hey: I've downloaded z3 release for arm64-osx and followed the setup instructions, however: ``` clang++ -m64 -arch x86_64 -mmacosx-version-min=10.14 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk -dynamiclib -compatibility_version 1.0 -current_version 1.0 -single_module -o ../../bin/plugins/goomba.dylib obj/x64_mac_clang_32/goomba.o...
Hi, I tested goomba on a simple program and it seems to fail to detect MBAs within a compare and return. **MBA: 2 * (a2 & a1) + (a2 ^...
Added CMake support with ida-cmake. This is the preliminary CMake support. The building instructions need to be merged / updated after PR #1 is checked in and merged.
that’s pretty much it https://github.com/HexRaysSA/goomba/blob/main/makefile#L18
Hi there, I'm attempting to automate the deobfuscation process using IDAPython, but I've encountered some challenges. Specifically, I haven't observed any changes after executing the `load_and_run_plugin("gooMBA", 0)`. I'm currently using...