OWASP / O-Saft

O-Saft - OWASP SSL advanced forensic tool
GNU General Public License v2.0
373 stars 86 forks source link

feature suggestion #159

Open kylak opened 2 months ago

kylak commented 2 months ago

Hi,

I think this feature could be resting : In one command to be able to associate a specific range to a specific protocol as an option of the +cipher command (instead of simply specifying a range for all protocols with +cipher --cipher-range=huge for example).

Regards.

EnDe commented 2 months ago

already implemented, --cipher-range=huge --range=huge --cipher=huge are all the same Or even use something like: echo "--cipher-range=huge" >.o-saft.pl

If you want it based per protocol, you may use its own RC-File for each. One example: (echo "--cipher-range=huge" ; echo "--notcp"; echo "--noudp"; echo "--tlsv13"; echo "+cipher") >.tlsv13rc ./o-saft.pl --rc=.tlsv13rc some.tld

Is this what you want?