@@ -1539,6 +1539,10 @@ def custom_help_formatter(prog):
1539
1539
t_acceptch_dep = ('content-dpr' , 'dpr' , 'sec-ch-ua-full-version' ,
1540
1540
'viewport-width' , 'width' )
1541
1541
1542
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
1543
+ t_accecao = ('*' , 'null' )
1544
+ t_accecaov = ('.*' , '*.' )
1545
+
1542
1546
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
1543
1547
t_cache = ('no-cache' , 'no-store' , 'must-revalidate' )
1544
1548
t_cachev = ('immutable' , 'max-age' , 'must-revalidate' , 'must-understand' ,
@@ -1739,10 +1743,8 @@ def custom_help_formatter(prog):
1739
1743
i_cnt [0 ] += 1
1740
1744
1741
1745
accesso_header = headers_l .get ("access-control-allow-origin" , '' )
1742
- if accesso_header and ((accesso_header in ['*' , 'null' ]) and
1743
- (not any (val in accesso_header for
1744
- val in ['.*' , '*.' ]))) and '5' not in \
1745
- skip_list :
1746
+ if accesso_header and accesso_header in t_accecao and not any (
1747
+ val in accesso_header for val in t_accecaov ) and '5' not in skip_list :
1746
1748
print_details ('[iaccess_h]' , '[iaccess]' , 'd' , i_cnt )
1747
1749
1748
1750
accesma_header = headers_l .get ("access-control-max-age" , '' )
0 commit comments