caido-community / authmatrix

Caido plugin for grid-based authorization testing across multiple users and roles
Creative Commons Zero v1.0 Universal
3 stars 2 forks source link

Group same request under the same row #14

Open Splinter0 opened 2 days ago

Splinter0 commented 2 days ago

Right now it is quite noisy as requests that are repeated do not get grouped and instead are treated as completely new requests. This messes up the table a bit and also make the analyze process slower.

Corb3nik commented 15 hours ago

Good idea :) Challenge here is to figure out how identify duplicate requests... Is creating a signature from VERB + HOST + PATH + QUERY PARAMS enough? Or do we want to take the request bodies into account?

Splinter0 commented 9 hours ago

I think we could start by grouping the GET requests, then in the future figure out some sort of way of grouping requests under the same path maybe with some sort of dropdown solution or similar, what do you think?