-
Notifications
You must be signed in to change notification settings - Fork 236
Filtering results
A list of unwanted HTTP Codes may be provided. Cansina will filter those response codes ignoring them.
$ cansina -u <target> -p <payload> -b 404,400,500
A list of wanted HTTP Codes may be provided. Cansina will ignore responses without this/these codes.
$ cansina -u <target> -p <payload> -B 200
$ cansina -u <target> -s <size> -p <payload>
If you don't want a response and know its size is fixed this could help skipping all those responses.
Also, it can be a list of sizes:
$ cansina -u <target> -s <size, size, size...> -p <payload>
$ cansina -u <target> -p <payload> -D
First, Cansina will try to make and remember a 404 response and will skip similar responses. Machine decision so, used with caution.
$ cansina -u <target> -p <payload> -d <look_for_this_text>
If the provided content is found it will be processed as a 404 Not Found page.