From 7a036bdfb159ad73bb208647555e2c632760e743 Mon Sep 17 00:00:00 2001 From: hluwa Date: Mon, 16 Aug 2021 10:55:11 +0800 Subject: [PATCH 3/8] strongR-frida: pipe_linjector --- src/linux/frida-helper-backend-glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linux/frida-helper-backend-glue.c b/src/linux/frida-helper-backend-glue.c index b99963a1..3a8dbfa2 100644 --- a/src/linux/frida-helper-backend-glue.c +++ b/src/linux/frida-helper-backend-glue.c @@ -947,7 +947,7 @@ frida_inject_instance_init_fifo (FridaInjectInstance * self) { const int mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; - self->fifo_path = g_strdup_printf ("%s/linjector-%u", self->temp_path, self->id); + self->fifo_path = g_strdup_printf ("%s/%p%u", self->temp_path, self ,self->id); mkfifo (self->fifo_path, mode); chmod (self->fifo_path, mode); -- 2.30.2