Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ios & android technique and tool for re-flutter (by @appknox) #2600

Merged
merged 22 commits into from
Jun 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated mastg-tech-0110
  • Loading branch information
sk3l10x1ng committed Apr 22, 2024
commit 2e8a6dbbee6785372a16bf28f3862f416cd33fb2
3 changes: 3 additions & 0 deletions techniques/ios/MASTG-TECH-0110.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

Flutter is an open-source UI software development kit (SDK) created by Google. It is used for building natively compiled applications for mobile, web, and desktop from a single codebase. Flutter uses Dart, which is not proxy-aware and uses its own certificate store. The application doesn't take proxy configuration from the system and send the data directly to the server. Due to this, it is not possible to intercept the request using the BurpSuite or any MITM tools.


**How does re-flutter method differs from other techniques ?**

There are alternative methods for intercepting traffic, such as creating a [WIFI hotspot and utilizing the openvpn approach](https://blog.nviso.eu/2020/06/12/intercepting-flutter-traffic-on-ios/). However, these techniques require some configuration. By employing the re-flutter command-line tool, the application can be patched effortlessly without the need for any setup.

## Intercepting Traffic using re-fultter
cpholguera marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -28,7 +31,7 @@

This will create a **release.RE.ipa** file in the output folder.

2. [Sign](../../techniques/ios/MASTG-TECH-0092.md) the patched **release.RE.ipa** with the Apple certificates. This will create a singed ".ipa" file in the output folder.

Check failure on line 34 in techniques/ios/MASTG-TECH-0110.md

View workflow job for this annotation

GitHub Actions / codespell

singed ==> signed, singled, sang, sung
cpholguera marked this conversation as resolved.
Show resolved Hide resolved

3. Install the signed patched app on the mobile device.

Expand Down
Loading