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
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
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/*/*'