Skip to content

Commit 94499cc

Browse files
committedMay 31, 2024
Defer injected scriptis to nextTick, so you can listen for sync errors
1 parent dcd9a90 commit 94499cc

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed
 

‎src/index.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,10 @@ export class FridaSession {
195195
const agentSession = await this.getAgentSession(sessionId);
196196

197197
const script = await agentSession.createScript(fridaScript, {});
198-
await script.loadScript();
198+
199+
setTimeout(async () => {
200+
await script.loadScript();
201+
}, 0);
199202

200203
return {
201204
session: agentSession,
@@ -233,9 +236,12 @@ export class FridaSession {
233236
const agentSession = await this.getAgentSession(sessionId);
234237

235238
const script = await agentSession.createScript(fridaScript, {});
236-
await script.loadScript();
237239

238-
await hostSession.Resume(pid);
240+
setTimeout(async () => {
241+
await script.loadScript();
242+
await hostSession.Resume(pid);
243+
}, 0);
244+
239245
return {
240246
pid,
241247
session: agentSession,

‎test/test.spec.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe("Frida-JS", () => {
120120
path.join(FIXTURES_BASE, `serve-${process.platform}-${process.arch}`),
121121
[],
122122
// Run an example script that always crashes:
123-
"setTimeout(() => { throw new Error('Intentional script failure error'); }, 100);"
123+
"throw new Error('Intentional script failure error');"
124124
);
125125
const messages: any[] = [];
126126
session.onMessage((msg) => messages.push(msg));
@@ -134,9 +134,7 @@ describe("Frida-JS", () => {
134134
type: 'error',
135135
description: 'Error: Intentional script failure error',
136136
stack: 'Error: Intentional script failure error\n' +
137-
' at <anonymous> (/script1.js:1)\n' +
138-
' at apply (native)\n' +
139-
' at <anonymous> (frida/runtime/core.js:51)',
137+
' at <eval> (/script1.js:1)',
140138
fileName: '/script1.js',
141139
lineNumber: 1,
142140
columnNumber: 1

0 commit comments

Comments
 (0)