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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more and more Linux systems are getting targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
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/*/*'