Issue 106: API flaws at GitLab and Grindr, APICheck, API World and apidays conferences next week


This week, we have the recent API vulnerabilities at GitLab and Grindr, the APICheck tool gets donated to OWASP, there’s a summary on the basics of API authentication options, and complimentary registration links for the online conferences API World and apidays London next week.

Vulnerability: GitLab

Riccardo Padovani found an API vulnerability in GitLab related to Elasticsearch retrieving information in code and wikis of private groups by not authorized users.

This happened for groups that used to be public but were changed into a private group. Search API calls like /api/v4/search?search=password&scope=blobsย  could allow accessing data that was now supposed to be private. This issue clearly had its root in indexing and caching data, because if the work in the group continued, reindexing of the data got rid of the problem. However, if the data was never reindexed, the problem would have persisted.

This is an older vulnerability that got fixed quite some time ago, but it was not disclosed until recently.

Lesson learned: Make sure your performance optimization does not put security at risk.

Vulnerability: Grindr

From last week’s “dating blocks” to dating apps this week. An excessive data exposure flaw in Grindr’s password reset API allowed full account takeover.

The Grindr website allows users to reset their password. You enter an email address and a password reset token is sent to this email address. The problem was that under the hood the API behind the web page also returned the the secret reset code (and in plaintext):

That means that attackers did not have to get access to the actual email inbox. They could simply pick the reset code from the API response and reset the victim’s password. The additional “precaution” of verifying the login with the new password in Grindr app did not really protect anything.

Once the disclosure of the vulnerability finally succeeded (an instructive story in itself), the vulnerability was luckily quickly fixed.

Lesson learned:

  • There’s a reason why API3:2019 โ€” Excessive data exposure is in OWASP API Security Top 10.
  • Document (and also review) what your APIs return and how they are used. In this particular case:
    • Was the API returning the reset code for debugging purposes and someone forgot to remove the behavior?
    • Was the same API also used somewhere internally by another function that needed the code to store or validate it? That kind of double use of one API for two scenarios with different security levels is bad.

We covered earlier API vulnerabilities in Grindr and other dating apps, for example, in our issue 45.

Tools: APICheck

BBVA Innovation Security Labs has donated their APICheck tool to OWASP.

The APICheck tool is both a set of API testing utilities and an extensible pipeline to chain these utilities together. You can take the JSON output from one utility and pass it as the input to the next one.

The out of box utilities include:

  • OpenAPI linters
  • Request replay
  • JWT validator
  • Sensitive data detector
  • Proxy
  • acurl (cURL with reqres output)

Technology 101: API authentication

If you are only getting started with API authentication, Tammy Xu has posted an article with an overview of the most common authentication mechanisms and the pros and cons of each. The mechanisms are:

  • Basic authentication
  • OAuth
  • Mutual TLS

Free API conference passes: apidays London and API World

Next week, two API-related conferences are taking place: apidays London on Oct 27โ€”28 and API World on Oct 27โ€”29.

Obviously, both are virtual so you can attend from the comfort of your own home. Both have talks related to API security, so check out the agendas.

And there are free passes available for both events:


Get API Security news directly in your Inbox.

By clicking Subscribe you agree to our Data Policy