A tool for gathering current and historic google analytics ids from multiple websites
Project description
Wayback Google Analytics
A lightweight tool to gather current and historic Google analytics codes for OSINT investigations.
·
Report Bug
·
Request Feature
Table of Contents
About The Project
Wayback Google Analytics is a lightweight tool that gathers current and historic Google analytics data (UA, GA and GTM codes) from a collection of website urls.
Why do I need GA codes?
Google Analytics codes are a useful data point when examining relationships between websites. If two seemingly disparate websites share the same UA, GA or GTM code then there is a good chance that they are managed by the same individual or group. This useful breadcrumb has been used by researchers and journalists in OSINT investigations regularly over the last decade, but a recent change in how Google handles its analytics codes threatens to limit its effectiveness. Google began phasing out UA codes as part of its Google Analytics 4 upgrade in July 2023, making it significantly more challenging to use this breadcrumb during investigations.
How does this tool help me?
Luckily, the Internet Archive's Wayback Machine contains useful snapshots of websites containing their historic GA IDs. While you could feasibly check each snapshot manually, this tool automates that process with the Wayback Machines CDX API to simplify and speed up the process. Enter a list of urls and a time frame (along with extra, optional parameters) to collect current and historic GA, UA and GTM codes and return them in a format you choose (json, txt, xlsx or csv).
The raw json output for each provided url looks something like this:
"someurl.com": {
"current_UA_code": "UA-12345678-1",
"current_GA_code": "G-1234567890",
"current_GTM_code": "GTM-12345678",
"archived_UA_codes": {
"UA-12345678-1": {
"first_seen": "01/01/2019(12:30)",
"last_seen": "03/10/2020(00:00)",
},
},
"archived_GA_codes": {
"G-1234567890": {
"first_seen": "01/01/2019(12:30)",
"last_seen": "01/01/2019(12:30)",
}
},
"archived_GTM_codes": {
"GTM-12345678": {
"first_seen": "01/01/2019(12:30)",
"last_seen": "01/01/2019(12:30)",
},
},
}
Further reading
-
For more info about analytics codes and what the GA-4 rollout means for OSINT: https://digitalinvestigations.substack.com/p/what-the-rollout-of-google-analytics
-
For an example investigation usings analytics codes: https://www.bellingcat.com/resources/how-tos/2015/07/23/unveiling-hidden-connections-with-google-analytics-ids/
Built With
Additional libraries/tools: BeautifulSoup4, Asyncio, Aiohttp
Installation
Install from pypi (with pip)
The easiest way to to install Wayback Google Analytics is from the command line with pip.
- Open a terminal window and navigate to your chosen directory.
- Create a virtual environment and activate it (optional, but recommended; if you use Poetry or pipenv those package managers do it for you)
python3 -m venv venv source venv/bin/activate
- Install the project with pip
pip install wayback-google-analytics
- Get a high-level overview
wayback-google-analytics -h
Download from source
You can also clone and download the repo from github and use the tool locally.
-
Clone repo:
git clone git@github.com:jclark1913/osint-google-analytics.git
-
Navigate to root, create a venv and install requirements.txt:
cd osint-google-analytics python -m venv venv source venv/bin/activate pip install -r requirements.txt
-
Get a high-level overview:
python main.py -h
Usage
Getting started
-
Enter a list of urls manually through the command line using
--urls
(-u
) or from a given file using--input_file
(-i
). -
Specify your output format (.csv, .txt, .xlsx or .csv) using
--output
(-o
). -
Add any of the following options:
Options list (run wayback-google-analytics -h
to see in terminal):
options:
-h, --help show this help message and exit
-i INPUT_FILE, --input_file INPUT_FILE
Enter a file path to a list of urls in a readable file
type (e.g. .txt, .csv, .md)
-u URLS [URLS ...], --urls URLS [URLS ...]
Enter a list of urls separated by spaces to get their
UA/GA codes (e.g. --urls https://www.google.com
https://www.facebook.com)
-o {csv,txt,json,xlsx}, --output {csv,txt,json,xlsx}
Enter an output type to write results to file.
Defaults to json.
-s START_DATE, --start_date START_DATE
Start date for time range (dd/mm/YYYY:HH:MM) Defaults
to 01/10/2012:00:00, when UA codes were adopted.
-e END_DATE, --end_date END_DATE
End date for time range (dd/mm/YYYY:HH:MM). Defaults
to None.
-f {yearly,monthly,daily,hourly}, --frequency {yearly,monthly,daily,hourly}
Can limit snapshots to remove duplicates (1 per hr,
day, month, etc). Defaults to None.
-l LIMIT, --limit LIMIT
Limits number of snapshots returned. Defaults to -100
(most recent 100 snapshots).
Examples:
To get current codes for two websites and archived codes between Oct 1, 2012 and Oct 25, 2012:
wayback-google-analytics --urls https://someurl.com https://otherurl.org --output json --start_date 01/10/2012 --end_date 25/10/2012 --frequency hourly
To get current codes for a list of websites (from a file) from January 1, 2012 to the present day, checking for snapshots monthly and returning it as an excel spreadsheet:
wayback-google-analytics --input_file path/to/file.txt --output xlsx --start_date 01/01/2012
To check a single website for its current codes plus codes from the last 2,000 archive.org snapshots:
wayback-google-analytics --urls https://someurl.com --limit -2000
Output files & spreadsheets
Wayback Google Analytics allows you to export your findings to either .csv
or .xlsx
spreadsheets. When choosing to save your findings as a spreadsheet, the tool generates two databases: one where each url is the primary index and another where each identified code is the primary index. In an .xlsx
file this is one spreadsheet with two sheets, while the .csv
option generates one file sorted by codes and another sorted by websites. All output files can be found in /output
, which is created in the directory from which the code is executed.
Example spreadsheet
Let's say we're looking into data from 4 websites from 2015 until present and we want to save what we find in an excel spreadsheet. Our start command looks something like this:
wayback-google-analytics -u https://yapatriot.ru https://zanogu.com https://whoswho.com.ua https://adamants.ru -s 01/01/2015 -f yearly -o xlsx
The result is a single .xlsx
file with two sheets.
Ordered by website:
Ordered by code:
Contributing
Bugs and feature requests
Please feel free to open an issue should you encounter any bugs or have suggestions for new features or improvements. You can also reach out to me directly with suggestions or thoughts.
Development
Testing
- Run tests with
python -m unittest discover
- Check coverage with
coverage run -m unittest
Using Poetry for Development
Wayback Google Analytics uses Poetry, a Python dependency management and packaging tool. A GitHub workflow automates the tests on PRs and to main (see our workflow here), be sure to update the semantic version number in pyproject.toml
when opening a PR.
If you have push access, follow these steps to trigger the GitHub workflow that will build and release a new version to PyPI :
- Change the version number in pyproject.toml
- Create a new tag for that version
git tag "vX.0.0"
- Push the tag
git push --tags
License
Distributed under the MIT License. See LICENSE.txt
for more information.
Contact
You can contact me through email or social media.
- email: jclarksummit at gmail dot com
- Twitter/X: @JustinClarkJO
- Linkedin: Justin Clark
Project Link: https://github.com/bellingcat/wayback-google-analytics
Acknowledgments
- Bellingcat for hosting this project
- Miguel Ramalho for constant support, thoughtful code reviews and suggesting the original idea for this project
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for wayback_google_analytics-0.1.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab4fe9ffdc5680cba57f63feb49321d22e1ca714370043ab60560456b1ced323 |
|
MD5 | abb8357400ff1cf55a544d0a6c3cd72c |
|
BLAKE2b-256 | 991aa1a1468407290bc99696f0971be2ad68953cd7ad3d4f790f85978f251d45 |
Hashes for wayback_google_analytics-0.1.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 582332af57a3c68b061e2374d7b1aaa2c9b7f1177d27613ede13fbe959ba4316 |
|
MD5 | f267a834dd00485bfe526f7e31a52267 |
|
BLAKE2b-256 | b73add69adebef7b8b1943e9a74862286ba22cbd52db54965e8323213da78bbd |