Skip to content

macOS FUSE-T build: FUSE service and go-nfsv4 are never terminated on dismount; leftovers hijack the next mount through the shared Bonjour name "fuse-t" #1879

Description

@bestmgmt

Summary

On macOS, VeraCrypt 1.26.29 (FUSE-T build) leaves two processes behind after every dismount: the FUSE service that serves the decrypted image (a fork of VeraCrypt running fuse_main) and FUSE-T's SMB server go-nfsv4. DismountVolume detaches the disk image and unmounts the auxiliary share, but never asks either process to exit, and the FUSE service ignores SIGTERM by design. This is the process leak reported in #1845 and the reason for the post-dismount access in #1779.

This report adds the part that turns the leak into a user-visible failure. Every go-nfsv4 instance advertises the same Bonjour service instance, fuse-t._smb._tcp.local, and the macOS SMB client mounts by that name. After a few mount and dismount cycles, several servers answer to the name and the next mount can be routed to a stale one. On this machine that ends in the Finder dialog

There was a problem connecting to the server "fuse-t". This file server will not allow any additional users to log on. Try to connect again later.

or in TimeOut at VeraCrypt::FuseService::Mount:727 (#1785), because the control file never appears in the new auxiliary mount. It also means a live mount can end up being served by a leftover of an earlier session, and that the same container can be attached twice, which is a data integrity problem, not only a confidentiality one. I lost roughly a fifth of the files in one container this way; the observed state is described below.

Three concrete findings for whoever fixes this:

  1. The exact code path that creates the leftovers, and why SIGTERM cannot end them (below, with line numbers from the 1.26.29 source).
  2. The cleanup recommended in macOS: core-service + fuse-t server processes persist after dismount (stale Bonjour/Finder entries); fuse-t backend hardcoded to SMB, FSKit unusable #1845, pkill -f 'VeraCrypt.*--core-service', does not reach the leftover of a file container. That process is a plain fork of the GUI and carries the GUI's argv, /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt, with no --core-service.
  3. PR macOS/FUSE-T: Terminate auxiliary FUSE service on dismount #1866 is the right shape but needs a SIGKILL fallback and must also end go-nfsv4, because on FUSE-T the server outlives its client. A separate guard against attaching one container twice is needed as well.

Environment

What the code does (1.26.29 source, line numbers from the release tarball)

  1. FuseService::Mount (src/Driver/Fuse/FuseService.cpp:675) forces -o backend=smb, -o nonamedattr and -o rwsize=262144 under VC_MACOSX_FUSET (line 691), runs Process::Execute("fuse", args, -1, &execFunctor) and then polls for the control file 51 times at 100 ms before throwing TimeOut (line 727).

  2. Process::Execute (src/Platform/Unix/Process.cpp:79) forks (line 107) and, when an ExecFunctor is supplied, calls it in the child instead of execvp (line 144). The child keeps the parent's argv. FuseService::ExecFunctor::operator() (FuseService.cpp:789) calls setsid() (line 844), forks the termination-signal helper (line 849) and ends in _exit(fuse_main(...)) (line 878). libfuse-t daemonises inside fuse_main (fuse_daemonize is present in libfuse-t-1.2.7.dylib), so the process that actually serves the volume is a grandchild that launchd adopts. Its command line in ps is therefore:

    • /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt for a file container, because the core service is a fork of the GUI without exec (CoreService::Start, src/Core/Unix/CoreService.cpp:485), and
    • VeraCrypt --core-service only for a device-backed volume, which needs the elevated core service (MountVolumeRequest::RequiresElevation, src/Core/Unix/CoreServiceRequest.cpp:257, and CoreService.cpp:554).
  3. fuse_service_init_common (FuseService.cpp:139 to 151) sets SIGINT, SIGQUIT and SIGTERM to SIG_IGN, with the comment "Termination signals are handled by a separate process to allow clean dismount on shutdown". The helper process that would handle them (FuseService::OnSignal, line 775) has its pid recorded nowhere, so nothing can signal it later.

  4. CoreMacOSX::DismountVolume (src/Core/Unix/MacOSX/CoreMacOSX.cpp:255 to 331) runs hdiutil detach (line 269), then umount -- <aux mount point> with retries (line 314), then deletes the directory (line 327) and returns. There is no shutdown request, no wait and no signal. VolumeInfo::Serialize (src/Volume/VolumeInfo.cpp) writes no pid into the control file, so the dismount side has nothing to target even if it wanted to.

  5. CoreUnix::MountVolume (src/Core/Unix/CoreUnix.cpp:1124 to 1160) selects the first .veracrypt_aux_mntN that is not in the mount table, deletes a stale directory of that name and recreates it. After a dismount the same _mnt1 is reused while the previous go-nfsv4 ... /private/tmp/.veracrypt_aux_mnt1 is still alive and still exporting the same share name.

  6. CoreUnix::GetMountedVolumes (CoreUnix.cpp:546) walks the mount table and keeps only mount points containing .veracrypt_aux_mnt (line 552). MountVolume refuses a container only when that list contains it (IsVolumeMounted, line 1056). A volume.dmg that is still attached after its share has gone is invisible to both, so the same container can be mounted a second time. Nothing at the file level prevents it either: Volume::Open asks for File::ShareNone, but the advisory lock behind it in File::Open (src/Platform/Unix/File.cpp) is compiled out under #if 0 // File locking is disabled to avoid remote filesystem locking issues, so a second FUSE service opens the same container read-write while the first still holds it.

The sample of a leftover service posted in #1845 on 11 August sits in fuse_session_loop_mt -> fuse_sem_wait: the session never ends because nothing ends it.

What FUSE-T does with a leftover (1.2.7 binaries and the public go-smb2 code)

  • libfuse-t launches /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/tmp/.veracrypt_aux_mntN.
  • go-nfsv4 listens on 127.0.0.1:<random port> and mounts //Guest@%s._smb._tcp.local/%s (format string in the 1.2.7 binary). The first %s is the location setting, default fuse-t. The macOS SMB client resolves that instance name through Bonjour to obtain the port; the client-side name is visible in the logs quoted in Finder hangs / FUSE-T SMB connection repeatedly closes and reconnects on macOS 26.6.2 macos-fuse-t/fuse-t#113 (Starting reconnect with fuse-t._smb._tcp.local).
  • The advertisement comes from go-smb2's bonjour.Advertise, which calls zeroconf.RegisterProxy(hostname, "_smb._tcp", ".local", port, svcName, ...) with both hostname and svcName set to the location. The library is grandcat/zeroconf v1.0.0: its probe() carries //TODO: implement a proper probing & conflict resolution, records are announced with TTL 3200 s, and a goodbye packet is only sent from Shutdown(), which the server only calls from its signal handler.
  • go-nfsv4 numbers concurrent instances (fuse-t, fuse-t-1, and so on) from what is mounted at the time, not from what is still advertised, so after a dismount the base name is handed out again while the leftover still holds it. N leftover servers and the new one then all claim fuse-t._smb._tcp.local, each with its own port, and which port the client receives is arbitrary. A leftover that was SIGKILLed sends no goodbye, so its record can stay in the resolver cache for up to 3200 s.

What the user sees

Why this needs a prompt fix: data integrity

Two consequences of the leak can damage a volume. Both follow from the code above; the second is what I found on the day I lost data.

  1. A live mount served by a leftover. When the client is routed to a leftover that exports the same share name, which is the normal case because _mnt1 is reused, the new mount is served by the previous session's FUSE process. VeraCrypt reads that process's control file, sees the same container path, attaches its volume.dmg, and the "new" volume is the old process's view of the container. From then on the process serving the live APFS volume is exactly the one that every workaround in macOS: core-service + fuse-t server processes persist after dismount (stale Bonjour/Finder entries); fuse-t backend hardcoded to SMB, FSKit unusable #1845 tells users to SIGKILL, and one that the next dismount will not clean either. If it dies while the APFS volume is mounted, the volume loses its backing device in the middle of a write.

  2. The same container attached twice. When the SMB session behind a mounted volume breaks and the kernel client gives up on the share, the auxiliary mount leaves the mount table, the disk image stays attached, the APFS volume stays in Finder as a dead volume that lists as empty, and VeraCrypt no longer regards the container as mounted (point 6 above). Mounting the container again is accepted, and a second APFS volume with the same name appears next to the first. That is exactly what Finder showed on the day of the loss: two volumes with the identical name from one container, one in use and one empty. The one in use turned out to have lost roughly 20 per cent of its files, which is what an APFS volume looks like when the writes of its previous session never reached the backing file. I cannot prove what broke the first session (the Mac had been through several sleep and wake cycles with the volume mounted, and Finder hangs / FUSE-T SMB connection repeatedly closes and reconnects on macOS 26.6.2 macos-fuse-t/fuse-t#113 shows the macOS 26.6 client dropping and reconnecting sessions to go-nfsv4), but every element of the chain is in the code, and the resulting state (an attached volume.dmg under .veracrypt_aux_mnt with no auxiliary mount behind it) is easy to observe with hdiutil info and mount.

The second road to the same state is macOS bookmarks, and it is the one the attached evidence shows. A sandboxed app keeps a folder the user chose as a security-scoped bookmark, and Preview's Open Recent list and UTM's VM list are bookmarks as well. A bookmark records how to bring its volume back, and macOS resolves it by mounting that volume unless the caller passes NSURLBookmarkResolutionWithoutMounting. For a volume of this build, "its volume" is volume.dmg on the SMB share of one particular server, so resolution means: connect to fuse-t-N._smb._tcp.local, mount the share under /Volumes/.veracrypt_aux_mntN, attach the image found there, mount the APFS volume. With a leftover server answering, that is the silent remount of #1779 and the Open Recent reproduction in #1845, and every resolution adds one more attachment of the same container. The evidence shows the same image attached from three places (T/.veracrypt_aux_mnt1, /Volumes/.veracrypt_aux_mnt1, /Volumes/.veracrypt_aux_mnt1-1), listed three times under one slot by --text --list, and three volumes with the same name in Finder. The trigger was a small App Store photo tool whose output folder I had chosen on the volume months earlier: opening it produced, in turn, a login prompt for the server fuse-t-4 while a leftover answered, the second and third copies of the container, and, once the leftovers were ended, "There was a problem connecting to the server fuse-t-4. The server may not exist or is unavailable". Removing the app ended it.

Reproduction

# 1. Mount a file container from the GUI, then dismount it from the GUI. Repeat three times.
# 2. Nothing is mounted now, yet the processes remain:
ps -axo pid,ppid,user,etime,command | grep -E 'go-nfsv4|VeraCrypt' | grep -v grep
mount | grep veracrypt_aux        # empty: VeraCrypt did unmount the share
hdiutil info | grep image-path    # no volume.dmg attached

# 3. Bonjour still answers to the name, once per leftover:
dns-sd -B _smb._tcp local.        # Ctrl-C after a few seconds
dns-sd -L fuse-t _smb._tcp local. # "can be reached at fuse-t.local.:<port>"
lsof -nP -a -c go-nfsv4 -iTCP -sTCP:LISTEN

# 4. Mount again: either the EUSERS dialog or "TimeOut at VeraCrypt::FuseService::Mount:727".
log show --last 10m --info --predicate 'eventMessage CONTAINS[c] "fuse-t"'

Expected after step 2: no go-nfsv4, no serving VeraCrypt process with ppid 1, no fuse-t Bonjour entry. Actual: one go-nfsv4 and two VeraCrypt processes (service and signal helper, both with ppid 1) per cycle, and fuse-t still advertised. A full listing from my machine is attached as evidence.txt.

The double attachment can be forced without waiting for a broken session: with a container mounted, umount -f its auxiliary mount, then mount the same container again from the GUI. VeraCrypt accepts the second mount and Finder shows two volumes with the same name.

Proposed fix

  1. Merge PR macOS/FUSE-T: Terminate auxiliary FUSE service on dismount #1866 (shutdown request written through the auxiliary filesystem, pid identity check, wait for exit). Two additions are needed for FUSE-T:

    • After WaitForDismount times out, send SIGKILL. SIGTERM is ignored by design and a wedged session never answers a write to /shutdown.
    • Terminate go-nfsv4 as well. On FUSE-T the server outlives its client. The service called setsid(), so killpg(pid, SIGKILL) reaches the server if it stayed in that process group; otherwise it is the process whose argv ends with the auxiliary mount point. Please verify which of the two holds with 1.2.7 before relying on killpg.
  2. If a smaller change is preferred: record getpid() in the control file from fuse_service_init_common, which runs in the daemonised process, and act on it in CoreMacOSX::DismountVolume after the umount loop succeeds. Sketch, untested:

// FuseService.cpp, fuse_service_init_common(), after the sigaction calls
{
    ScopeLock lock (OpenVolumeInfoMutex);
    OpenVolumeInfo.FuseServicePid = (uint64) getpid();
}

// CoreMacOSX.cpp, DismountVolume(), after the umount loop and before AuxMountPoint.Delete()
#ifdef VC_MACOSX_FUSET
if (mountedVolume->FuseServicePid > 0)
{
    pid_t pid = (pid_t) mountedVolume->FuseServicePid;
    killpg (pid, SIGKILL);   // go-nfsv4, if it shares the session created by setsid()
    kill (pid, SIGKILL);     // SIGTERM is SIG_IGN in the service by design
    for (int t = 0; t < 50 && kill (pid, 0) == 0; t++)
        Thread::Sleep (100);
}
#endif

FuseServicePid would be a new uint64 in VolumeInfo, serialised next to SerialInstanceNumber.

  1. Do not reuse an auxiliary index while a server for it is alive. Bonjour name uniqueness is FUSE-T's problem and is reported there (SMB backend: every go-nfsv4 advertises the same Bonjour name "fuse-t", so a stale server can answer a new mount; go-nfsv4 outlives its client and ignores SIGTERM macos-fuse-t/fuse-t#116), but VeraCrypt can avoid the identical-share-name case on its own by skipping any _mntN that still appears in a go-nfsv4 argv, or by using a random suffix.

  2. Guard against attaching one container twice, independently of FUSE-T. This matters even after PR macOS/FUSE-T: Terminate auxiliary FUSE service on dismount #1866: a bookmark resolved while a volume is legitimately mounted mounts the current session's share at /Volumes/.veracrypt_aux_mntN and attaches the image a second time, with no leftover involved. Before mounting, look at hdiutil info for an attached image whose path lies under a .veracrypt_aux_mnt* directory and refuse the mount (or offer to detach) when it belongs to the same container; after hdiutil detach in DismountVolume, verify that the device is gone before continuing. Re-enabling the F_SETLK write lock in File::Open for containers on local filesystems would catch the same case at the lowest level; the remote-filesystem concern that led to #if 0 does not apply to a container on APFS. GetMountedVolumes could also report an attached image without an auxiliary mount as a broken volume rather than ignoring it, so that the GUI shows the user what is happening instead of an empty volume in Finder.

  3. Until a release ships: state in the macOS: core-service + fuse-t server processes persist after dismount (stale Bonjour/Finder entries); fuse-t backend hardcoded to SMB, FSKit unusable #1845 thread and in the release notes that the cleanup has to target go-nfsv4 processes whose argv contains .veracrypt_aux_mnt, and VeraCrypt-binary processes with ppid 1 that hold a container open, not --core-service, and that an attached volume.dmg without its share must be detached before the container is mounted again. I run a scoped script that does exactly that after every dismount and can share it if useful.

Control result on the NFS backend

Same Mac, VeraCrypt 1.26.24 (FUSE-T build), FUSE-T 1.2.6, so no backend=smb: after a dismount there is no go-nfsv4, no serving process and no auxiliary mount, and libfuse.log shows the session ending on its own ("session exit in read"). The leftover is specific to the SMB backend, where go-nfsv4 keeps running after its mount point is unmounted and the FUSE session therefore never ends. The stale bookmarks still try smb://fuse-t-N and now fail harmlessly.

Related

Attachments

  • evidence-2.txt, attached at the end of this issue: the full evidence (the block below is cut at 30,000 characters), with the placeholders corrected as described above. It supersedes the first upload, evidence.txt, which carried the placeholder errors.
  • collect-evidence-2.sh.txt: the collector that produced it.

Evidence (names redacted)

evidence.txt, collected with collect-evidence-2.sh on this Mac
(names redacted: USER, HOST, VOLUME-n, CONTAINER-n, SERVICE-n, IP-n are placeholders, consistent throughout; VeraCrypt's own .veracrypt_aux_mnt names, pids, ports and /dev/diskN are real. CONTAINER-8 is a file held only by the go-nfsv4 processes, not a container; the containers of the three mounted volumes are CONTAINER-5, -6 and -7.)
collect-evidence-2.sh  2026-09-16 17:56:22 -0400

== versions ==
ProductName:		macOS
ProductVersion:		26.7
BuildVersion:		25G229
arm64
VeraCrypt: 1.26.29 (FUSE-T build)
lrwxr-xr-x  1 root  wheel  54 Sep 15 09:40 /usr/local/bin/go-nfsv4 -> /Library/Application Support/fuse-t/bin/go-nfsv4-1.2.7
lrwxr-xr-x  1 root  wheel  21 Sep 15 09:40 /usr/local/lib/libfuse-t.dylib -> libfuse-t-1.2.7.dylib

/Library/Application Support/fuse-t/bin:
total 112816
lrwxr-xr-x  1 root  wheel        14 Sep 15 09:40 go-nfsv4 -> go-nfsv4-1.2.7
-rwxr-xr-x  1 root  wheel  18723296 Aug  5  2025 go-nfsv4-1.0.49
-rwxr-xr-x  1 root  wheel  18687584 Mar 15  2026 go-nfsv4-1.0.54
-rwxr-xr-x  1 root  wheel  20342560 Jun  3 08:11 go-nfsv4-1.2.7
org.fuse-t.1.0.49
org.fuse-t.fskit.1.2.7
org.fuse-t.1.0.54
org.fuse-t.core.1.2.7
org.fuse-t.1.0.47

== fuse-t.ini, active lines ==
[Default]

== per-user FUSE-T folder (~/.fuse-t, consulted by libfuse-t) ==
(none)

== /etc/hosts alias ==
10:127.0.0.1 fuse-t

== nsmb.conf ==
(none)

== volumes present ==
1
VOLUME-6
VOLUME-7
VOLUME-8
VOLUME-9
2
VOLUME-11
VOLUME-12
WD2

== processes: pid ppid user etime command ==
 1844     1 USER             01-02:58:06 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 1847  1844 USER             01-02:58:05 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 1866     1 USER             01-02:57:44 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 1867     1 USER             01-02:57:44 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt1
 1868     1 USER             01-02:57:44 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 1951     1 USER             01-02:57:20 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 1952     1 USER             01-02:57:20 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt2
 1953     1 USER             01-02:57:20 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 2013     1 USER             01-02:56:59 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
 2014     1 USER             01-02:56:59 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt3
 2015     1 USER             01-02:56:59 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
40711     1 USER                11:13:03 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
40712     1 USER                11:13:03 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt4
40713     1 USER                11:13:03 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
41796     1 root                11:00:56 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt --core-service
41867     1 USER                11:00:28 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
41868     1 USER                11:00:28 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt4
41869     1 USER                11:00:28 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
82674     1 USER                10:36:08 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
82675     1 USER                10:36:08 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt1
82676     1 USER                10:36:08 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
83204     1 USER                10:26:56 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt
83205     1 USER                10:26:56 /usr/local/bin/go-nfsv4 --namedattr=false --rwsize=262144 --dontbrowse=true --backend smb /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt1
83206     1 USER                10:26:56 /Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt

== mount table: aux, fuse-t, smbfs, nfs, /Volumes ==
/dev/disk3s6 on /System/Volumes/VM (apfs, local, noexec, journaled, noatime, nobrowse)
/dev/disk3s2 on /System/Volumes/Preboot (apfs, local, journaled, nobrowse)
/dev/disk3s4 on /System/Volumes/Update (apfs, local, journaled, nobrowse)
/dev/disk1s2 on /System/Volumes/xarts (apfs, local, noexec, journaled, noatime, nobrowse)
/dev/disk1s1 on /System/Volumes/iSCPreboot (apfs, local, journaled, nobrowse)
/dev/disk1s3 on /System/Volumes/Hardware (apfs, local, journaled, nobrowse)
/dev/disk3s5 on /System/Volumes/Data (apfs, local, journaled, nobrowse, protect, root data)
map auto_home on /System/Volumes/Data/home (autofs, automounted, nobrowse)
/dev/disk8s1 on /Volumes/VOLUME-5 (apfs, local, nodev, nosuid, journaled, noowners)
/dev/disk8s2 on /Volumes/VOLUME-10 (apfs, local, nodev, nosuid, journaled, noowners)
/dev/disk9s1 on /Volumes/VOLUME-13 (apfs, local, nodev, nosuid, journaled, noowners)
//Guest:@fuse-t-1._smb._tcp.local/.veracrypt_aux_mnt2 on /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt2 (smbfs, nodev, nosuid, noowners, nobrowse, mounted by USER)
/dev/disk11s1 on /Volumes/VOLUME-6 (apfs, local, nodev, nosuid, journaled, noowners, mounted by USER)
//Guest:@fuse-t-2._smb._tcp.local/.veracrypt_aux_mnt3 on /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt3 (smbfs, nodev, nosuid, noowners, nobrowse, mounted by USER)
/dev/disk13s1 on /Volumes/VOLUME-12 (apfs, local, nodev, nosuid, journaled, noowners, mounted by USER)
//Guest:@fuse-t-6._smb._tcp.local/.veracrypt_aux_mnt1 on /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt1 (smbfs, nodev, nosuid, noowners, nobrowse, mounted by USER)
/dev/disk5s1 on /Volumes/VOLUME-7 (apfs, local, nodev, nosuid, journaled, noowners, mounted by USER)
//Guest:@fuse-t._smb._tcp.local/.veracrypt_aux_mnt1 on /Volumes/.veracrypt_aux_mnt1 (smbfs, nodev, nosuid, noowners, mounted by USER)
//Guest:@fuse-t._smb._tcp.local/.veracrypt_aux_mnt1 on /Volumes/.veracrypt_aux_mnt1-1 (smbfs, nodev, nosuid, noowners, mounted by USER)
/dev/disk17s1 on /Volumes/VOLUME-9 (apfs, local, nodev, nosuid, journaled, noowners, mounted by USER)
/dev/disk16s1 on /Volumes/VOLUME-8 (apfs, local, nodev, nosuid, journaled, noowners, mounted by USER)

== attached disk images ==
image-path      : /var/folders/XX/TMPID/T//.veracrypt_aux_mnt2/volume.dmg
process ID      : 1959
/dev/disk10		
/dev/disk11	EF57347C-0000-11AA-AA11-00306543ECAC	
/dev/disk11s1	41504653-0000-11AA-AA11-00306543ECAC	/Volumes/VOLUME-6
image-path      : /var/folders/XX/TMPID/T//.veracrypt_aux_mnt3/volume.dmg
process ID      : 2021
/dev/disk12		
/dev/disk13	EF57347C-0000-11AA-AA11-00306543ECAC	
/dev/disk13s1	41504653-0000-11AA-AA11-00306543ECAC	/Volumes/VOLUME-12
image-path      : /var/folders/XX/TMPID/T//.veracrypt_aux_mnt1/volume.dmg
process ID      : 83214
/dev/disk4		
/dev/disk5	EF57347C-0000-11AA-AA11-00306543ECAC	
/dev/disk5s1	41504653-0000-11AA-AA11-00306543ECAC	/Volumes/VOLUME-7
image-path      : /Volumes/.veracrypt_aux_mnt1/volume.dmg
process ID      : 84091
/dev/disk14		
/dev/disk16	EF57347C-0000-11AA-AA11-00306543ECAC	
/dev/disk16s1	41504653-0000-11AA-AA11-00306543ECAC	/Volumes/VOLUME-8
image-path      : /Volumes/.veracrypt_aux_mnt1-1/volume.dmg
process ID      : 84092
/dev/disk15		
/dev/disk17	EF57347C-0000-11AA-AA11-00306543ECAC	
/dev/disk17s1	41504653-0000-11AA-AA11-00306543ECAC	/Volumes/VOLUME-9

== VeraCrypt --text --list (20 s limit) ==
63: CONTAINER-6 /dev/disk11s1 /Volumes/VOLUME-6
62: CONTAINER-5 /dev/disk13s1 /Volumes/VOLUME-12
64: CONTAINER-7 /dev/disk5s1 /Volumes/VOLUME-7
64: CONTAINER-7 /dev/disk5s1 /Volumes/VOLUME-7
64: CONTAINER-7 /dev/disk5s1 /Volumes/VOLUME-7

== Bonjour browse _smb._tcp, 3 s ==
Browsing for _smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:23.187  ...STARTING...
Timestamp     A/R    Flags  if Domain               Service Type         Instance Name
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t-5
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t-6
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t-1
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t-2
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t-3
17:56:23.187  Add        3   1 local.               _smb._tcp.           fuse-t
17:56:23.187  Add        2   1 local.               _smb._tcp.           fuse-t-4

== Bonjour resolve fuse-t, 3 s ==
Lookup fuse-t._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:26.252  ...STARTING...
17:56:26.253  fuse-t._smb._tcp.local. can be reached at fuse-t.local.:52200 (interface 1)

== Bonjour resolve fuse-t-1, 3 s ==
Lookup fuse-t-1._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:29.275  ...STARTING...
17:56:29.277  fuse-t-1._smb._tcp.local. can be reached at fuse-t-1.local.:52201 (interface 1)

== Bonjour resolve fuse-t-2, 3 s ==
Lookup fuse-t-2._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:32.296  ...STARTING...
17:56:32.297  fuse-t-2._smb._tcp.local. can be reached at fuse-t-2.local.:52202 (interface 1)

== Bonjour resolve fuse-t-3, 3 s ==
Lookup fuse-t-3._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:35.319  ...STARTING...
17:56:35.319  fuse-t-3._smb._tcp.local. can be reached at fuse-t-3.local.:52203 (interface 1)

== Bonjour resolve fuse-t-4, 3 s ==
Lookup fuse-t-4._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:38.328  ...STARTING...
17:56:38.329  fuse-t-4._smb._tcp.local. can be reached at fuse-t-4.local.:52204 (interface 1)

== Bonjour resolve fuse-t-5, 3 s ==
Lookup fuse-t-5._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:41.352  ...STARTING...
17:56:41.355  fuse-t-5._smb._tcp.local. can be reached at fuse-t-5.local.:52205 (interface 1)

== Bonjour resolve fuse-t-6, 3 s ==
Lookup fuse-t-6._smb._tcp.local.
DATE: ---Wed 16 Sep 2026---
17:56:44.383  ...STARTING...
17:56:44.384  fuse-t-6._smb._tcp.local. can be reached at fuse-t-6.local.:52206 (interface 1)

== go-nfsv4 listening ports ==
COMMAND     PID USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
go-nfsv4-  1867 USER    7u  IPv4 0x69e1cbe2f6c2bcd1      0t0  TCP 127.0.0.1:52200 (LISTEN)
go-nfsv4-  1952 USER    7u  IPv4 0xaebf3620d517b2c8      0t0  TCP 127.0.0.1:52201 (LISTEN)
go-nfsv4-  2014 USER    7u  IPv4 0x854252584fe477e9      0t0  TCP 127.0.0.1:52202 (LISTEN)
go-nfsv4- 40712 USER    7u  IPv4 0x3d7b7cfff86096e6      0t0  TCP 127.0.0.1:52203 (LISTEN)
go-nfsv4- 41868 USER    9u  IPv4 0x894a96f830b60b52      0t0  TCP 127.0.0.1:52204 (LISTEN)
go-nfsv4- 82675 USER    9u  IPv4  0xd3a9126f5f918ad      0t0  TCP 127.0.0.1:52205 (LISTEN)
go-nfsv4- 83205 USER    9u  IPv4 0x53623f958569d2db      0t0  TCP 127.0.0.1:52206 (LISTEN)

== regular files and disks held open by go-nfsv4 and VeraCrypt processes (type, path) ==
-- pid 1844
REG	CONTAINER-2
REG	CONTAINER-1
REG	CONTAINER-3
REG	CONTAINER-4
-- pid 1847
-- pid 1866
-- pid 1867
REG	CONTAINER-8
REG	CONTAINER-7
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 1868
REG	CONTAINER-7
-- pid 1951
-- pid 1952
REG	CONTAINER-8
REG	CONTAINER-6
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 1953
REG	CONTAINER-6
-- pid 2013
-- pid 2014
REG	CONTAINER-8
REG	CONTAINER-5
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 2015
REG	CONTAINER-5
-- pid 40711
-- pid 40712
REG	CONTAINER-8
REG	CONTAINER-7
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 40713
REG	CONTAINER-7
-- pid 41796
-- pid 41867
-- pid 41868
REG	CONTAINER-8
REG	CONTAINER-7
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 41869
REG	CONTAINER-7
-- pid 82674
-- pid 82675
REG	CONTAINER-8
REG	CONTAINER-7
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 82676
REG	CONTAINER-7
-- pid 83204
-- pid 83205
REG	CONTAINER-8
REG	CONTAINER-7
REG	~/Library/Logs/fuse-t/fuse-t.log
-- pid 83206
REG	CONTAINER-7

== smbutil statshares -a ==

==================================================================================================
SHARE                         ATTRIBUTE TYPE                VALUE
==================================================================================================
.veracrypt_aux_mnt2           
                              SERVER_NAME                   fuse-t-1._smb._tcp.local
                              USER_ID                       501
                              SMB_NEGOTIATE                 SMBV_NEG_SMB1_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB2_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB3_ENABLED
                              SMB_VERSION                   SMB_3.1.1
                              SMB_ENCRYPT_ALGORITHMS        AES_128_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_128_GCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_GCM_ENABLED
                              SMB_CURR_ENCRYPT_ALGORITHM    OFF
                              SMB_SIGN_ALGORITHMS           AES_128_CMAC_ENABLED
                              SMB_SIGN_ALGORITHMS           AES_128_GMAC_ENABLED
                              SMB_CURR_SIGN_ALGORITHM       AES_128_CMAC
                              COMPRESSION_CHAINING_OFF      TRUE
                              COMPRESSION_IO_THRESHOLD      4096
                              COMPRESSION_CHUNK_LEN         262144
                              COMPRESSION_MAX_FAIL_CNT      5
                              WRITE_COMPRESSION_CNT         0
                              WRITE_CNT_LZ77Huff            0
                              WRITE_CNT_LZ77                0
                              WRITE_CNT_LZNT1               0
                              WRITE_CNT_FWD_PATTERN         0
                              WRITE_CNT_BWD_PATTERN         0
                              READ_COMPRESSION_CNT          0
                              READ_CNT_LZ77Huff             0
                              READ_CNT_LZ77                 0
                              READ_CNT_LZNT1                0
                              READ_CNT_FWD_PATTERN          0
                              READ_CNT_BWD_PATTERN          0
                              SMB_SHARE_TYPE                DISK
                              SIGNING_SUPPORTED             TRUE
                              EXTENDED_SECURITY_SUPPORTED   TRUE
                              UNIX_SUPPORT                  TRUE
                              LARGE_FILE_SUPPORTED          TRUE
                              OS_X_SERVER                   TRUE
                              FILE_IDS_SUPPORTED            TRUE
                              DFS_SUPPORTED                 TRUE
                              FILE_LEASING_SUPPORTED        TRUE
                              MULTI_CREDIT_SUPPORTED        TRUE
                              PERSISTENT_HANDLES_SUPPORTED  TRUE
                              DIR_LEASING_SUPPORTED         TRUE
                              ENCRYPTION_SUPPORTED          TRUE
                              SESSION_RECONNECT_TIME        0:0
                              SESSION_RECONNECT_COUNT       0

--------------------------------------------------------------------------------------------------
.veracrypt_aux_mnt3           
                              SERVER_NAME                   fuse-t-2._smb._tcp.local
                              USER_ID                       501
                              SMB_NEGOTIATE                 SMBV_NEG_SMB1_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB2_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB3_ENABLED
                              SMB_VERSION                   SMB_3.1.1
                              SMB_ENCRYPT_ALGORITHMS        AES_128_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_128_GCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_GCM_ENABLED
                              SMB_CURR_ENCRYPT_ALGORITHM    OFF
                              SMB_SIGN_ALGORITHMS           AES_128_CMAC_ENABLED
                              SMB_SIGN_ALGORITHMS           AES_128_GMAC_ENABLED
                              SMB_CURR_SIGN_ALGORITHM       AES_128_CMAC
                              COMPRESSION_CHAINING_OFF      TRUE
                              COMPRESSION_IO_THRESHOLD      4096
                              COMPRESSION_CHUNK_LEN         262144
                              COMPRESSION_MAX_FAIL_CNT      5
                              WRITE_COMPRESSION_CNT         0
                              WRITE_CNT_LZ77Huff            0
                              WRITE_CNT_LZ77                0
                              WRITE_CNT_LZNT1               0
                              WRITE_CNT_FWD_PATTERN         0
                              WRITE_CNT_BWD_PATTERN         0
                              READ_COMPRESSION_CNT          0
                              READ_CNT_LZ77Huff             0
                              READ_CNT_LZ77                 0
                              READ_CNT_LZNT1                0
                              READ_CNT_FWD_PATTERN          0
                              READ_CNT_BWD_PATTERN          0
                              SMB_SHARE_TYPE                DISK
                              SIGNING_SUPPORTED             TRUE
                              EXTENDED_SECURITY_SUPPORTED   TRUE
                              UNIX_SUPPORT                  TRUE
                              LARGE_FILE_SUPPORTED          TRUE
                              OS_X_SERVER                   TRUE
                              FILE_IDS_SUPPORTED            TRUE
                              DFS_SUPPORTED                 TRUE
                              FILE_LEASING_SUPPORTED        TRUE
                              MULTI_CREDIT_SUPPORTED        TRUE
                              PERSISTENT_HANDLES_SUPPORTED  TRUE
                              DIR_LEASING_SUPPORTED         TRUE
                              ENCRYPTION_SUPPORTED          TRUE
                              SESSION_RECONNECT_TIME        0:0
                              SESSION_RECONNECT_COUNT       0

--------------------------------------------------------------------------------------------------
.veracrypt_aux_mnt1           
                              SERVER_NAME                   fuse-t-6._smb._tcp.local
                              USER_ID                       501
                              SMB_NEGOTIATE                 SMBV_NEG_SMB1_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB2_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB3_ENABLED
                              SMB_VERSION                   SMB_3.1.1
                              SMB_ENCRYPT_ALGORITHMS        AES_128_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_128_GCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_GCM_ENABLED
                              SMB_CURR_ENCRYPT_ALGORITHM    OFF
                              SMB_SIGN_ALGORITHMS           AES_128_CMAC_ENABLED
                              SMB_SIGN_ALGORITHMS           AES_128_GMAC_ENABLED
                              SMB_CURR_SIGN_ALGORITHM       AES_128_CMAC
                              COMPRESSION_CHAINING_OFF      TRUE
                              COMPRESSION_IO_THRESHOLD      4096
                              COMPRESSION_CHUNK_LEN         262144
                              COMPRESSION_MAX_FAIL_CNT      5
                              WRITE_COMPRESSION_CNT         0
                              WRITE_CNT_LZ77Huff            0
                              WRITE_CNT_LZ77                0
                              WRITE_CNT_LZNT1               0
                              WRITE_CNT_FWD_PATTERN         0
                              WRITE_CNT_BWD_PATTERN         0
                              READ_COMPRESSION_CNT          0
                              READ_CNT_LZ77Huff             0
                              READ_CNT_LZ77                 0
                              READ_CNT_LZNT1                0
                              READ_CNT_FWD_PATTERN          0
                              READ_CNT_BWD_PATTERN          0
                              SMB_SHARE_TYPE                DISK
                              SIGNING_SUPPORTED             TRUE
                              EXTENDED_SECURITY_SUPPORTED   TRUE
                              UNIX_SUPPORT                  TRUE
                              LARGE_FILE_SUPPORTED          TRUE
                              OS_X_SERVER                   TRUE
                              FILE_IDS_SUPPORTED            TRUE
                              DFS_SUPPORTED                 TRUE
                              FILE_LEASING_SUPPORTED        TRUE
                              MULTI_CREDIT_SUPPORTED        TRUE
                              PERSISTENT_HANDLES_SUPPORTED  TRUE
                              DIR_LEASING_SUPPORTED         TRUE
                              ENCRYPTION_SUPPORTED          TRUE
                              SESSION_RECONNECT_TIME        0:0
                              SESSION_RECONNECT_COUNT       0

--------------------------------------------------------------------------------------------------
.veracrypt_aux_mnt1           
                              SERVER_NAME                   fuse-t._smb._tcp.local
                              USER_ID                       501
                              SMB_NEGOTIATE                 SMBV_NEG_SMB1_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB2_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB3_ENABLED
                              SMB_VERSION                   SMB_3.1.1
                              SMB_ENCRYPT_ALGORITHMS        AES_128_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_128_GCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_GCM_ENABLED
                              SMB_CURR_ENCRYPT_ALGORITHM    OFF
                              SMB_SIGN_ALGORITHMS           AES_128_CMAC_ENABLED
                              SMB_SIGN_ALGORITHMS           AES_128_GMAC_ENABLED
                              SMB_CURR_SIGN_ALGORITHM       AES_128_CMAC
                              COMPRESSION_CHAINING_OFF      TRUE
                              COMPRESSION_IO_THRESHOLD      4096
                              COMPRESSION_CHUNK_LEN         262144
                              COMPRESSION_MAX_FAIL_CNT      5
                              WRITE_COMPRESSION_CNT         0
                              WRITE_CNT_LZ77Huff            0
                              WRITE_CNT_LZ77                0
                              WRITE_CNT_LZNT1               0
                              WRITE_CNT_FWD_PATTERN         0
                              WRITE_CNT_BWD_PATTERN         0
                              READ_COMPRESSION_CNT          0
                              READ_CNT_LZ77Huff             0
                              READ_CNT_LZ77                 0
                              READ_CNT_LZNT1                0
                              READ_CNT_FWD_PATTERN          0
                              READ_CNT_BWD_PATTERN          0
                              SMB_SHARE_TYPE                DISK
                              SIGNING_SUPPORTED             TRUE
                              EXTENDED_SECURITY_SUPPORTED   TRUE
                              UNIX_SUPPORT                  TRUE
                              LARGE_FILE_SUPPORTED          TRUE
                              OS_X_SERVER                   TRUE
                              FILE_IDS_SUPPORTED            TRUE
                              DFS_SUPPORTED                 TRUE
                              FILE_LEASING_SUPPORTED        TRUE
                              MULTI_CREDIT_SUPPORTED        TRUE
                              PERSISTENT_HANDLES_SUPPORTED  TRUE
                              DIR_LEASING_SUPPORTED         TRUE
                              ENCRYPTION_SUPPORTED          TRUE
                              SESSION_RECONNECT_TIME        0:0
                              SESSION_RECONNECT_COUNT       0

--------------------------------------------------------------------------------------------------
.veracrypt_aux_mnt1           
                              SERVER_NAME                   fuse-t._smb._tcp.local
                              USER_ID                       501
                              SMB_NEGOTIATE                 SMBV_NEG_SMB1_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB2_ENABLED
                              SMB_NEGOTIATE                 SMBV_NEG_SMB3_ENABLED
                              SMB_VERSION                   SMB_3.1.1
                              SMB_ENCRYPT_ALGORITHMS        AES_128_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_128_GCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_CCM_ENABLED
                              SMB_ENCRYPT_ALGORITHMS        AES_256_GCM_ENABLED
                              SMB_CURR_ENCRYPT_ALGORITHM    OFF
                              SMB_SIGN_ALGORITHMS           AES_128_CMAC_ENABLED
                              SMB_SIGN_ALGORITHMS           AES_128_GMAC_ENABLED
                              SMB_CURR_SIGN_ALGORITHM       AES_128_CMAC
                              COMPRESSION_CHAINING_OFF      TRUE
                              COMPRESSION_IO_THRESHOLD      4096
                              COMPRESSION_CHUNK_LEN         262144
                              COMPRESSION_MAX_FAIL_CNT      5
                              WRITE_COMPRESSION_CNT         0
                              WRITE_CNT_LZ77Huff            0
                              WRITE_CNT_LZ77                0
                              WRITE_CNT_LZNT1               0
                              WRITE_CNT_FWD_PATTERN         0
                              WRITE_CNT_BWD_PATTERN         0
                              READ_COMPRESSION_CNT          0
                              READ_CNT_LZ77Huff             0
                              READ_CNT_LZ77                 0
                              READ_CNT_LZNT1                0
                              READ_CNT_FWD_PATTERN          0
                              READ_CNT_BWD_PATTERN          0
                              SMB_SHARE_TYPE                DISK
                              SIGNING_SUPPORTED             TRUE
                              EXTENDED_SECURITY_SUPPORTED   TRUE
                              UNIX_SUPPORT                  TRUE
                              LARGE_FILE_SUPPORTED          TRUE
                              OS_X_SERVER                   TRUE
                              FILE_IDS_SUPPORTED            TRUE
                              DFS_SUPPORTED                 TRUE
                              FILE_LEASING_SUPPORTED        TRUE
                              MULTI_CREDIT_SUPPORTED        TRUE
                              PERSISTENT_HANDLES_SUPPORTED  TRUE
                              DIR_LEASING_SUPPORTED         TRUE
                              ENCRYPTION_SUPPORTED          TRUE
                              SESSION_RECONNECT_TIME        0:0
                              SESSION_RECONNECT_COUNT       0

--------------------------------------------------------------------------------------------------

== unified log, last 15 minutes, fuse-t / smbfs / veracrypt_aux (last 80 lines) ==
Timestamp                       Thread     Type        Activity             PID    TTL  
2026-09-16 17:44:46.627954-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /Volumes/.veracrypt_aux_mnt1-1?owner=501.
2026-09-16 17:44:46.627959-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /Volumes/.veracrypt_aux_mnt1?owner=501.
2026-09-16 17:44:46.627987-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt1?owner=501.
2026-09-16 17:44:46.628012-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt3?owner=501.
2026-09-16 17:44:46.628030-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /private/var/folders/XX/TMPID/T/.veracrypt_aux_mnt2?owner=501.
2026-09-16 17:44:46.749074-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /Volumes/.veracrypt_aux_mnt1-1?owner=501.
2026-09-16 17:44:46.749077-0400 0x178d6a   Info        0x0                  385    1    diskarbitrationd: [com.apple.DiskArbitration.diskarbitrationd:default]   dispatched callback, id = 0000000000000001:0000000000000001, kind = disk appeared, disk = /Volum

(truncated here; the full file is attached)

evidence-2.txt
collect-evidence-2.sh-2.txt

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions