Skip to content

Dart Inspector

Domain: dart-inspector

Extract and classify strings, recover Smi integer constants, and resolve obfuscated identifiers from Flutter AOT libapp.so using a developer-supplied obfuscation map.

Profiles

  • full

Typical scenarios

  • Flutter app reversing
  • libapp.so string audit
  • Smi integer constant recovery
  • Obfuscation map symbol lookup

Common combinations

  • dart-inspector + binary-instrument
  • dart-inspector + adb-bridge

Full tool list (12)

ToolDescription
dart_strings_extractStream-extract ASCII/UTF-16LE strings from a Dart AOT libapp.so and classify them (urls, paths, classNames, packageRefs, cryptoKeywords, plus customRules). ReDoS-guarded.
dart_smi_scanRecover Dart Small Integer (Smi) constants from a libapp.so by reading aligned little-endian words and stripping the heap-pointer tag bit.
dart_symbolizeResolve obfuscated Dart identifiers using a developer-supplied Flutter --save-obfuscation-map JSON (flat, pairs, or object shape).
flutter_packages_detectDetect third-party Dart package: refs in a Flutter libapp.so, aggregated and SDK-stdlib-filtered.
dart_snapshot_header_parseParse the Dart isolate snapshot header in a libapp.so: magic, kind, 32-byte hash, features, target arch. Read-only.
dart_version_fingerprintIdentify Flutter/Dart SDK release from a libapp.so by combining header parse with a built-in (and optionally user-supplied) hash table.
dart_object_pool_dumpRead-only static dump of the Dart isolate ObjectPool in a libapp.so: classify each slot as smi/mint/double/string/classRef/functionRef/pool/null/unknown.
dart_load_snapshotLoad and parse a Dart AOT snapshot from libapp.so, extracting metadata and statistics (Code objects, ObjectPool entries, clusters).
dart_list_functionsList all Dart Code objects (compiled functions) from a loaded snapshot, with entry point address, size, and name (if available).
dart_call_functionExecute a Dart function in the ARM64 emulator by address or name, with simplified runtime (mock built-ins, tagged pointers).
dart_inspect_object_poolDump an ObjectPool at a specific address, showing all entries with types and values.
dart_trace_executionTrace Dart function execution step-by-step, emitting each instruction with register state (PC, x0-x30, PP, THR).

Released under AGPL-3.0-only