Holy shit. I only use chrome when I have to for work, and these assholes...
https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/
Holy shit. I only use chrome when I have to for work, and these assholes...
https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/
@iris @tito_swineflu I'll have to check if my Vivaldi is affected.
If I had this issue, I'd try creating an empty weights.bin file and then locking down the permissions.
@corbden @iris @tito_swineflu
For UNIX/Linux environments, something like:
1. Stop Chrome
2. Execute:
sudo -i
SUDO_HOME="$( eval echo "~${SUDO_USER}" )"
for TARG in $( find ${SUDO_HOME} -name weights.bin 2> /dev/null ); do
rm "${TARG}"
install -bDm 0600 -o root -g root /dev/null "${TARG}"
done
Ought to work?sudo version, explicitly setting SUDO_HOME might be unnecessary