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

Update MASTG-TECH-0054.md #2906

Merged
merged 3 commits into from
Oct 6, 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
4 changes: 2 additions & 2 deletions techniques/ios/MASTG-TECH-0054.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

First, configure @MASTG-TOOL-0054 `dump.py`:

- set it to use `localhost` with port `2222` when using @MASTG-TOOL-0055, or to the actual IP address and port of the device from which you want to dump the binary.
- set it to use `localhost` with port `2222` when using @MASTG-TOOL-0055 (`iproxy 2222 22`), or to the actual IP address and port of the device from which you want to dump the binary.

Check failure on line 61 in techniques/ios/MASTG-TECH-0054.md

View workflow job for this annotation

GitHub Actions / markdown-lint-check

Trailing spaces

techniques/ios/MASTG-TECH-0054.md:61:184 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md
sushi2k marked this conversation as resolved.
Show resolved Hide resolved
- update the default username (`User = 'root'`) and password (`Password = 'alpine'`) in `dump.py` to the ones you have set.

Enumerate the apps installed on the device by running `python dump.py -l`:
Expand All @@ -74,7 +74,7 @@
...
```

You can dump the selected app, for example Telegram, by running `python dump.py ph.telegra.Telegraph`
You can dump the selected app, for example Telegram, by running `python dump.py -H 127.0.0.1 -p 2222 --user mobile -P alpine ph.telegra.Telegraph`, if you are using a SSH tunnel with `iproxy` and the default credentials on a jailbroken phone.
cpholguera marked this conversation as resolved.
Show resolved Hide resolved

After a couple of seconds, the `Telegram.ipa` file will be created in your current directory. You can validate the success of the dump by removing the app and reinstalling it (e.g. using @MASTG-TOOL-0054 `ios-deploy -b Telegram.ipa`). Note that this will only work on jailbroken devices, as otherwise the signature won't be valid.

Expand Down
Loading