Skip to content

getsentry/sentry-cookie-scanner

 
 

Repository files navigation

Work in progress

Sentry Cookie Scanner

Sentry took a stand of removing all 3rd party cookeis and trackers from our public websites in 2024.

This repository is a tool that we use to helps Sentry look for cookies on our public sites. It's forked and built on top of blacklight-collector from the Markup. For more information about the blacklight-collector please read their methodology.

If you are interested in running it locally you can clone this repository and follow the instructions below.

Build

nvm use

npm install

npm run build

Usage

Update scanner_config.yaml on the root folder according to your need, including the target_list which is a yaml defined list of sitemaps or rss feeds of pages to scan, and the output values to define where the reports will be stored.

npm run scan to perform the scan on the targets defined in scanner_config.yaml

npm run aggregate to aggregate the existing reports in reportDir and provide an aggregated list of cookies and trackers.

Collector configuration

collect takes the following arguments:

  • inUrl required
    • The URL you want to scrape
  • outDir
    • default: saves to tmp directory and deletes after completion
    • To save the full report provide a directory path
  • blTests
    • Array of tests to run
    • default: All
      • "behaviour_event_listeners"
      • "canvas_fingerprinters"
      • "canvas_font_fingerprinters"
      • "cookies"
      • "fb_pixel_events"
      • "key_logging"
      • "session_recorders"
      • "third_party_trackers"
  • numPages
    • default: 3
    • crawl depth
  • headless
    • Boolean flag, useful for debugging.
  • emulateDevice
    • Puppeteer makes device emulation pretty easy. Choose from this list
  • captureHar
    • default: true
    • Boolean flag to save the HTTP requests to a file in the HAR(Http Archive Format).
    • Note: You will need to provide a path to outDir if you want to see the captured file
  • captureLinks
    • default: false
    • Save first and third party links from the pages
  • enableAdBlock
    • default: false
  • clearCache
    • default: true
    • Clear the browser cookies and cache
  • saveBrowsingProfile
    • default: false
    • Lets you optionally save the browsing profile to the outDir
  • quiet
    • default: true
    • dont pipe raw event data to stdout
  • title
    • default: 'Blacklight Inspection'
  • saveScreenshots
    • default: true
  • headers
    • default: {} (expects { "[HTTP header]": "[value]", ... })
  • defaultTimeout
    • default: 30000
    • amount of time the page will wait to load
  • defaultWaitUntil
  • puppeteerExecutablePath
    • Path to Chromium executable.
    • default: uses bundled puppeteer chromium
  • extraChromiumArgs
    • Extra flags to pass to Chromium executable
    • default: ['--disable-features=TrackingProtection3pcd']

Inspection Result

blacklight-collector creates a few different assets at the end of an inspection, these include:

  • browser-cookies.json
    • JSON file containing a list of all the cookies set on that website.
  • inspection-log.ndjson
    • This file contains all the raw events that are recorded during the inspection which are used for analysis.
  • inspection.json:
    • Final inspection report that includes the following keys:
      • browser: Details of the browser version used.
      • browsing_history: List of pages that were visited.
      • config: Inspection configuration.
      • deviceEmulated: Information about the device that was emulated for this inspection.
      • end_time: When the inspection ended.
      • host: The hostname of the visited website.
      • hosts: A list of first-party and third-party hosts visited on this inspection.
      • reports: The initial results of the tests blacklight runs. For more information please read the methodology.
      • script: Details about the NodeJS version, host and this package version.
      • start_time: When the inspection began.
      • uri_ins: The URL that was entered by the user.
      • uri_dest: The final url that was visited after any redirects.
      • uri_redirects: The redirect chain.
  • n.html
    • Nth inspected page's html source.
  • n.jpeg
    • Nth inspected page's screenshot.
  • requests.har
    • HTTP archive of all the network requests.
    • TIP: Firefox lets you import a HAR file and visualize it using the network tab in the developer tools.
    • You can also view it here.

Blacklight would not be possible without the work of OpenWPM and the EU-EDPS's website evidence collector

About

No description or website provided.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 69.9%
  • HTML 13.3%
  • HCL 12.1%
  • Python 3.6%
  • JavaScript 1.1%