Hooking Native Android Methods with Frida

  Рет қаралды 24,236

LaurieWired

LaurieWired

Күн бұрын

Пікірлер: 56
@lxma
@lxma Жыл бұрын
awesome video, thanks for sharing! all of your videos have great production quality and are really informative. you deserve way more subscribers!
@universaltoons
@universaltoons Жыл бұрын
Hello, Do you know if it is possible to inject a WebView (or any other type of GUI) inside the Frida script so the user of the modified version will be able to change values of hooked functions when the APK is built using Objection?
@sudoalex
@sudoalex Жыл бұрын
Underrated video 🎉
@PixelHamster
@PixelHamster Жыл бұрын
Thanks these videos were incredibly helpful
@duythanhvu836
@duythanhvu836 14 күн бұрын
thanks for the video. one trick I learned: in recent version of jadx-gui you can generate frida code by placing the cursor on a function/field of a class and hit F.
@憂鬱な冒険家
@憂鬱な冒険家 Жыл бұрын
cool vid! can this be used for windows java applications/games to hook interpreted/compiled methods as well from a c++ dll? (using frida C api)
@brunoaduarte
@brunoaduarte 7 ай бұрын
Hi Laurie! Can you demonstrate when and how to hook the native libraries by the enumerated export addresses you showed at 8:25 ? Love your content! Thanks!
@ameera999
@ameera999 13 күн бұрын
This girl is genius
@trifalgarh
@trifalgarh Жыл бұрын
Which emulator are you using? Is it Android Studio AVD or is it something else?
@rokis2011
@rokis2011 10 ай бұрын
thanks for explaining, good vids. Keep up
@itshoitshoify
@itshoitshoify Жыл бұрын
Great content. Thank you! 👍🏻
@katonurlap
@katonurlap Жыл бұрын
Love your vids :3
@Pixalynx
@Pixalynx Жыл бұрын
What are those LED lights you have in the background, the ones that change different hues of pink, I want to buy them haha
@Me.n_n
@Me.n_n Жыл бұрын
Great ❤,,more videos like this 😊
@pavankrishna-v7g
@pavankrishna-v7g 11 ай бұрын
Hi laurie, thanks for the video. enumerateExports is not working(Showing an empty array) in my version frida 16.1.10, but it is showing results in your version 16.0.19,, any reason laurie behind this. the same code is not working for me in same 16.0.19 as well.
@hollowgroundxX
@hollowgroundxX 7 ай бұрын
Your reverse engineering videos are very informative. Ty 🙏
@paulabrudan7896
@paulabrudan7896 Жыл бұрын
Couldnt you just hook the constructor?
@lauriewired
@lauriewired Жыл бұрын
Sure thing! You could hook many different functions and get similar results. Just preference by situation :)
@brunoaduarte
@brunoaduarte 7 ай бұрын
And what if a native library is loaded in "stealth mode", I mean, it doesn't show as an enumerated module. But I can see it loaded in memory, how can I attach to it?
@swaren180
@swaren180 3 ай бұрын
I am not an expert - I have an application on my phone, and there is a file containing settings for the application, and I import the file into the application..... I want to use hook to extract those settings... How do I do that? Give me a simple example😭
@user-ex9ip7zw9e
@user-ex9ip7zw9e 11 ай бұрын
could you help me analyzing an app,it is very difficult
@Sj-ze5wk
@Sj-ze5wk Жыл бұрын
Can u do ida native so debugging? I always get sig errors
@tientoan8157
@tientoan8157 Жыл бұрын
Can you give me link of your wallpaper? It's very cool
@tadasturonis
@tadasturonis Жыл бұрын
I think you slightly misplaced the mayo
@0xPanda1
@0xPanda1 8 ай бұрын
Thank u very informative
@mahdivazhir1834
@mahdivazhir1834 9 ай бұрын
Very good thanks
@Mbro-dq2do
@Mbro-dq2do 4 ай бұрын
Laurie should be a model on top of this. Very talented
@erilycus
@erilycus 8 ай бұрын
Love❤
@WorldTimeLineChannel1
@WorldTimeLineChannel1 9 ай бұрын
Great video Laurie. You are a really bright, smart, beautiful girl. Great stuff.
@2024paradigmshift
@2024paradigmshift 3 ай бұрын
I think being tech savvy is so last year
@BedrijvigeBij
@BedrijvigeBij 7 ай бұрын
Smart and beautiful
@2024paradigmshift
@2024paradigmshift 3 ай бұрын
At least it's not an IBM server written in Apache
@DebbieMarieClassics
@DebbieMarieClassics Жыл бұрын
i really like your hair in this video. That's the most technical thing i can say.
@Giurigi123
@Giurigi123 9 ай бұрын
i dont understand anything this girl is just looking goood
@MrAnhell
@MrAnhell Жыл бұрын
Brains and Beauty plus easy to understand.
@Vasant8300
@Vasant8300 2 ай бұрын
wtf is frida and what is use of this??
@moviesynopsis001
@moviesynopsis001 10 ай бұрын
More like Laurie Hired!
@2024paradigmshift
@2024paradigmshift 3 ай бұрын
And don't get me started on Chromebooks
@gabrielmottadev
@gabrielmottadev 4 ай бұрын
I really tried to pay attention, but the eyes... catchs my soul Im sorry 😔
@EugeneM
@EugeneM Жыл бұрын
Such approach works for some scenarios with very simple Android apps. In serious software this hooking gives us nothing as all of the hidden and secured app logic is implemented in native obfuscated code. Android app loads a native lib, then this lib opens some socket and communicates with Android app via that socket using encrypted strings. And when you want to change how native code works the only thing you can do is trying to trace and debug native lib via IDA. And this approach is much more complicated without any guarantee of success.
@lauriewired
@lauriewired Жыл бұрын
Are you saying that native hooking never helps for real apps? Hard disagree. It won't work for certain apps, but it's super useful in a lot of real-world situations. For example, if you are trying to get by some native anti-emulation.
@still_alive02
@still_alive02 6 ай бұрын
static disassembler like ida wont give much btw, needs to take backtrace by frida, if app have antidebugger you have to hook system calls and trace libc, for example hook functions that looks in proc/self/status
@Shinika01
@Shinika01 5 ай бұрын
of course for advanced malware the approach wouldn't be "that easy"... Don't forget that this video is merely educative to help people understand and progress.
@wrathofainz
@wrathofainz 6 ай бұрын
Nerdy girls exist: confirmed. Now how to meet them... I'll bookmark this video as part of my research to crack apks. I've been poking one unity game with the intention of removing vendor-lock. The game doesn't work unless installed from (or spoofed) the Google play store. It also has some sort of signature check apart from the usual one. Bother.
@diogocardoso1479
@diogocardoso1479 5 ай бұрын
...Are you married? hahahaha. Taking the joke away, Congratulations on the video, very good indeed!!! +1Subscribed
@2024paradigmshift
@2024paradigmshift 3 ай бұрын
I just collect books now I hate most computers ..... especially Fujitsu and Seimens
@rvft
@rvft Ай бұрын
wtf is this an ai?
@ayushmauryars
@ayushmauryars 9 ай бұрын
Will you become my friend 😢 pleasee
@AI__VOICE
@AI__VOICE Жыл бұрын
Hey you very attractive 😅 i loos my focus 😂😂😂 of the video topic 😂😂
@gxbytes
@gxbytes Жыл бұрын
me also
@throwawaythrowawayson1983
@throwawaythrowawayson1983 Жыл бұрын
@@gxbytes bro don't be thirsting over her. she's a professional. this is a tech video, not a thirst trap. take it seriously.
@throwawaythrowawayson1983
@throwawaythrowawayson1983 Жыл бұрын
you too hacker_07. don't be cringe.
@kingmarwat
@kingmarwat Жыл бұрын
Amazing...... but video is tool long . It can be done in 5 minutes... In your next video, be to the point
@darren_na-18
@darren_na-18 3 ай бұрын
Great video 💪🏽Thanks!
Hooking Java Methods with Frida
29:04
LaurieWired
Рет қаралды 20 М.
Frida Hooking Tutorial - Android Game Hacking
16:10
Guided Hacking
Рет қаралды 37 М.
How to Edit Scanned PDF Documents for FREE | OCR PDF Easily | Effortless Way
4:50
Deciphering Obfuscated JavaScript Malware
31:12
LaurieWired
Рет қаралды 84 М.
What ACTUALLY happens during a Stack Overflow?
12:43
LaurieWired
Рет қаралды 150 М.
Reverse Engineering 101: How to Dissect and Master Any Platform
18:21
Предел развития НЕЙРОСЕТЕЙ
18:53
Onigiri
Рет қаралды 167 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 952 М.
Hacking Android Apps with Frida
25:27
sambal0x
Рет қаралды 70 М.
Secure TailsOS Setup For The Average Dark Web Enjoyer
18:00
Mental Outlaw
Рет қаралды 162 М.