Skip to content

Commit

Permalink
Update default key exchange from Chromium 133 based browser (#342)
Browse files Browse the repository at this point in the history
- Exclude `secp256r1` in pre-shared key
  • Loading branch information
haga-rak authored Jan 7, 2025
1 parent df25602 commit 9aca5a1
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/Fluxzy.Core/Rules/Actions/ImpersonateProfileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ internal static ImpersonateConfiguration Create_Edge131_Windows()
SignatureScheme.rsa_pss_rsae_sha512,
SignatureScheme.rsa_pkcs1_sha512,
},
null
earlySharedGroups: new int[] {
NamedGroup.grease,
NamedGroup.X25519MLKEM768,
NamedGroup.x25519,
}
);

var h2Settings = new ImpersonateH2Setting(new List<ImpersonateH2SettingItem>() {
Expand Down Expand Up @@ -90,7 +94,11 @@ internal static ImpersonateConfiguration Create_Chrome131_Windows()
SignatureScheme.rsa_pss_rsae_sha512,
SignatureScheme.rsa_pkcs1_sha512,
},
null
earlySharedGroups: new int[] {
NamedGroup.grease,
NamedGroup.X25519MLKEM768,
NamedGroup.x25519,
}
);

var h2Settings = new ImpersonateH2Setting(new List<ImpersonateH2SettingItem>() {
Expand Down Expand Up @@ -140,7 +148,11 @@ internal static ImpersonateConfiguration Create_Chrome131_Android()
SignatureScheme.rsa_pss_rsae_sha512,
SignatureScheme.rsa_pkcs1_sha512,
},
null
earlySharedGroups: new int[] {
NamedGroup.grease,
NamedGroup.X25519MLKEM768,
NamedGroup.x25519,
}
);

var h2Settings = new ImpersonateH2Setting(new List<ImpersonateH2SettingItem>() {
Expand Down

0 comments on commit 9aca5a1

Please sign in to comment.