Questions tagged [android]
Android is Google's Linux-based operating system for mobile devices. Initially developed by Android, Inc., Android is the world's most widely used smartphone platform.
419 questions
0
votes
0
answers
24
views
How can an Android app persist login details outside of /data/data/package.name?
I'm currently analyzing a malware that mimics a legitimate social network application. The malware phishes users to log into their real accounts, and then it stores their real cookies somewhere.
I'm ...
0
votes
0
answers
45
views
Applying right offsets of Android Native Code in Ghidra
I'm reverse engineering x86_64 native code library that's loaded by an application.
I use Ghidra to get the following decompiled code and I'm trying to make sense of the function calls and different ...
0
votes
0
answers
97
views
Change default Chinese fonts into Kaiti in Android: What and where to add or replace?
I have been dreaming to change the fonts within my favorite Chinese learning app to be changed into Kaiti, since it's the best font for Chinese characters to learn. (It's like comparing TeX with .docx ...
1
vote
1
answer
58
views
How to find what app is doing when I press a certain button in the unpacked APK
I will first try to explain what I am trying to accomplish, and then relate that to the question.
There is a certain Android app in which you are able to 'plan a trip' (set a start and end point) and ...
-2
votes
1
answer
117
views
Ollvm deobfuscation
I am looking for efficient way to deobfuscate ollvm covered .so Android native lib. I was able to recover computed jumps (by manual patching), however I am struggling to recover control flow graph. Is ...
0
votes
0
answers
37
views
Is there any to know how an android app collects or track device data?
I tried textme app to take trial in emulator. It gave trial few days in Ldplayer. But after few days it didnt show any trial option. I tried in another emulator it worked again for few days. Somehow ...
0
votes
0
answers
28
views
Retrieve the address of a peer to peer video stream from cheap WiFi camera drone
I recently picked up a Chinese WiFi drone from which I recovered the electronic modules.
I would like to use the module allowing video transmission via Wifi for other projects. So I first tried with ...
0
votes
0
answers
19
views
JSON mapping with obfuscated property names
I'm building a replacement server for the 2013 Android-based PlayJam GameStick micro console and implemented the server-side leaderboard APIs.
One game crashes when retrieving the leaderboard data, ...
0
votes
0
answers
25
views
Use frida to hook method that signs JWTs in Android app
I have an app that signs the JWTs going to the server. The JWTs contain a timestamp and are created dynamically. So they need to be signed by the app.
The app is a flutter app and according to pubspec....
0
votes
0
answers
69
views
Extracting music from APK file NOT working
just trying to extract music from a game called Mini TD 2.
I extracted the folder using apktool and searched for the terms: mp3, ogg, wav, music, media, song and I didn't find any music files used in ...
0
votes
0
answers
23
views
How to find the native library for a specific native method in android Java code?
I am having a function in an apk that looks like this:
I want to find the .so file that contains executable code for this function.
What I tried:
I tried looking for calls to System.loadlibrary() in ...
0
votes
1
answer
80
views
Restoring the file structure from a cocos2d-x JS Android APK, post decryption?
I am currently learning how to reverse engineer an APK and have made significant progress. Here’s what I've accomplished so far:
Decryption & Code Browsing: Converted the Dalvik bytecode (.dex ...
1
vote
1
answer
51
views
Dynamic analysis of Android applications' interaction
There are two or even more Android applications that somehow interact with each other:
Application A invokes application B or sends request to it directly or via third application C. I don't have the ...
1
vote
0
answers
50
views
Reverse engineer obfuscated Android SDK files (DJI Mobile SDK)
For a hobby project, I would like to be able to control the DJI Mini 3 drone with my PC. Ideally, I would love if I were able to just use the DJI Tello, but it does not have a long enough battery ...
1
vote
2
answers
98
views
How to find what are all the third party apps used in an android app manually by decompiling an apk
How to find all the Third Party Libraries (TPLs) used in an android app after de-compiling apk using jadx? I have looked at this answer but this is too vague.
I can use tools such as Libradar etc. but ...