Had the same problem on a Macbook Pro after one of the updates at the end of the year when Broadcom drivers were updated. I've always used one of the tips listed in another thread to get wifi to work - after installing the Broadcom drivers, run the following two lines in terminal (new line starts with 'echo'):
echo "install wl /sbin/modprobe cfg80211; /sbin/insmod /lib/modules/\$(/bin/uname -r)/kernel/drivers/net/wireless/wl.ko" | sudo tee /etc/modprobe.d/hackboot.conf
echo "wl" | sudo tee /etc/modules-load.d/wl.conf
Wifi didn't work after the last Broadcom update, and I noticed that in the /lib/modules/6.6.9-269.current/kernel/drivers/net/wireless directory, the "wl.ko" file was not found. The file present was "wl.ko.zst" - extracting that file results in the "wl.ko" file.
Once the file is extracted (I used Nemo and "open as root" to extract to the same directory), run "sudo modprobe wl" in a terminal and wifi started working for me.
Hope this helps, --TonyK.