1
0
mirror of https://github.com/drwetter/testssl.sh.git synced 2025-05-17 21:56:03 +02:00

fix match expr

This commit is contained in:
Dirk Wetter 2025-01-27 20:08:11 +01:00
parent cdf5cf7b97
commit d93549e327

@ -64,8 +64,8 @@ $cat_csvfile =~ s/.nonce-.* //g;
$cat_csvfile2 =~ s/.nonce-.* //g; $cat_csvfile2 =~ s/.nonce-.* //g;
# Fix IP addresses. Needed when we don't hit the same IP address. We just remove them # Fix IP addresses. Needed when we don't hit the same IP address. We just remove them
$cat_csvfile =~ s/","google.com\/.*","443/","google.com","443/; $cat_csvfile =~ s/","google.com\/.*","443/","google.com","443/g;
$cat_csvfile2 =~ s/","google.com\/.*","443/","google.com","443/; $cat_csvfile2 =~ s/","google.com\/.*","443/","google.com","443/g;
$diff = diff \$cat_csvfile, \$cat_csvfile2; $diff = diff \$cat_csvfile, \$cat_csvfile2;