mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-20 10:03:51 +00:00
96 lines
4.2 KiB
Markdown
96 lines
4.2 KiB
Markdown
|
# Google CTF 2018 - Shall We Play a Game?
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Support HackTricks</summary>
|
||
|
|
||
|
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|
||
|
|
||
|
Download the APK here:
|
||
|
|
||
|
I am going to upload the APK to [https://appetize.io/](https://appetize.io) (free account) to see how the apk is behaving:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (421).png>)
|
||
|
|
||
|
Looks like you need to win 1000000 times to get the flag.
|
||
|
|
||
|
Following the steps from [pentesting Android](./) you can decompile the application to get the smali code and read the Java code using jadx.
|
||
|
|
||
|
Reading the java code:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (495).png>)
|
||
|
|
||
|
It looks like the function that is going print the flag is **m().**
|
||
|
|
||
|
## **Smali changes**
|
||
|
|
||
|
### **Call m() the first time**
|
||
|
|
||
|
Lets make the application call m() if the variable _this.o != 1000000_ to do so, just cange the condition:
|
||
|
|
||
|
```
|
||
|
if-ne v0, v9, :cond_2
|
||
|
```
|
||
|
|
||
|
to:
|
||
|
|
||
|
```
|
||
|
if-eq v0, v9, :cond_2
|
||
|
```
|
||
|
|
||
|
![Before](<../../.gitbook/assets/image (383).png>)
|
||
|
|
||
|
![After](<../../.gitbook/assets/image (838).png>)
|
||
|
|
||
|
Follow the steps of [pentest Android](./) to recompile and sign the APK. Then, upload it to [https://appetize.io/](https://appetize.io) and lets see what happens:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (128).png>)
|
||
|
|
||
|
Looks like the flag is written without being completely decrypted. Probably the m() function should be called 1000000 times.
|
||
|
|
||
|
**Other way** to do this is to not change the instrucction but change the compared instructions:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (840).png>)
|
||
|
|
||
|
**Another way** is instead of comparing with 1000000, set the value to 1 so this.o is compared with 1:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (629).png>)
|
||
|
|
||
|
A forth way is to add an instruction to move to value of v9(1000000) to v0 _(this.o)_:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (414).png>)
|
||
|
|
||
|
![](<../../.gitbook/assets/image (424).png>)
|
||
|
|
||
|
## Solution
|
||
|
|
||
|
Make the application run the loop 100000 times when you win the first time. To do so, you only need to create the **:goto\_6** loop and make the application **jump there if `this.o`** does not value 100000:
|
||
|
|
||
|
![](<../../.gitbook/assets/image (1090).png>)
|
||
|
|
||
|
You need to do this inside a physical device as (I don't know why) this doesn't work in an emulated device.
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Support HackTricks</summary>
|
||
|
|
||
|
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|