Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android frida-server typo #317

Closed
connorpmullins-abridge opened this issue Jan 22, 2025 · 0 comments · Fixed by #319
Closed

Android frida-server typo #317

connorpmullins-abridge opened this issue Jan 22, 2025 · 0 comments · Fixed by #319

Comments

@connorpmullins-abridge
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

frida-server is just misspelled

Here is the diff that solved my problem:

diff --git a/node_modules/jail-monkey/android/src/main/java/com/gantix/JailMonkey/HookDetection/HookDetectionCheck.java b/node_modules/jail-monkey/android/src/main/java/com/gantix/JailMonkey/HookDetection/HookDetectionCheck.java
index c59ada1..b0c4d36 100644
--- a/node_modules/jail-monkey/android/src/main/java/com/gantix/JailMonkey/HookDetection/HookDetectionCheck.java
+++ b/node_modules/jail-monkey/android/src/main/java/com/gantix/JailMonkey/HookDetection/HookDetectionCheck.java
@@ -97,7 +97,7 @@ public class HookDetectionCheck {
 
         if (runningServices != null) {
             for (int i = 0; i < runningServices.size(); ++i) {
-                if (runningServices.get(i).process.contains("fridaserver")) {
+                if (runningServices.get(i).process.contains("frida-server")) {
                     return true;
                 }
             }

This issue body was partially generated by patch-package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant