This commit is contained in:
Karmaz95
2024-12-15 22:55:06 +01:00
parent 63971e56bc
commit 9a58e93e3c
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ int main(int argc, char *argv[]) {
// Get bootstrap port for service lookup
mach_port_t port;
kern_return_t kr = bootstrap_look_up(bootstrap_port,
"xyz.hacktricks.mig",
"com.crimson.message_service",
&port);
if (kr != KERN_SUCCESS) {
printf("Service not found\n");

View File

@@ -26,7 +26,7 @@ int main() {
kern_return_t kr;
// Register our service with the bootstrap server
kr = bootstrap_check_in(bootstrap_port, "xyz.hacktricks.mig", &port);
kr = bootstrap_check_in(bootstrap_port, "com.crimson.message_service", &port);
if (kr != KERN_SUCCESS) {
printf("bootstrap_check_in() failed with code 0x%x\n", kr);
return 1;