When you screen-share on Zoom, Teams, Meet, or Webex, those apps call BitBlt (Windows) or CGWindowListCopyWindowInfo (macOS) to capture the screen. Apple and Microsoft both ship documented APIs to exclude specific windows from those calls — used by 1Password to hide passwords, by Netflix to enforce DRM, by Apple Pay to hide card details from screen recording.
Mirly uses those APIs. The interviewer never sees the overlay. We do not run a kernel extension, do not hook system calls, do not do anything that would break with the next OS update.
macOSNSWindow.sharingType = .none
WindowsSetWindowDisplayAffinity(hWnd, WDA_EXCLUDEFROMCAPTURE)