frida-core
frida-core copied to clipboard
Frida fails to attach to go/golang programs
IRC logs: 1:15 PM <Brandon15811__> oleavr: I can't seem to attach to a golang program: I used "frida-trace -i "open" hello-world" and got the error: "Failed to attach: unexpected error while attaching to process with pid 14075 (PTRACE_ATTACH wait returned 'Success')" Program used:
package main
import "fmt"
import "time"
func main() {
time.Sleep(time.Second * 10);
fmt.Println("hello world")
}
1:15 PM