Is it possible to reverse engineer applications in React Native?

Asked

Viewed 424 times

2

I’m working on my TCC and I’m researching reverse engineering, and as I work with React, I was wondering if it’s possible I have an APK get the javascript code from it.

I know that using apktool and d2j-dex2jar I can get the java code and I can see that APK is using React Nenable if I find the folder /with/facebook/React/, but wanted to know if it is possible to find the JS code.

1 answer

0

The JS code is embedded in the APK as an Asset.

Simply unzip the APK** and you will find the file index.android.bundle in the briefcase assets. The archive index.android.bundle is the JS file that contains your code.

** APK is a zip file. To unzip just use a program that does unzip

Browser other questions tagged

You are not signed in. Login or sign up in order to post.