Perl spies on a sniffer
Secret Agent
Many Ubuntu users are blissfully unaware that the Zeitgeist daemon is shoulder surfing them and logging their desktop actions. Several Perl scripts can help sanitize the sniffer report and reveal interesting facts about a user's habits.
Precisely how does the Nautilus browser know which files an Ubuntu user edited recently to be able to display them in the Recent column? Figure 1, for example, lists two screenshots that I recently viewed with the Eye of Gnome (eog
) photo viewer.
Nautilus and Eye of Gnome are two totally different applications that do not exchange any data, but an unofficial helper named zeitgeist
runs in the Ubuntu desktop's background, greedily absorbing information about what's going on with the numerous applications running on the desktop. If you are interested, you can type
ps aux | grep zeitgeist
to see the daemon running with your user ID in the process list. Gnome applications connect to the Zeitgeist daemon on D-Bus, and the daemon inquisitively logs any relevant transactions in its database, while providing this information in turn to other applications interested in it – for example, the Nautilus browser.
To store the desktop events, Zeitgeist uses a SQLite database, which other utilities or even a hand-crafted Perl sniffer can also read and evaluate. If you want to watch the daemon snapping up events that roll in from the desktop, you can type
zeitgeist-daemon -r --log-level=DEBUG
to launch the daemon in debug mode. The -r
option actually stops the daemon running in the background and replaces it with one running in the foreground.
The Future Is Uncertain
Having said this, the Zeitgeist project on Launchpad [1] seems to have been dormant since 2013. Today, searches return critical comments from users concerned about data protection, who are frantically trying to kill off the daemon without crippling their Ubuntu desktop at the same time. Although the project might not have a rosy future, however, it is still worthwhile peeking behind the curtains to perform a critical analysis of the collected data.
Respecting Private Matters
Because logging actions on the desktop without so much as a by-your-leave can infringe on users' privacy, the Unity desktop lets users restrict Zeitgeist's collecting mania and even discard all the data collected thus far. In System Settings below the Security & Privacy entry, users can tame the daemon by disabling a number of checkboxes. Zeitgeist is then given a blacklist and ignores any events that come in from blocked applications.
Figure 2 shows that Zeitgeist can also be talked into avoiding logging actions that relate to music, movies, photos, chat logs, or documents. You can even press Clear Data to tell the daemon to delete permanently any data it has collected thus far. To see what exactly the Zeitgeist daemon collects, you can use the graphical zeitgeist-explorer
from the package of the same name (Figure 3).
On a newly installed Ubuntu, Zeitgeist will log anything it can get its hands on. However, not all applications are as verbose as Eye of Gnome. For example, if you want Zeitgeist to record any tracks that you play with Rhythmbox, you actually need to install the rhythmbox-plugin-zeitgeist Ubuntu package. For Chrome or Firefox, other plugins are available for users who want to track their own web activities.
Perl Investigates
The Perl scripts introduced in the following sections rummage through the data collection. For example, to discover which new photos the user last viewed, Listing 1 [2] reads the uri
table in the SQLite activity.sqlite
database below .local/share/zeitgeist
in your home directory. The SQL SELECT * from uri
query simply lists all the rows of data from the uri
table in which Zeitgeist assigns index numbers to newly discovered paths or URLs.
Listing 1
urls-recent
The CPAN DBD::SQLite module used in the listings for querying SQLite contains not just the Perl wrapper but also the C code for the SQLite project itself. After installing the sqlite3 Ubuntu package, you can type
sqlite3 activity.sqlite .schema
in the Zeitgeist database's directory to see which tables exist in the database. Later, you can look into the table contents with interactively submitted SQL commands.
Listing 1 uses the DBI module's prepare()
method, with the loaded SQLite driver to prepare the SQL command, and then runs execute()
against the statement handle that is returned to transfer this to the SQLite engine. As is typical in DBI, repeating the call to fetchrow_array()
snaps up the rows of results returned by the database engine. Each of these rows contains (in the case of the uri
table) two column values – id
and value
– which the script assigns to two Perl variables of the same name.
Figure 4 shows that Listing 1 not only returns paths to images but also strange-sounding URLs, like application://firefox.desktop, which are indicative of events in which the user called specific applications (e.g., the Firefox browser).
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe 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 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.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.