We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 482d6ed commit 5ff548cCopy full SHA for 5ff548c
src/index.ts
@@ -190,12 +190,17 @@ export class FridaSession {
190
*/
191
async injectIntoProcess(pid: number, fridaScript: string) {
192
const hostSession = await this.getHostSession();
193
+ console.log('got host session');
194
195
const [sessionId] = await hostSession.Attach(pid, {});
196
+ console.log('attached');
197
const agentSession = await this.getAgentSession(sessionId);
198
+ console.log('got agent session');
199
200
const script = await agentSession.createScript(fridaScript, {});
201
+ console.log('created script');
202
await script.loadScript();
203
+ console.log('loaded script');
204
205
return {
206
session: agentSession,
0 commit comments