This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------- In my case it was this location, change accordingly ----------- | |
# I only show here the part of that file I changed | |
## [ v3_req ] | |
## | |
### Extensions to add to a certificate request | |
## | |
##basicConstraints = CA:FALSE | |
##keyUsage = nonRepudiation, digitalSignature, keyEncipherment | |
[ v3_req ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Inside Rules > Customize Rules > OnBoot, add the following line: | |
FiddlerApplication.add_OnValidateServerCertificate(onEvalCert); | |
// Just before that function, add the following new function: | |
static function onEvalCert(o: Object, e: ValidateServerCertificateEventArgs) | |
{ | |
try | |
{ | |
var X2: System.Security.Cryptography.X509Certificates.X509Certificate2 = | |
new System.Security.Cryptography.X509Certificates.X509Certificate2(e.ServerCertificate); |