chrislujan

Results 3 issues of chrislujan

https://github.com/OISF/libhtp/blob/9cce4fb5348027fe666f21beeb829324a3afe79a/htp/htp_parsers.c#L178 This will flag the authorization header as HTP_AUTH_UNRECOGNIZED for Bearer tokens. Would it make sense to add 'bearer' as a type?

Added support for AWS auth When the following attributes are present, a different client will be created. ``` aws_access_key_id aws_secret_access_key region ```

status:needs-triage

## Describe the bug An instance of rswag configured like: ``` Rswag::Ui.configure do |c| c.swagger_endpoint '/apidocs', 'API V1 Docs' c.basic_auth_enabled = true c.basic_auth_credentials 'aaa', 'XXX' end ``` Will leak the...