Re: Genuine question: *BSD?
There is a chock load of proprietary software installed by default on "Free"BSD in the "src" tree (you really need the "src" tree installed for it to do anything).
Depending on the computer, the proprietary programs may or may not be executed - but if something is installed, even if encoded in a format that needs to be converted first, it is possible for it to get executed inadvertently.
https://cgit.freebsd.org/src/tree/sys/contrib/dev
https://cgit.freebsd.org/src/tree/sys/contrib/dev/nvidia/LICENCE.nvidia
https://cgit.freebsd.org/src/tree/sys/contrib/dev/nvidia/tegra124_xusb.bin.uu
https://cgit.freebsd.org/src/tree/sys/contrib/dev/nvidia/tegra210_xusb.bin.uu
https://cgit.freebsd.org/src/tree/sys/contrib/dev/otus/otus-license
https://cgit.freebsd.org/src/tree/sys/contrib/dev/otus/otus-init
https://cgit.freebsd.org/src/tree/sys/contrib/dev/iwm/LICENSE
https://cgit.freebsd.org/src/tree/sys/contrib/dev/iwm
There is also this proprietary software in source form (these files have no license). If you do not have a license, you are forbidden by copyright law from modifying to fix any bugs.
https://cgit.freebsd.org/src/tree/libexec/bootpd/hwaddr.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/dovend.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/dumptab.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/getether.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/getif.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/hwaddr.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/lookup.c
https://cgit.freebsd.org/src/tree/libexec/bootpd/trygetif.c
https://cgit.freebsd.org/src/tree/libexec/rtld-elf/arm/reloc.c
https://cgit.freebsd.org/src/tree/libexec/rtld-elf/libmap.c
https://cgit.freebsd.org/src/tree/sbin/dhclient/tests/option-domain-search.c
https://cgit.freebsd.org/src/tree/sbin/dhclient/tests/fake.c
https://cgit.freebsd.org/src/tree/sbin/dump/cache.c
https://cgit.freebsd.org/src/tree/sbin/ifconfig/iflagg.c
https://cgit.freebsd.org/src/tree/sbin/ipf/ipsend/44arp.c
https://cgit.freebsd.org/src/tree/sbin/ipf/ipsend/dlcommon.c
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/parseipfexpr.c
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/printipfexpr.c
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/save_execute.c
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/save_file.c
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/save_syslog.c
https://cgit.freebsd.org/src/tree/sbin/route/route_netlink.c
https://cgit.freebsd.org/src/tree/share/examples/ipfilter/samples/proxy.c
https://cgit.freebsd.org/src/tree/share/examples/ipfilter/samples/relay.c
https://cgit.freebsd.org/src/tree/share/examples/ipfilter/samples/userauth.c
https://cgit.freebsd.org/src/tree/share/examples/ppi/ppilcd.c
https://cgit.freebsd.org/src/tree/stand/ficl/aarch64/sysdep.c
https://cgit.freebsd.org/src/tree/stand/ficl/amd64/sysdep.c
https://cgit.freebsd.org/src/tree/stand/ficl/arm/sysdep.c
https://cgit.freebsd.org/src/tree/lib/libc/regex/grot/debug.c
https://cgit.freebsd.org/src/tree/lib/libutil/kinfo_getfile.c
https://cgit.freebsd.org/src/tree/lib/libutil/kinfo_getvmmap.c
https://cgit.freebsd.org/src/tree/lib/libutil/tests/cpuset_test.c
https://cgit.freebsd.org/src/tree/lib/libc/regex/grot/main.c
https://cgit.freebsd.org/src/tree/lib/libc/regex/grot/split.c
https://cgit.freebsd.org/src/tree/lib/libc/resolv/mtctxres.c
https://cgit.freebsd.org/src/tree/lib/libc/resolv/res_private.h
https://cgit.freebsd.org/src/tree/lib/libc/rpc/mt_misc.c
https://cgit.freebsd.org/src/tree/lib/libc/tests/stdio/eintr_test.c
https://cgit.freebsd.org/src/tree/lib/libpmc/pmu-events/json.h
https://cgit.freebsd.org/src/tree/lib/libpmc/pmu-events/pmu-events.h
https://cgit.freebsd.org/src/tree/sbin/ipf/libipf/printtcpflags.c
There is also files with a proprietary license, that explicitly forbids modification too;
https://cgit.freebsd.org/src/tree/sbin/ipf/ipsend/ipsend.h
You can find more with; `find . -size +1k -and \( -name '*.c' -or -name '*.h' \) -exec grep -EiL 'copyright|public|license|licence|generated' {} \; |tr '\n' ' '`