We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3906e commit c130570Copy full SHA for c130570
src/interceptors/frida/frida-scripts.ts
@@ -14,7 +14,7 @@ function buildFridaConfig(
14
return configScriptTemplate
15
.replace(/(?<=const CERT_PEM = `)[^`]+(?=`)/s, caCertContent.trim())
16
.replace(/(?<=const PROXY_HOST = ')[^']+(?=')/, proxyHost)
17
- .replace(/(?<=const PROXY_PORT = ')\d+(?=;)/, proxyPort.toString());
+ .replace(/(?<=const PROXY_PORT = )\d+(?=;)/, proxyPort.toString());
18
}
19
20
export async function buildAndroidFridaScript(
0 commit comments