Skip to content

Instantly share code, notes, and snippets.

@briangordon
Created November 16, 2018 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briangordon/d6014bc1b96f6d89a51ce7906cea9a03 to your computer and use it in GitHub Desktop.
Save briangordon/d6014bc1b96f6d89a51ce7906cea9a03 to your computer and use it in GitHub Desktop.
Dtrace one-liner for watching readers of your chrome profile
dtrace -n 'syscall::open*:entry /strstr(copyinstr(arg0), "Chrome/Default") != NULL/ { printf("%s %s",execname,copyinstr(arg0)); }' > chrome-accessors
@briangordon
Copy link
Author

briangordon commented Nov 16, 2018

Nothing so far:

~ $ tr -s ' ' < chrome-accessors | cut -d ' ' -f5 | sort | uniq

CoreServicesUIAg
Finder
Google
mds
mdworker_shared

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment