Skip to content

Commit

Permalink
Merge pull request #319 from GantMan/317-android-frida-server-typo
Browse files Browse the repository at this point in the history
fix: add detection of frida-server process name
  • Loading branch information
kmye authored Jan 27, 2025
2 parents e14003a + 8ce4a26 commit 6cd3504
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private static boolean checkFrida(Context context) {

if (runningServices != null) {
for (int i = 0; i < runningServices.size(); ++i) {
if (runningServices.get(i).process.contains("fridaserver")) {
if (runningServices.get(i).process.contains("fridaserver") || runningServices.get(i).process.contains("frida-server")) {
return true;
}
}
Expand Down

0 comments on commit 6cd3504

Please sign in to comment.