SBN

API Penetration Testing Explained

The recent growth of APIs has introduced a number of new security challenges. And while API penetration testing shares a lot in common with an application pentest, there are new and unique vulnerabilities not always covered by these assessments.

This gap has demanded a new, more specialized, process for API penetration testing.

What is API Penetration Testing?

An API penetration test is a process to identify security vulnerabilities in an API. It is designed to determine if an API is susceptible to vulnerabilities that may include the following:

  • Sensitive information disclosure.
  • API Mass Assignment.
  • Bypass of access controls.
  • Broken authentication.
  • SQL Injection and other input validation flaws.

API pentests are performed on a wide variety of protocols and schemes including REST, SOAP, and RPC.

API Pentesting vs Application Pentesting

API Penetration Testing is a closely related assessment to application penetration testing. However, while many of the tasks performed in these assessments overlap, there are key differences that are unique to API frameworks and design patterns.

In many cases, an “API pentest” is implicitly performed as part of an application pentest. But other times, a standalone API may warrant a more tailored API penetration test.

This is typically determined during a scoping process.

API Pentest Scoping

As with application pentesting, API pentest scoping is as important as the pentest itself. Critical preparations must be made, such as:

  • Deciding if a client is necessary to generate and send requests to the API.
  • Understanding what API documentation exists and what can be provided.
  • Understanding roles, authentication methods, and API design.

When engaging a pentest company there are many key decisions to make as to how the pentest is both performed and delivered.

Common API Vulnerabilities

API penetration tests often reveal several vulnerabilities that are unique to APIs.

Information Disclosure

APIs often reveal more information than they should. API responses are notorious for revealing excessive and sometimes dangerous amounts of information.

API Information Disclosure

An API pentest should ask questions such as:

  • Should password hashes be disclosed to users?
  • Should users see the locations of other users?

It’s an easy pitfall for developers to encounter where API responses return the entire state of an object rather than the minimum amount of information necessary for users to have.

API Mass Assignment

API Mass Assignment is a condition where a client can overwrite server-side variables that the application should not allow. This is often a high risk vulnerability that can allow users to escalate privileges and manipulate business logic.

API Mass Assignment

API Authentication Vulnerabilities

API authentication schemes have unique security requirements as well. A holistic API pentest should review how access tokens are generated and revoked, and dive into specific weaknesses of those tokens.

API Pentesting and XSS

Cross-site Scripting (XSS) is a ubiquitous vulnerability on pentest reports. As you might have guessed, this problem is still very relevant to APIs. But things are not so black and white when dealing with an API.

For example, can you tell if the following response indicates an XSS vulnerability?

HTTP/1.1 200 OK
[..]

{"name":"bob<script>alert(1)</script>"}

The answer actually depends on the Content-Type header. If the following Content-Type is set, the API would not be vulnerable:

Content-Type: application/json; charset=utf-8

However, a Content-Type treating the response as HTML would, in fact, be vulnerable:

Content-Type: text/html

API Pentesting and CSRF

Cross-Site Request Forgery (CSRF) may also be identified during an API penetration test. Like XSS, a number of behaviors must be reviewed to determine if the finding is valid.

These include behaviors such as:

  • Does the API require JSON? Or can POST parameters be substituted?
  • Is a Content-Type request header such as application/json enforced?
  • Are cookies in use and do they use SameSite properties?
  • Does the application reject malformed JSON?

CORS Policies

Cross-Origin Resource Sharing (CORS) is also a common source of misconfigurations. CORS is a specification to relax the same-origin policy enforced by browsers.

Care must be taken to ensure that an overly permissive CORS policy does not undermine API security.

API Pentesting Tools

Diving into the mechanics of testing, the core tools used for API Pentests are largely the same as general application testing. Frameworks like Burpsuite are commonly used to tamper with parameters and scan requests.

But the most meaningful API testing is done when integrating Postman or Swagger UI with these testing frameworks. Postman, as shown below, will typically be configured to use Burp via system proxy settings.

Postman API Pentesting

Binding Data Securely

At some point, most API web-based applications will ‘bind’ data. This takes an API response and includes it in the DOM shown on screen to users.

For web-based applications using APIs, data binding methods can be a critical area of security. This also highlights an important relationship that exists between web-based clients and their API.

Let’s compare the safe and dangerous ways to bind the API response for the username "username":"pentest<b>user1</b>":

API data binding

When APIs store either script or HTML content, the web application must be assessed to determine how this data binds to DOM. Although this is rarely considered a vulnerability in the API itself, it is an important relationship that should be analyzed during the pentest.

API Rate Limiting

APIs are frequent targets of abuse, especially when intended for public use. Rate limiting has become a vital defense for large API providers to deter bots and other automated attacks.

An API pentest seeks to identify endpoints which may be susceptible to automated attacks and recommend rate limiting accordingly.

Below shows an example response to excessive requests:

HTTP/1.1 429 Too Many Requests
Content-Type: text/html
Retry-After: 3600

Conclusion

API Pentesting is a complex process and highly subjective to the design of each API. These topics should help provide guidance for both performing or contracting a better API pentest.

If you’re looking for help on how to better assess an API, check out pentest services and drop us a line.

*** This is a Security Bloggers Network syndicated blog from Blog – Virtue Security authored by Elliott. Read the original post at: http://www.virtuesecurity.com/api-penetration-testing/