An article at https://devicetests.com/fix-download-unsandboxed-root-error-ubuntu presents a fix for the inconsequential yet annoying "unsandboxed download" notes produced by apt.
Reference: What does this apt error message ("Download is performed unsandboxed as root...") mean? (I learned about this fix in a downvoted and soon-to-be-deleted answer to this question)
The solution presented is to create the file /etc/apt/apt.conf.d/10sandbox
with contents APT::Sandbox::User "root";
Testing the solution in a 20.04 VM shows that it works insofar as the messages are not emitted.
However, the article warns ominously that there may be "security implications" by using this method, but provides no further info.
What are the "security implications" of using this method?