Posts

Post marked as solved
9 Replies
For anyone stumbling upon this question, I've found what I believe to be the answer. In the NEFilterDataProvider class, there is a method : @available(macOS 10.15.4, *)   open func update(_ flow: NEFilterSocketFlow, using verdict: NEFilterDataVerdict, for direction: NETrafficDirection) In an initial test demo, this appeared to be what I'm looking for. NEFilterFlow objects from handleNewFlow can be cached and this update method can be used to change a verdict at a later date. No idea when this method was added to the system extension framework SDK as it definitely didn't exist when this problem initially arose. Few other comments: it appears that trying to update a flow thats finished doesn't seem to cause harm I believe all flow operations take place on the extensions main dispatchqueue. If the new flow object doesn't contain the full 5 tuple information, peeking 1 byte will allow the information to become available in the cached NEFilterSocketFlow object.
Post marked as solved
9 Replies
I've found that completely uninstalling and reinstalling the system extension allows us to provide a flow verdict for existing connections. This is most likely because when installing a new system extension is temporarily causes network outage and requires all existing connections to attempt to reconnect. So in this case "existing" is a misnomer. Uninstalling and re-installing is a no-go since it causes UI popups. In my testing, it seems to only way to provide a verdict for existing connections is to force all existing connections to re-connect by forcing a network outage, thereby allowing us to place a verdict on these "new" connections. Please can you confirm there is no better approach for allowing an NEFilter to provide a verdict on existing connections, when these connects are going down a VPN tunnel ?
Post marked as solved
4 Replies
Has this been resolved yet ? I'm experiencing the same problem. It seems completely broken
Post marked as solved
9 Replies
The concern here is stopping a potentially malicious connection after its already started, one may have to analyze part of the connection before determining whether or not to stop it. This can be done in part by deferring the verdict by a certain number of bytes. But this isn't ideal for potentially long connections that stay open for a time before starting to act suspiciously. Additionally: Please look at https://developer.apple.com/forums/thread/132992
Post not yet marked as solved
7 Replies
Apple Engineer, please respond. How can I uninstall a system extension via the command line ? Uninstalling the parent app via the normal method, leaves the system extension lying around, then theres no way to get rid of it!
Post marked as solved
9 Replies
I've tested this with my product started both before and after the tunnel is created by the thirdparty VPN and the results are the same in both cases. You only see the start of a connection and so you can't filter existing connections. Is there any other way to filter traffic through tunnels ? If not, this is a major security flaw and should be addressed in a future update.
Post marked as solved
9 Replies
Hi Matt, thank you for replying however I believe there is a misunderstanding here. I don't have NEPacketTunnelProvider, I only have a NEFilterDataProvider and NEFilterPacketProvider. The tunnel interface that I speak of is created by third party software which is a VPN client. I create a security product which must be able to filter the traffic on this interface. I would like to monitor, and filter the traffic coming through this, already existing, tunnel interface. I only see flows at the beginning of a connection. I never see packets through NEFilterPacketProvider. I would like the ability to stop connection at any point in this tunnel, which is currently not possible because we can only provide a verdict at the beginning of the flow. Best Regards, Rob
Post marked as solved
9 Replies
Alternatively if its not possible to monitor tunnel traffic via PacketProvider, how to do stop tunnel connections in the middle of a flow ?
Post not yet marked as solved
3 Replies
Thank you for your response Matt. Apologies I believe my question may have caused confusion. What happens if the verdict I give in my extension (that contains 2 providers that will give the same answer) disagrees with another third party system extension that's installed on the machine by a different application ?
Post not yet marked as solved
1 Replies
Please respond, I've tried many different combinations of multiroute and videoRecording. I've found that multiroute forces all sound through the loud speaker unless allowBluetooth (and A2DP) is enabled, but then my audiosession is interrupted even if .mixwithothers is used. Is there a way of using AudioUnit with the output channel set as loud speaker without effecting music played through a bluetooth headset from other apps ? Searching for examples of how to use multiple channels I can only find these, which are incomplete, do you know of a better example ? https://stackoverflow.com/questions/21832733/how-to-use-avaudiosessioncategorymultiroute-on-iphone-device https://developer.apple.com/forums/thread/15416
Post not yet marked as solved
1 Replies
This is still a problem for me. Please can someone answer this
Post not yet marked as solved
3 Replies
Output from spctl -a -t install -vv [PKG_PATH]: rejected source=Unnotarized Developer ID origin=Developer ID Installer: ____ (XXXXX) Output from spctl -a -t install -vv [APP_PATH] after force installing accepted source=Notarized Developer ID origin=Developer ID Application: _____ (XXXXX) So I take it from this that the package needs to be notarized as well as the app itself ? FYI I see there are a few threads about this with no solution https://developer.apple.com/forums/thread/123480 or https://developer.apple.com/forums/thread/130237
Post not yet marked as solved
7 Replies
On this note - why does the system extension not get removed from `systemextensionsctl list` After you've removed it ?instead you see multiple rows with your extension all saying "[terminated waiting to uninstall on reboot]" yet they persist after rebooting and never disappear.Surely its possible to properly remove these extensions.
Post marked as solved
10 Replies
Surely this cant be the only answer! - If you have a zombie extension running on a laptop and you can't get to that laptop to disable SIP ( you have to remove it remotely or via a script - is there no way of uninstalling this currently ?