Doldrums : A Flutter/Dart Reverse Engineering Tool

Doldrums is a reverse engineering tool for Flutter apps targetting Android. Concretely, it is a parser and information extractor for the Flutter/Dart Android binary, conventionally named libapp.so, for all Dart version 2.10 releases. When run, it outputs a full dump of all classes present in the isolate snapshot.

The tool is currently in beta, and missing some deserialization routines and class information. If it does not work out-of-the-box, please let me know.

Dependencies

Doldrums requires pyelftools to parse the ELF format. You can install it with

pip3 install pyelftools

Usage

To use, simply run the following command, substituting libapp.so for the appropriate binary, and output for the desired output file. Note that the verbose option only works for Dart snapshot v2.12.

python3 src/main.py [-v] libapp.so output

The expected output is a dump of all classes, in the following format:

class MyApp extends StatelessWidget {
Widget build(DynamicType, DynamicType) {
Code at absolute offset: 0xec85c
}
String myPrint(DynamicType, DynamicType) {
Code at absolute offset: 0xeca80
}
}

The absolute code offset indicates the offset into the libapp.so file where the native function may be found.

R K

Recent Posts

Best Advanced OSINT Tools 2026: Pivot Across Domains, Emails and Profiles

Advanced OSINT is not about using complicated tools for the sake of it. It is…

5 hours ago

Best OSINT Tools for Beginners 2026: A 7-Day Practical Learning Roadmap

Learning OSINT can feel confusing in the beginning because there are too many tools, websites,…

5 hours ago

Install KVM Ubuntu: Easy Virtualization Setup Guide

Virtualization has become a key technology for developers, system administrators, and IT professionals. If you…

6 hours ago

Install Elasticsearch Ubuntu: Complete Setup Guide

Elasticsearch has become one of the most popular platforms for search, analytics, and large-scale data…

6 hours ago

Install OpenCV Ubuntu: Complete Computer Vision Setup Guide

Install OpenCV Ubuntu is a common requirement for developers working on artificial intelligence, machine learning,…

6 hours ago

Install Steam Ubuntu: Easy Gaming Setup on Ubuntu 20.04

Whether you're interested in AAA titles, indie games, or multiplayer experiences, Steam provides a convenient…

6 hours ago