Using sslscan version 2.2.2, the --sleep flag only works when used as --sleep=<ms>, not when used as --sleep <ms>.
This is very confusing and I first thought that the sleep flag didn't work at all.
$ time sslscan --sleep 100 example.org
...
________________________________________________________
Executed in 2.55 secs fish external
usr time 268.20 millis 0.00 millis 268.20 millis
sys time 32.73 millis 1.26 millis 31.46 millis
$ time sslscan --sleep=100 example.org
...
________________________________________________________
Executed in 16.58 secs fish external
usr time 271.11 millis 1.37 millis 269.74 millis
sys time 69.31 millis 0.28 millis 69.03 millis
Using
sslscanversion 2.2.2, the--sleepflag only works when used as--sleep=<ms>, not when used as--sleep <ms>.This is very confusing and I first thought that the sleep flag didn't work at all.