Jeff Robbins
Jeff Robbins
The package support `aws_mfa_device` in the credentials file, but we were wondering why it didn't use the parameter AWS documented [here](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html#cli-configure-files-where) called `mfa_serial`? Are the two equivalent, except for one...
### Describe the bug [pip-audit ](https://pypi.org/project/pip-audit/) is flagging `aiohttp` as having a `Moderate` vulnerability, apparently due to https://github.com/aio-libs/aiohttp/issues/6772. Found 1 known vulnerability in 1 package Name Version ID Fix Versions...
https://github.com/cak/secure/blob/04dd035e560583baeba06f5714f273b542c07767/secure/headers.py#L452 The examples of adding a nonce to CSP that I've seen in, e.g., https://csp.withgoogle.com/docs/strict-csp.html#example and https://content-security-policy.com/nonce/ show `'nonce-rAnd0m'`. The [CSP3 spec](https://www.w3.org/TR/CSP3/) specifies the nonce production as: ``` ; Nonces:...
I recently switched a Python Lambda function from synchronous to asyncio. Some of my unit tests (using `moto`) broke, raising `AttributeError: 'AWSResponse' object has no attribute 'raw_headers'` I searched issues...
I'm using a third-party API which has this `securityScheme`: ``` components: securitySchemes: jwtAuth: type: apiKey in: header name: Auth ``` and this path (redacted as it is not my API):...
**Is your feature request related to a problem? Please describe.** I have a 3rd party schema describing an API which returns a PDF file with `content` `application/pdf` **Describe the solution...
**Describe the bug** If a `get` path has a parameter using `$ref` to point to `#/components/parameters`, the generated API lacks the corresponding `kwarg`. If one "hoists" the indirect parameter up...
(Note: I've read [the entry point caveat](https://github.com/mhammond/pywin32#the-specified-procedure-could-not-be-found--entry-point-not-found-errors), but am still in need of some guidance.) * Steps to reproduce the problem. On a freshly created AWS EC2 (running a Windows_Server-2019-English-Full-Base-2021.11.10...
Whether the `cookie_https_only` initializer is set to `True` or `False`, `self.security_flags` always had `httponly;` in it. For testing, I'd like to turn off `httponly`. ``` File: starsessions\middleware.py 58: self.security_flags =...
Line 93 says `no matter whether it was initially empty`, but lines 88 through 91 seem to have already dealt with the "initially empty" case without removing the cookie or...