Flutter逆向好恶心。
Flutter逆向初探
Dart
安装
dart-lang/sdk: The Dart SDK, including the VM, dart2js, core libraries, and more. (github.com)
先在Windows上安装一下Dart
1 | choco install dart-sdk |
注意要在管理员权限下的Powershell上执行这个命令。
Demo脚本执行
成功安装后,创建一个hello.dart
文件:
1 | void main() { |
然后执行命令:dart hello.dart
来执行这个脚本
1 | Hello, World! |
成功打印。
快照模式
类似于一种编译。生成类似字节码一样的文件,加快执行速度。
1 | dart --snapshot=hello.snapshot hello.dart |
然后就生成了一个hello.snapshot
然后执行dart hello.snapshot
打印同样的结果。
参考
如何逆向一个Flutter应用 - 知乎 (zhihu.com)
dart-lang/sdk: The Dart SDK, including the VM, dart2js, core libraries, and more. (github.com)
- 本文作者: Taardis
- 本文链接: https://taardisaa.github.io/2023/05/28/Flutter逆向初探/
- 版权声明: 本博客所有文章除特别声明外,均采用 Apache License 2.0 许可协议。转载请注明出处!