OrenGitHub / dhscanner

free as in speech container scanner
https://orengithub.github.io/
1 stars 0 forks source link

Incorrect fqns in calls of ghsa example ( php ) #28

Closed OrenGitHub closed 2 months ago

OrenGitHub commented 2 months ago
kb_call( startloc_16_1_endloc_16_57 ).
kb_call( startloc_18_1_endloc_24_2 ).
kb_call( startloc_26_1_endloc_31_2 ).
kb_call( startloc_33_1_endloc_35_2 ).
kb_call( startloc_37_1_endloc_51_2 ).
kb_has_fqn( startloc_16_1_endloc_16_57, 'Route.get').
kb_has_fqn( startloc_18_1_endloc_24_2, 'Route.get'). % <--- should be composer.laravel.Route.get
kb_has_fqn( startloc_26_1_endloc_31_2, 'Route.post').
kb_has_fqn( startloc_33_1_endloc_35_2, 'Route.post').
kb_has_fqn( startloc_37_1_endloc_51_2, 'Route.post').
OrenGitHub commented 2 months ago
kb_call( startloc_16_1_endloc_16_57 ).
kb_call( startloc_18_1_endloc_24_2 ).
kb_call( startloc_26_1_endloc_31_2 ).
kb_call( startloc_33_1_endloc_35_2 ).
kb_call( startloc_37_1_endloc_51_2 ).
kb_has_fqn( startloc_16_1_endloc_16_57, 'composer.laravel.Route.get').
kb_has_fqn( startloc_18_1_endloc_24_2, 'composer.laravel.Route.get').
kb_has_fqn( startloc_26_1_endloc_31_2, 'composer.laravel.Route.post').
kb_has_fqn( startloc_33_1_endloc_35_2, 'composer.laravel.Route.post').
kb_has_fqn( startloc_37_1_endloc_51_2, 'composer.laravel.Route.post').