Hi, I want some advice on how to handle the OSSystemExtensionRequest.Result.willCompleteAfterReboot on my app.
I have noticed that on some users macs when they update and the new System Extension is loaded the old one is deactivated and the new one is activated but does not start. I will only start after a reboot.
Is there a way to avoid this so I don't have to force dozens of users in my organization to reboot after every update to my system extension?
When i execute the command to list the extensions this is what I see. The new one is activated but it does not boot.
--- com.apple.system_extension.network_extension
enabled active teamID bundleID (version) name [state]
1231231231 com.organization.app.MyApp (2.0/1) MyApp [terminated waiting to uninstall on reboot]
* * 1231231231 com.organization.app.MyApp (2.1/1) MyApp [activated enabled]
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi how could I tell in my OSSystemExtensionRequestDelegate if the request I receive is either an activation request or a deactivation one.
func request(_ request: OSSystemExtensionRequest, didFinishWithResult result: OSSystemExtensionRequest.Result) {
guard result == .completed else {
return
}
// Take different actions depending on activation/deactivation
}
Hi, how could I get the command line arguments of a process given its audit token.
My app is a Content Filter Network Extension written in swift. I can obtain the audit token from NEFilterFlow but I can't figure out how to get the process arguments, I was able to get the pid from the audit token using audit_token_to_pid.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Swift
Network Extension
Inter-process communication
Hi, I want to get all domain names that my mac queries. I think that NEDNSProxyProvider might be useful but I don't want to handle the flows and redirect them I only want the domain names for logging purposes. Can this be done?
Hi, i was wondering about the remoteHostname property of NEFilterSocketFlow that is available on macOS 11.0+. I have been doing some tests and I can never seem to get a value, it is always nil. I am looking at all flows from all apps. In what cases will this property show up?
Hi, I was wondering if it was possible to intercept requests of any app running on my mac and modify the headers or even add new ones. Can this be achieved using NEAppProxyProvider or the new NETransparentProxyProvider. Also, what is the difference between those two classes?