GitBook: [master] one page modified

This commit is contained in:
CPol 2021-08-22 19:47:11 +00:00 committed by gitbook-bot
parent eda643b64c
commit b3d436d8dc
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -163,13 +163,19 @@ Read the following page to learn how to easily access javascript code of React a
### Xamarin Applications
**Xamarin** apps are written in **C\#**, so you can access the source code using some of [**these recommended tools**](../../reversing/reversing-tools/#net-decompiler). But first of all you need to **decompress** the **apk**:
**Xamarin** apps are written in **C\#**, in order to access the C\# code **decompressed,** you need to get the files from the **apk**:
```bash
7z r app.apk #Or any other zip decompression cmd
```
Then decompress the DLL using [**xamarin-decompress**](https://github.com/NickstaDB/xamarin-decompress) and finally you can use the recommended tools to read C\# code from an executable.
Then, decompress all the DLsL using [**xamarin-decompress**](https://github.com/NickstaDB/xamarin-decompress)**:**
```text
python3 xamarin-decompress.py -o /path/to/decompressed/apk
```
and finally you can use [**these recommended tools**](../../reversing/reversing-tools/#net-decompiler) to **read C\# code** from the DLLs.
### Other interesting functions