Information
Files in the /etc/apt/auth.conf.d directory contains .conf files with configured credentials for private APT repositories or proxy.
Access to the .conf files in the /etc/apt/auth.conf.d directory should be restricted to prevent secrets leakage of Login information needed to connect to a proxy or to download data from a repository.
Solution
Run the following commands to set all .conf files in the /etc/apt/auth.conf.d/ directory Uid and Gid both to 0/root and mode 0640 :
# chown root:root /etc/apt/auth.conf.d/*
# chmod u-x,g-wx,o-rwx /etc/apt/auth.conf.d/*