2024-07-19 05:29:57 +00:00
# Frida Tutorial
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
{% 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)
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
< details >
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
< summary > Support HackTricks< / summary >
2024-01-03 10:43:38 +00:00
2024-07-19 05:29:57 +00:00
* 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.
2022-04-28 16:01:33 +00:00
2022-10-27 23:22:18 +00:00
< / details >
2024-07-19 05:29:57 +00:00
{% endhint %}
2022-04-28 16:01:33 +00:00
2023-10-09 19:38:55 +00:00
< figure > < img src = "../../../.gitbook/assets/i3.png" alt = "" > < figcaption > < / figcaption > < / figure >
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
**Bug bounty tip**: **зареєструйтесь** на **Intigriti** , преміум **платформі для bug bounty, створеній хакерами, для хакерів** ! Приєднуйтесь до нас на [**https://go.intigriti.com/hacktricks** ](https://go.intigriti.com/hacktricks ) сьогодні, і почніть заробляти винагороди до ** $100,000**!
2022-04-28 16:01:33 +00:00
2022-10-27 23:22:18 +00:00
{% embed url="https://go.intigriti.com/hacktricks" %}
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
## Installation
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
Install **frida tools** :
2020-09-09 15:07:39 +00:00
```bash
2020-07-15 15:43:14 +00:00
pip install frida-tools
pip install frida
```
2024-07-19 05:29:57 +00:00
**Завантажте та встановіть** на Android **frida server** ([Завантажте останнє випуск](https://github.com/frida/frida/releases)).\
Однорядковий код для перезапуску adb в режимі root, підключення до нього, завантаження frida-server, надання прав виконання та запуску в фоновому режимі:
2020-07-15 15:43:14 +00:00
2023-08-24 16:36:37 +00:00
{% code overflow="wrap" %}
2020-09-09 15:07:39 +00:00
```bash
2024-03-29 18:49:46 +00:00
adb root; adb connect localhost:6000; sleep 1; adb push frida-server /data/local/tmp/; adb shell "chmod 755 /data/local/tmp/frida-server"; adb shell "/data/local/tmp/frida-server & "
2020-07-15 15:43:14 +00:00
```
2023-08-24 16:36:37 +00:00
{% endcode %}
2020-07-15 15:43:14 +00:00
2024-03-29 18:49:46 +00:00
**Перевірте**, чи **працює** :
2020-09-09 15:07:39 +00:00
```bash
2020-07-15 15:43:14 +00:00
frida-ps -U #List packages and processes
frida-ps -U | grep -i < part_of_the_package_name > #Get all the package name
```
2024-07-19 05:29:57 +00:00
## Tutorials
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
### [Tutorial 1](frida-tutorial-1.md)
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**From**: [https://medium.com/infosec-adventures/introduction-to-frida-5a3f51595ca1 ](https://medium.com/infosec-adventures/introduction-to-frida-5a3f51595ca1 )\
2021-10-18 11:21:18 +00:00
**APK**: [https://github.com/t0thkr1s/frida-demo/releases ](https://github.com/t0thkr1s/frida-demo/releases )\
2024-07-19 05:29:57 +00:00
**Source Code**: [https://github.com/t0thkr1s/frida-demo ](https://github.com/t0thkr1s/frida-demo )
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**Follow the [link to read it ](frida-tutorial-1.md ).**
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
### [Tutorial 2](frida-tutorial-2.md)
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**From**: [https://11x256.github.io/Frida-hooking-android-part-2/ ](https://11x256.github.io/Frida-hooking-android-part-2/ ) (Parts 2, 3 & 4)\
**APKs and Source code**: [https://github.com/11x256/frida-android-examples ](https://github.com/11x256/frida-android-examples )
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**Follow the[ link to read it.](frida-tutorial-2.md)**
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
### [Tutorial 3](owaspuncrackable-1.md)
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**From**: [https://joshspicer.com/android-frida-1 ](https://joshspicer.com/android-frida-1 )\
2021-10-18 11:21:18 +00:00
**APK**: [https://github.com/OWASP/owasp-mstg/blob/master/Crackmes/Android/Level\_01/UnCrackable-Level1.apk ](https://github.com/OWASP/owasp-mstg/blob/master/Crackmes/Android/Level\_01/UnCrackable-Level1.apk )
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**Follow the [link to read it ](owaspuncrackable-1.md ).**
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
**You can find more Awesome Frida scripts here:** [**https://codeshare.frida.re/** ](https://codeshare.frida.re )
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
## Quick Examples
2020-07-15 15:43:14 +00:00
2024-03-29 18:49:46 +00:00
### Виклик Frida з командного рядка
2020-07-15 15:43:14 +00:00
```bash
frida-ps -U
#Basic frida hooking
frida -l disableRoot.js -f owasp.mstg.uncrackable1
#Hooking before starting the app
frida -U --no-pause -l disableRoot.js -f owasp.mstg.uncrackable1
#The --no-pause and -f options allow the app to be spawned automatically,
#frozen so that the instrumentation can occur, and the automatically
#continue execution with our modified code.
```
2024-07-19 05:29:57 +00:00
### Основний скрипт Python
2020-07-15 15:43:14 +00:00
```python
import frida, sys
jscode = open(sys.argv[0]).read()
process = frida.get_usb_device().attach('infosecadventures.fridademo')
script = process.create_script(jscode)
print('[ * ] Running Frida Demo application')
script.load()
sys.stdin.read()
```
2024-07-19 05:29:57 +00:00
### Hooking functions without parameters
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
Хукніть функцію `a()` класу `sg.vantagepoint.a.c`
2020-07-15 15:43:14 +00:00
```javascript
Java.perform(function () {
; rootcheck1.a.overload().implementation = function() {
2024-03-29 18:49:46 +00:00
rootcheck1.a.overload().implementation = function() {
send("sg.vantagepoint.a.c.a()Z Root check 1 HIT! su.exists()");
return false;
};
2020-07-15 15:43:14 +00:00
});
```
2024-07-19 05:29:57 +00:00
Hook java `exit()`
2020-07-15 15:43:14 +00:00
```javascript
var sysexit = Java.use("java.lang.System");
2024-03-29 18:49:46 +00:00
sysexit.exit.overload("int").implementation = function(var_0) {
send("java.lang.System.exit(I)V // We avoid exiting the application :)");
};
2020-07-15 15:43:14 +00:00
```
2024-07-19 05:29:57 +00:00
Hook MainActivity `.onStart()` & `.onCreate()`
2020-07-15 15:43:14 +00:00
```javascript
var mainactivity = Java.use("sg.vantagepoint.uncrackable1.MainActivity");
2024-03-29 18:49:46 +00:00
mainactivity.onStart.overload().implementation = function() {
send("MainActivity.onStart() HIT!!!");
var ret = this.onStart.overload().call(this);
};
mainactivity.onCreate.overload("android.os.Bundle").implementation = function(var_0) {
send("MainActivity.onCreate() HIT!!!");
var ret = this.onCreate.overload("android.os.Bundle").call(this,var_0);
};
2020-07-15 15:43:14 +00:00
```
2024-07-19 05:29:57 +00:00
Hook android `.onCreate()`
2020-07-15 15:43:14 +00:00
```javascript
2024-03-29 18:49:46 +00:00
var activity = Java.use("android.app.Activity");
activity.onCreate.overload("android.os.Bundle").implementation = function(var_0) {
send("Activity HIT!!!");
var ret = this.onCreate.overload("android.os.Bundle").call(this,var_0);
};
2020-07-15 15:43:14 +00:00
```
2024-07-19 05:29:57 +00:00
### Хукання функцій з параметрами та отримання значення
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
Хукання функції розшифрування. Виведіть вхідні дані, викличте оригінальну функцію для розшифрування вхідних даних і , нарешті, виведіть відкриті дані:
2020-07-15 15:43:14 +00:00
```javascript
2024-03-29 18:49:46 +00:00
function getString(data){
var ret = "";
for (var i=0; i < data.length ; i + + ) {
ret += data[i].toString();
}
return ret
}
var aes_decrypt = Java.use("sg.vantagepoint.a.a");
aes_decrypt.a.overload("[B","[B").implementation = function(var_0,var_1) {
send("sg.vantagepoint.a.a.a([B[B)[B doFinal(enc) // AES/ECB/PKCS7Padding");
send("Key : " + getString(var_0));
send("Encrypted : " + getString(var_1));
var ret = this.a.overload("[B","[B").call(this,var_0,var_1);
send("Decrypted : " + ret);
var flag = "";
for (var i=0; i < ret.length ; i + + ) {
flag += String.fromCharCode(ret[i]);
}
send("Decrypted flag: " + flag);
return ret; //[B
};
2020-07-15 15:43:14 +00:00
```
2024-07-19 05:29:57 +00:00
### Хукання функцій та виклик їх з нашим введенням
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
Хукніть функцію, яка отримує рядок, і викличте її з іншим рядком (з [тут ](https://11x256.github.io/Frida-hooking-android-part-2/ ))
2020-07-15 15:43:14 +00:00
```javascript
var string_class = Java.use("java.lang.String"); // get a JS wrapper for java's String class
my_class.fun.overload("java.lang.String").implementation = function(x){ //hooking the new function
2024-03-29 18:49:46 +00:00
var my_string = string_class.$new("My TeSt String#####"); //creating a new String by using `new` operator
console.log("Original arg: " +x );
var ret = this.fun(my_string); // calling the original function with the new String, and putting its return value in ret variable
console.log("Return value: "+ret);
return ret;
2020-07-15 15:43:14 +00:00
};
```
2024-03-29 18:49:46 +00:00
### Отримання вже створеного о б 'єкта класу
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
Якщо ви хочете витягти деякий атрибут створеного о б 'єкта, ви можете використовувати це.
2020-07-15 15:43:14 +00:00
2024-07-19 05:29:57 +00:00
У цьому прикладі ви побачите, як отримати о б 'єкт класу my\_activity і як викликати функцію .secret(), яка виведе приватний атрибут о б 'єкта:
2020-07-15 15:43:14 +00:00
```javascript
Java.choose("com.example.a11x256.frida_test.my_activity" , {
2024-03-29 18:49:46 +00:00
onMatch : function(instance){ //This function will be called for every instance found by frida
console.log("Found instance: "+instance);
console.log("Result of secret func: " + instance.secret());
},
onComplete:function(){}
2020-07-15 15:43:14 +00:00
});
```
2024-07-19 05:29:57 +00:00
## Інші уроки Frida
2023-12-11 09:39:35 +00:00
* [https://github.com/DERE-ad2001/Frida-Labs ](https://github.com/DERE-ad2001/Frida-Labs )
2024-07-19 05:29:57 +00:00
* [Частина 1 серії блогів про розширене використання Frida: Бібліотеки шифрування IOS ](https://8ksec.io/advanced-frida-usage-part-1-ios-encryption-libraries-8ksec-blogs/ )
2023-12-11 09:39:35 +00:00
2023-10-09 19:38:55 +00:00
< figure > < img src = "../../../.gitbook/assets/i3.png" alt = "" > < figcaption > < / figcaption > < / figure >
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
**Порада для б а г -баунті**: **зареєструйтесь** на **Intigriti** , преміум **платформі для б а г -баунті, створеній хакерами для хакерів** ! Приєднуйтесь до нас на [**https://go.intigriti.com/hacktricks** ](https://go.intigriti.com/hacktricks ) сьогодні та почніть заробляти винагороди до ** $100,000**!
2022-04-28 16:01:33 +00:00
2022-10-27 23:22:18 +00:00
{% embed url="https://go.intigriti.com/hacktricks" %}
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
{% hint style="success" %}
Вчіться та практикуйте Hacking AWS:< 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" > \
Вчіться та практикуйте Hacking GCP: < 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)
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
< details >
2022-04-28 16:01:33 +00:00
2024-07-19 05:29:57 +00:00
< summary > Підтримайте HackTricks< / summary >
2024-01-03 10:43:38 +00:00
2024-07-19 05:29:57 +00:00
* Перевірте [**плани підписки** ](https://github.com/sponsors/carlospolop )!
* **Приєднуйтесь до** 💬 [**групи Discord** ](https://discord.gg/hRep4RUj7f ) а б о [**групи Telegram** ](https://t.me/peass ) а б о **слідкуйте** за нами в **Twitter** 🐦 [**@hacktricks\_live** ](https://twitter.com/hacktricks\_live )**.**
* **Діліться хакерськими трюками, надсилаючи PR до** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) та [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) репозиторіїв на github.
2022-04-28 16:01:33 +00:00
< / details >
2024-07-19 05:29:57 +00:00
{% endhint %}