2

I want to keep a count of how many certificate warnings have been made in the browser over a period of several weeks. I also want to keep track of whether the user ignored these warnings and just clicked through them. Any ideas on how I could do this? Any plugin out there which extracts such statistics from a web browsing session?

Minaj
  • 1,536
  • 2
  • 14
  • 23

1 Answers1

1

I'm unsure of a easy browser add on but there are web content inspection systems that should be able to count this for you in logs. You would then consolidate and perform counts on the logs if it's not native in reporting. Alternatively, you could group policy something like WinHTTP logging on each individual system in a spool and then you could extract based on error codes.

  • any example of web content inspection systems? – Minaj Aug 01 '17 at 03:39
  • are you referring to deep packet inspection? Would this not be overkill? Can one not get this information without such a complex approach? – Minaj Aug 01 '17 at 03:54
  • WinHTTP logging is just that; so it's not DPI because windows is spooling this information for you as it gets pushed out. web content inspection devices *may* be DPI depending on your definition but really it's the honestly the easiest method to capture what you're asking in our opinion. – SCIS Security Aug 02 '17 at 02:07