miniOrange API security using SAML federated identity enables applications to share identity information across domains. The user is authenticated using the identity information provided by the IDP, and transferred to SP to access the application or service.
If the application is federated using SSO protocols such as SAML/OAuth/OIDC, the user generally doesn’t know his/her application credentials. The user only knows the credentials of Identity Provider in this case. Hence basic authentication in such cases doesn’t work.
This is where our solution comes into the picture. We provide REST API authentication for various applications using the federated identity. Using miniOrange API gateway, you can authenticate the REST APIs of your application using login with SAML/OAuth/OIDC providers.
We provide an option to enforce the use of HTTP over SSL in API requests, which transfer your credentials securely.
Validate request parameters on the very first step, before it reaches your API Server. Our strong validation checks blocks the access immediately if input validation fails, which helps to prevent SQL injection and other attacks.
We support the input validation specified by OWASP REST Security guidelines.
Along with other request parameters, we provide option to add a request timestamp as HTTP custom header in API request. The server will compare the current timestamp to the request timestamp, and only accepts the request if it is within the allowed timeframe (60-300 seconds). This will prevent replay attacks from attackers who are trying to brute force your system without changing this timestamp.
We support API requests and responses in signed manner as a added security.
API call with digitally signed requests make sure that API requests are coming from the trusted partner or client.
We protect your APIs with rate-limiting to mitigate distributed denial-of-service (DDoS) attacks and protecting the backend applications that process the API calls.