Dax Posted February 8, 2018 Posted February 8, 2018 Hi! This is my first post on tuts4 you I hope that this is the right section, if not, please delete this post! Ok so... Few months ago I have made public my internal project called REDasm on GitHub. Basically it's a cross platform disassembler with an interactive listing (but it's still far, if compared to IDA's one) and it can be extended with its API in order to support new formats, assemblers and analyzers. Currently it supports: Portable Executable VB5/6 decompilation . It can detect Delphi executables, a decompiler is WIP. .NET support is WIP. Debug symbols are displayed, if available. ELF Executables Debug symbols are displayd, if available. DEX Executables Debug symbols are displayed, if available. x86 and x86_64 is supported. MIPS is supported and partially emulated. ARM support is implemented but still WIP. Dalvik assembler is supported. Most common assemblers are implemented by using Capstone library, Dalvik assembler is written manually and even the upcoming MSIL/CIL assembler will be implemented manually. The entire project is written in C++ and its UI is implemented with Qt5, internally, the disassembler is separated in two parts: LibREDasm and UI. LibREDasm doesn't contains any UI related dependencies, it's just pure C++, one day I will split it in two separate projects. Some links with source code, nightlies and wiki: Source Code: https://github.com/REDasmOrg/REDasm Nightly Builds (for Windows and Linux): https://github.com/REDasmOrg/REDasm-Builds Wiki: https://github.com/REDasmOrg/REDasm/wiki And some screenshots: 24 4
samoray Posted September 20, 2018 Posted September 20, 2018 Thank you for your efforts, nice work. but is the project dead? not updated for several months...
Dax Posted September 20, 2018 Author Posted September 20, 2018 Yes, it's still active: I'm working on version 2.0 on the "next" branch, GitHub doesn't show branch activities. I have posted a video preview on Twitter few days ago which shows the upgraded engine in action along with the brand new disassembly widget. NOTE: Some parts of the UI are still disabled in that video, I have attached a screenshot with the latest enhancements here (the UI is still ugly, I'm planning to clearing up a bit). 5 1
samoray Posted September 20, 2018 Posted September 20, 2018 I wish you all the best and keep up your good work 1
Dax Posted March 4, 2019 Author Posted March 4, 2019 (edited) REDasm 2.0 is available for download at http://redasm.io, binary packages has been tested on Windows and Linux. I have attached some screenshots to see how it looks now. Source Code: https://github.com/REDasmOrg/REDasm Changelog - Brand new disassembler engine. - Brand new disassembler widget. - Brand new Signature Engine (SDB files). - Brand new Hex Widget. - Multithreaded analysis. - QtWebEngine powererd graphs. - Simplified LibREDasm API. - Reimplemented Emulation APIs. - Improved ARM/Thumb switch heuristics. - Improved ARM listing. - Added IDA style popup on symbols. - Added Dark Theme. - Added jump arrows in listing. - Recent file support. - Projects support (RDB files). - Improved keyboard shortcuts. - CMake Porting. - UI/LibREDasm/Database split. - MSVC RTTI Analysis. - MSVC Demangling. - Improved VB Decompiler. - Implemented GBA Loader (WIP). - Implemented N64 Loader (WIP). - Unified loader for ELF Format (Little/Big endian, 32/64 bits). - Unified loader for PE Format (Little/Big endian). - Clang support on 64bit. - UI Redesign. - Lots of bug fixes. Edited March 4, 2019 by Dax Reduced image size 3
deepzero Posted March 4, 2019 Posted March 4, 2019 (edited) Cool. Are there even bigendian PE files though? How does QtWebEngine power the graph? How does Clang play into all of this? --- On Linux I get Quote ./REDasm: error while loading shared libraries: libQt5WebEngine.so.5: cannot open shared object file: No such file or directory What's the expected way of installing or supplying Qt? I develop with Qt myself, so have a full Qt installation present. Edited March 4, 2019 by deepzero
Dax Posted March 4, 2019 Author Posted March 4, 2019 (edited) Oooops, copy/paste fails 🤣 Yes you're right, PE is a LE-only format. About the QtWebEngine: I'm using it with d3js and dagre-d3 in order to rendering graphs (because I'm not good to create a nice graph layout algorithm), the minimum required version is Qt 5.9 LTS, which version are you using? About Clang: I have used Clang 7 during the final development phase, because it generates better warnings than gcc, so it can compile REDasm. There are some issues on 32 bit systems (there is a bug report for that). Edited March 4, 2019 by Dax Typo
deepzero Posted March 4, 2019 Posted March 4, 2019 Ah so clang support means you can compile it with clang, got it. I'm running Ubuntu 18.04 with default Qt5.95. Should work? I will look into it in the coming days.
whoknows Posted May 12, 2019 Posted May 12, 2019 REDasm 2.1 released https://github.com/REDasmOrg/REDasm/blob/master/CHANGELOG.md 1
bihatchi Posted January 4, 2020 Posted January 4, 2020 hi i downloade REDasm 2.1 but it dease not run on my pc and i have win7 32bits installed is this normal or it's dont support the 32bit OS?
Dax Posted January 8, 2020 Author Posted January 8, 2020 I don't provide 32 bit binaries atm, but it's possible to build it from source.
bihatchi Posted January 8, 2020 Posted January 8, 2020 @Dax 1est of all thanx for your relay & 2nd i'haven't enought knowledg in programming so plz can u help me more to resolve this problem &thnx in advanced
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now