You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the launcher with an app right after it's built works fine:
$ go build -o app
$ ./launcher app
2023/03/23 14:37:22 Shellcode Length: 46
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .debug_line
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .debug_gdb_scripts
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .debug_info
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .debug_ranges
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .symtab
2023/03/23 14:37:22 Overlapping Sections in Generated Elf: .strtab
2023/03/23 14:37:22 Start section header table at: 84edb0
^C
But if I stop the launcher and try to run it again with the same app I get the following error:
$ ./launcher app
2023/03/23 14:37:34 Shellcode Length: 46
2023/03/23 14:37:34 Error: unknown compression type 'COMPRESS_ZLIB+50401537' in record at byte 0x48c000
The only way I've found around this was to delete the app and recompile it:
Running the launcher with an app right after it's built works fine:
But if I stop the launcher and try to run it again with the same app I get the following error:
The only way I've found around this was to delete the app and recompile it:
Is there something I'm doing wrong?
The text was updated successfully, but these errors were encountered: