Roberto Polli
Roberto Polli
This could enable rendering automatically eg samm2 labels to https://github.com/OWASP/samm/blob/master/Current%20Releases/head/core/implementation/i-secure-build.md#maturity-2 or https://owaspsamm.org/model/operations/environment-management/stream-b/
I think we can write a rendering function where we define eg. samm2 "URI" that the webui will render to a linked page. eg. ``` function render_samm_uri(samm){ samm2:i-secure-build-b returns `Implementation...
Note to self: this model seems to conflate risk and threats, probably giving for granted the risk assessment. This conflating can be justified because we are interested in how much...
See the [new ratelimit standardization proposal](https://tools.ietf.org/id/draft-polli-ratelimit-headers-01.html). The proposal was: - recently presented at the [HTTP Workgroup during the IETF Meeting](http://bit.ly/2qWhwwD) - implemented by Kong - under implementation in 3scale it...
I have a basic experience in writing internet draft, and I'm currently working on the [Digest spec](https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html). I landed here while discussing https://github.com/httpwg/http-extensions/issues/1005 I think the first step would be...
Hi @Acconut, we've recently launched a new IETF workgroup for standardizing HTTP API Building Blocks. The mailing list is here https://www.ietf.org/mailman/listinfo/httpapi You're welcome to join and present us TUS :)
The workgroup charter is here https://datatracker.ietf.org/wg/httpapi/about/ > Its output can include the following: > • Specifications for HTTP extensions that relate to HTTP APIs (typically, new HTTP header and/or trailer...
having a standardized interface: - clarifies usage pattern with multiple examples - can be validated via a linter - allows api to be viewable from a catalog (eg. https://api.gouv.fr/api/le-taxi.html)
I'm unsure if ``` bearerFormat: JWT payload: bar ``` is valid yaml.
it's not valid yaml. ``` python -c ' import yaml; yaml.load(""" a: 1 b: 2 """) ' yaml.scanner.ScannerError: mapping values are not allowed here in "", line 3, column 3:...