Skip to content

Instantly share code, notes, and snippets.

@andydavies
Created April 28, 2012 08:09
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 andydavies/2517046 to your computer and use it in GitHub Desktop.
Save andydavies/2517046 to your computer and use it in GitHub Desktop.
Find icons in HTTPArchive.ord data
-- Find the favicon in HTTPArchive.org data
-- TODO: filter just of favicon.ico (still need mimetype?)
select * from requests where mimeType = 'image/x-icon'
@andydavies
Copy link
Author

select * from requests where url like '%favicon.ico%' order by respSize;

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