I want to bypass root detection, certificate pinning, and a crc integrity check for an android app using Frida. I can't run more than 1 script at once, is there any solution?
How can I let multiple Java scripts to run concurrently in Frida?
6.6k Views Asked by raghad At
2
There are 2 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in PENETRATION-TESTING
- DVWA database connection is not working
- Penetration testing - It is recommended that access to this portal is prevented via the Internet
- Difference between Dynamic Code Analysis and Penetration Testing?
- Use App Scripts to open form and make a selection
- Nessus No host data is available for this scan error
- Using USB security dongle of an appliance in VM machine
- Enable stack canaries in ios swift
- How to receive SQL syntax error using SQL injection?
- Programming/Hacking
- how to ping guest xp from host ubuntu in virtualbox?
- wireshark i want to sniff on local ip
- AWS ALB Host Header Attack
- How to mount /system or / in a rooted device
- IBM AppScan identified a password parameter that was received in the query string meaning
- OWASP Zap scan option is grayed-out for multi-selected URLs
Related Questions in FRIDA
- Frida not hooking function in private process
- What does it mean, when SSL_get_fd returns -1?
- Frida server not enough privileges
- Is there a way to use Frida or any other tool to invoke a method in an IOS application with your own argument?
- How to delete a file in Objection (Frida on Android)?
- How to dynamically dump dex using frida in Android 12
- Failed to spawn: unexpectedly timed out while waiting for signal from process with PID
- frida:no response after hook
- frida:hook a function but no response
- Android Frida ProcessNotFoundError error when trying to attach to a process
- Frida is it possible to change enum values
- How to redirect where an app read/save its file?
- How to start a Frida server from cmd?
- How can I display function calls of an Android application using Frid?
- Android : Failed to attach: unable to connect to remote frida-server: closed
Related Questions in PENETRATION-TOOLS
- How to mount /system or / in a rooted device
- OWASP Zap scan option is grayed-out for multi-selected URLs
- SQLMAP - POST parameter 'password' does not seem to be injectable
- gobuster fills screen with html code and blanks
- Testing of Web Security
- Is Python or Ruby good for penetration testing?
- How can I highlight text in Mitmproxy?
- Owasp Zap and Amazon
- Trying to exploit SQL injection
- How do I filter/fix nmap NSE http-enum?
- How to set a BeEF hook to a page
- Burp Suite Logger++ Extension Show Only in-Scope items
- Web applications to use burp suite on
- How can I let multiple Java scripts to run concurrently in Frida?
- Why it's not showing render html in zap attack proxy (zap)?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Concatenate all scripts into one file and load is the trivial (and probably good enough) answer.
I have another suggestion that you can do even without a computer, just put text editor on your device and get a bluetooth keyboard.
frida-injectwhich can be downloaded from frida release pagePush
frida-inject& the scripts to the device and execute the following that iterates scripts , inject them to the process and exists.for f in $(ls /sdcard/scripts/*js) do; ./frida-inject -p $(pidof com.app.name) -s $f --eternalizefrida-inject options