@@ -878,6 +878,23 @@ def csp_print_details(csp_values, csp_title, csp_desc, csp_refs):
878
878
print_detail (f'{ csp_refs } ' )
879
879
880
880
881
+ def permissions_analyze_content (perm_header , i_cnt ):
882
+ perm_broad_dir = [
883
+ dir .split ('=' )[0 ].strip () for dir in perm_header .split (',' )
884
+ if any (broadp in dir .split ('=' )[1 ].strip () for broadp in t_per_broad )]
885
+ if perm_broad_dir :
886
+ permissions_print_broad (perm_broad_dir , i_cnt )
887
+
888
+
889
+ def permissions_print_broad (perm_broad_dir , i_cnt ):
890
+ print_detail_r ('[ifpol_h]' , is_red = True )
891
+ if not args .brief :
892
+ print_detail_l ('[icsp_s]' if len (perm_broad_dir ) > 1 else '[icsp_si]' )
893
+ print (f" { ', ' .join (f"'{ dir } '" for dir in perm_broad_dir )} ." )
894
+ print_detail ('[ifpol]' , num_lines = 2 )
895
+ i_cnt [0 ] += 1
896
+
897
+
881
898
def delete_lines (reliable = True ):
882
899
if not reliable :
883
900
sys .stdout .write (DELETED_LINES )
@@ -2257,6 +2274,7 @@ def custom_help_formatter(prog):
2257
2274
2258
2275
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
2259
2276
# https://github.com/w3c/webappsec-permissions-policy/blob/main/features.md
2277
+ t_per_broad = ('*' , ' * ' )
2260
2278
t_per_dep = ('document-domain' , 'window-placement' )
2261
2279
t_per_ft = ('accelerometer' , 'all-screens-capture' , 'ambient-light-sensor' ,
2262
2280
'attribution-reporting' , 'autoplay' , 'battery' , 'bluetooth' ,
@@ -2604,8 +2622,7 @@ def custom_help_formatter(prog):
2604
2622
perm_header = headers_l ['permissions-policy' ]
2605
2623
if not any (elem in perm_header for elem in t_per_ft ):
2606
2624
print_details ('[ifpoln_h]' , '[ifpoln]' , 'm' , i_cnt )
2607
- if '*' in perm_header :
2608
- print_details ('[ifpol_h]' , '[ifpol]' , 'd' , i_cnt )
2625
+ permissions_analyze_content (perm_header , i_cnt )
2609
2626
if 'none' in perm_header :
2610
2627
print_details ('[ifpoli_h]' , '[ifpoli]' , 'd' , i_cnt )
2611
2628
if any (elem in perm_header for elem in t_per_dep ):
0 commit comments