Skip to content

Commit 5ff548c

Browse files
committedMay 15, 2024
WIP: log various proc inject steps
1 parent 482d6ed commit 5ff548c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,17 @@ export class FridaSession {
190190
*/
191191
async injectIntoProcess(pid: number, fridaScript: string) {
192192
const hostSession = await this.getHostSession();
193+
console.log('got host session');
193194

194195
const [sessionId] = await hostSession.Attach(pid, {});
196+
console.log('attached');
195197
const agentSession = await this.getAgentSession(sessionId);
198+
console.log('got agent session');
196199

197200
const script = await agentSession.createScript(fridaScript, {});
201+
console.log('created script');
198202
await script.loadScript();
203+
console.log('loaded script');
199204

200205
return {
201206
session: agentSession,

0 commit comments

Comments
 (0)