Skip to content

Commit

Permalink
TLS/1.3 CertificateRequest
Browse files Browse the repository at this point in the history
Parse certificaterequest message properly on TLS/1.3 connections
  • Loading branch information
ericlaw1979 committed Nov 4, 2022
1 parent e510459 commit 0d5ab41
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 36 deletions.
8 changes: 5 additions & 3 deletions FiddlerImportNetlog/FiddlerInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
namespace FiddlerImportNetlog
{
[ProfferFormat("NetLog JSON",
"Chromium's JSON-based event log format (v1.3.3.0). See https://dev.chromium.org/for-testers/providing-network-details for more details.",
".json;.gz" // We handle import of JSON files.
"Chromium's JSON-based event log format (v1.3.4.0). See https://dev.chromium.org/for-testers/providing-network-details for more details.",
// We handle import of JSON files, whether uncompressed, or compressed with ZIP or GZ. I'm not completely sure I remember the implications
// of declaring .gz here, nor why .zip isn't mentioned. Is this about the drag/drop import feature?
".json;.gz"
)]
public class HTTPArchiveFormatImport : ISessionImporter
public class NetLogFormatImport : ISessionImporter
{
public Session[] ImportSessions(string sFormat, Dictionary<string, object> dictOptions, EventHandler<Fiddler.ProgressCallbackEventArgs> evtProgressNotifications)
{
Expand Down
Loading

0 comments on commit 0d5ab41

Please sign in to comment.