Results 14 comments of Tyler Ham

I ran into the same problem. This fix worked for me.

I just stumbled across [CVE-2018-1000874](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000874) referencing this issue and wanted to leave a note with my thoughts. I disagree with the CVE-2018-1000874 being assigned as an XSS vulnerability in `cebe/markdown`....

No problem. I also put in a request and just received this response from Mitre: > Thank you for your submission. CVE-2018-1000874 has been updated to a status of DISPUTED,...

In this pull request, I specified that the credential scope query string parameter name is `Credential` (singular), as in `X-Escher-Credential`. This matches the singular `Credential` used in the auth header...

I added a commit to fix the typos. My first instinct of the addition was in fact a `LightController` subclass of `Controller` instead of a Trait. Here is why I...

What code or library generated this string? The 13th character represents the UUID version. In the case of your string, the `9` in **9**c60 indicates UUID version 9. However, the...

Technically speaking, I am open to relaxing the validator for UUIDv2. But I believe something strange is happening if both of these strings came from the same UUID generator. The...

There are a couple of ways you might go about this. If some of your actions are authenticated and some are not, you could establish two separate rate limiter behaviors...

There are a couple of problems with your approach on the User model implementing `RateLimitInterface`. One might be issue #3 (if so, see the workaround in that issue). The other...

Does the "Trying to get property 'id' of non-object" message refer to the ` Yii::$app->user->getIdentity()->id` line? Try wrapping the `identity` definition in a function: ```php 'identifier' => function($context, $rateLimitId) {...