Beef up Firefox Privacy Features

Productivity Sauce
Whether you want it or not, your Web activities are tracked and analyzed in many different ways. But you don't have to put up with this, especially if you are using Firefox as your primary browser. There are a few handy Firefox extensions that can beef up your favorite browser's privacy features. Here are my three personal favorites.
Besides regular cookies planted in your browser by many Web sites, some services add so-called Flash cookies or Local Shared Objects (LSO). Similar to conventional cookies, LSOs collect and share information about your Web usage. But unlike good old cookies, LSOs are particularly difficult to purge from your browser. The aptly named BetterPrivacy extension provides a simple fix to that problem. This extension lets you nuke all nasty LSOs installed in your browser one by one, or you can configure it to delete them all in one fell swoop when you close the browser.
Cookies are the most common way to track your Web activities, but they are not the only ones. Tags, Web bugs, pixels, and beacons are all used to gather information about your Web habits. The Ghostery extension is designed to block these unwelcome guests. Once installed, it sits quietly in Firefox's status bar. When Ghostery detects suspicious elements, its icon turns blue, and you can view a list of discovered trackers by right-clicking on the icon. You can then use Ghostery to view more info about the particular tracking service and block it, if necessary.
Most Web sites and services that attempt to gather information about you are small fish compared to the mighty Google. Every time you perform a search or use a Google-based service, you hand the search giant a wealth of information about you. While it's virtually impossible to prevent that from happening, you can make Google's job of collecting data much harder using the GoogleSharing extension and proxy service. According to the project's Web site, the proxy server is designed to confuse Google by "generating a pool of GoogleSharing 'identities,' each of which contains a cookie issued by Google and an arbitrary User-Agent for one of several popular browsers." The Firefox extension redirects all requests for Google services from your browser to the proxy. The proxy then strips the requests of all identifying information and replace it with information from a GoogleSharing identity. By default, the extension uses the proxy server maintained by the GoogleSharing project, but you can also set up your own proxy by installing and running the googleshare server.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
Red Hat Migrates RHEL from Xorg to Wayland
If you've been wondering when Xorg will finally be a thing of the past, wonder no more, as Red Hat has made it clear.
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.
-
StripedFly Malware Hiding in Plain Sight as a Cryptocurrency Miner
A rather deceptive piece of malware has infected 1 million Windows and Linux hosts since 2017.
-
Experimental Wayland Support Planned for Linux Mint 21.3
As with most Linux distributions, the migration to Wayland is in full force. While some distributions have already made the move, Linux Mint has been a bit slower to do so.
Dump the flash trash as son as it arrives
ln -s /dev/null ~/.macromedia
ln -s /dev/null ~/.adobe
Cleaning up
http://bleachbit.sourceforge.net/
firefox & flash history, cookies, etc.
function clean-firefox ()
# from a slashdot post, cleans up its databases, can take ~15 secs!
{
for i in ~/.mozilla/firefox/*.default/*.sqlite; do
sqlite3 $i "vacuum;" ;
done
}
alias cleanflash='rm -rf ~/.macromedia/Flash_Player/macromedia.com/support/flashplayer/sys/* ~/.macromedia/Flash_Player/#SharedObjects/*/*'