From 37c229e19f549669968ecc11d95c0d2df929d07c Mon Sep 17 00:00:00 2001 From: sammyjeng Date: Tue, 4 Apr 2023 14:32:14 +0530 Subject: [PATCH] fixed a syntax error in mono-module.js --- vendors/frida-mono-api/mono-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendors/frida-mono-api/mono-module.js b/vendors/frida-mono-api/mono-module.js index 3ea2228..b56135b 100644 --- a/vendors/frida-mono-api/mono-module.js +++ b/vendors/frida-mono-api/mono-module.js @@ -5,7 +5,7 @@ let monoModule = null; // Look for a known runtime module. for (let x in KNOWN_RUNTIMES) { - let foundModule = Process.findModuleByName(x); + let foundModule = Process.findModuleByName(KNOWN_RUNTIMES[x]); if (foundModule) { monoModule = foundModule; break;