Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

manually installing latest version Firefox -- how secure?

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
bd10
Posts: 4
Joined: 2015-05-03 17:06

manually installing latest version Firefox -- how secure?

#1 Post by bd10 »

Hi all,

I have a question regarding security when manually installing the latest version of Firefox as opposed to the ESR which is already on Debia 10.

If I install it in ~/bin/firefox and change the ownership of the folder to root

Code: Select all

chown -R root:root ~/bin/firefox
(as suggested on https://wiki.learnlinux.tv/index.php/In ... _Debian_10.)

Is this good practice or sufficient? How secure/vulnerable is such an installation?

Thanks

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: manually installing latest version Firefox -- how secure

#2 Post by Head_on_a_Stick »

Changing the ownership to root will stop it from updating itself (unless you run it as root, which is a bad idea). Outdated browser versions are a security risk.

I would just leave it in $HOME, like this:

Code: Select all

tar xf firefox-75.0.tar.bz2 -C ~
ln -s ~/firefox/firefox ~/bin/firefox-custom
And use this line in ~/.local/share/applications/firefox-custom.desktop:

Code: Select all

Exec=firefox-custom %u
But the Mozilla build includes stuff that the Debian developers disable for their versions, such as user studies (embedded spyware), and sound won't work without PulseAudio or apulse.
deadbang

User avatar
cooleo
Posts: 38
Joined: 2020-04-07 05:28

Re: manually installing latest version Firefox -- how secure

#3 Post by cooleo »

bd10 wrote:Hi all,

I have a question regarding security when manually installing the latest version of Firefox as opposed to the ESR which is already on Debia 10.

If I install it in ~/bin/firefox and change the ownership of the folder to root

Code: Select all

chown -R root:root ~/bin/firefox
(as suggested on https://wiki.learnlinux.tv/index.php/In ... _Debian_10.)

Is this good practice or sufficient? How secure/vulnerable is such an installation?

Thanks

Educate me,
why is it "more secure" to "lock-up" web browser bin by changing its owner to root?
so hacker wont be able to "play" with it? so it will not automaticlly update itself?

Post Reply