Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
59 views
REST Security Cheatsheet
REST Security Cheatsheet
Uploaded by
Rizki Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save REST Security Cheatsheet For Later
Download
Save
Save REST Security Cheatsheet For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
59 views
REST Security Cheatsheet
REST Security Cheatsheet
Uploaded by
Rizki Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save REST Security Cheatsheet For Later
Carousel Previous
Carousel Next
Save
Save REST Security Cheatsheet For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 9
Search
Fullscreen
9123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series REST Security Cheat Sheet Introduction REST (or REpresentational State Transfer) is an architectural style first described in Roy Fielding's Ph.D dissertation on Architectural Styles and the Design of Network-based Software Architectures. It evolved as Fielding wrote the HTTP/1.1 and URI specs and has been proven to be well-suited for developing distributed hypermedia applications. While REST is more widely applicable, it is most ‘commonly used within the context of communicating with services via HTTP, The key abstraction of information in REST is a resource. A REST API resource is identified by a URI, usually a HTTP URL. REST components use connectors to perform actions on a resource by Using a representation to capture the current or intended state of the resource and transferring that representation. The primary connector types are client and server, secondary connectors include cache, resolver and tunnel. REST APIs are stateless. Stateful APIs do not adhere to the REST architectural style. State in the REST acronym refers to the state of the resource which the API accesses, not the state of a ‘session within which the API is called. While there may be good reasons for building a stateful API, itis important to realize that managing sessions is complex and difficult to do securely Stateful services are out of scope of this Cheat Sheet: Passing state from client to backend, while ‘making the service technically stateless, is an anti-pattern that should also be avoided as it is prone to replay and impersonation attacks. In order to implement flows with REST APIs, resources are typically created, read, updated and deleted. For example, an ecommerce site may offer methods to create an empty shopping cart, to ‘add items to the cart and to check out the cart. Each of these REST calls is stateless and the endpoint should check whether the caller is authorized to perform the requested operation. Another key feature of REST applications is the use of standard HTTP verbs and error codes in the pursuit or removing unnecessary variation among different services. Another key feature of REST applications is the use of HATEOAS or Hypermedia As The Engine of Application State. This provides REST applicetions a self-documenting nature making it easier for developers to interact with @ REST service without prior knowledge. Intps:ifcheatshectseries.owasp.orgicheatsheets!REST_Seeutiy_Cheat_Sheethtml 199123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series HTTPS Secure REST services must only provide HTTPS endpoints. This protects authentication Credentials in transit, for example passwords, API keys or JSON Web Tokens. It also allows clients to authenticate the service and guarantees integrity of the transmitted deta. ‘See the Transport Layer Protection Cheat Sheet for additional information. Consider the use of mutually authenticated client-side certificates to provide additional protection for highly privileged web services. Access Control Non-public REST services must perform access control at each API endpoint. Web services in monolithic applications implement this by means of user authentication, authorization logic and session management. This has several drawbacks for modem architectures which compose multiple microservices following the RESTful style, + in ofder to minimize latency and reduce coupling between services, the access control decision should be taken locally by REST endpoints, ‘+ user authentication should be centralised in a Identity Provider (IdP), which issues access tokens JWT There seems to be a convergence towards using JSON Web Tokens (JWT) asthe format for security tokens. JWTs are JSON data structures containinga set of claims that can be used for access control decisions. A cryptographic signature or message authentication code (MAC) can be sed to protect the integrity of the JWT. + Ensure JWTs are integrity protected by either a signature ora MAC. Do net allow the unsecured JWTS: {alg © Seehere ‘+ In general, signatures should be preferred over MACS for integrity protection cf JWTs. If MACs are used for integrity protection, every service that is able 1o validate JWTs can also create new JWTs.using the same key. This means that all services using the samekey have fo mutually trust each other. Ancther consequence cf this is that a compromise of any service also compromises alll cther services sharing the same key. See here for additional information. Intps:ifcheatshectseries.owasp.orgicheatsheets!REST_Seeutiy_Cheat_Sheethtml 299123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series The relying party or token consumer validates a JWT by verifying it integity and claims contained. + Arelying party must veify the integrity of the JWT based on its own configuration or hard- coded logic. It must not rely on the information of the JWT header to select the verification algorithm. Seehere andere ‘Some claims have been standardized and should be present in JWT used for access controls. At least the following of the standard claims should be verified: ‘+ Ass orissuer~is this a trusted issuer? Is it the expected owner of the signing key? ‘+ aud or audiences the relying party in the target audience for this JWT? ‘+ exp orexpiration time- is the curent time before the end of the validity period of this teken? ‘+ nb? ornot before time -is the curent time after the start of the validity period of this token? As JWTs contain details of the authenticated entity (user etc.) disconnect can oocur between the JWT and the current state of the users session, for example, if the session is terminated earlier than the expiration time due to an explicit logout or an idle timeout. When an explicit session ‘termination event occurs, a digest or hash of any associated JWTs should be submitted to a block list on the API which will invalidate that JWT for any requests until the expiration of the token. See the JSON_Web_Token_for_Java_Cheat_Sheet forfurther details. API Keys Public REST services without access control run the risk of being farmed leading to excessive bills forbandwidth or compute cycles. API keys can be used to mitigate this risk. They ate also often Used by organisation to monetize APIs;intead of blocking high-frequency calls, cients are given access in accordance to a purchased access plan. ‘API keys can reduce the impact of deniat-of-service attacks. However, when they afe issued to third-party clients, they are relatively easy to compromise ‘+ Require API keys for every request to the protected endpoint. ‘+ Retum 429 Too Many Requests HTTP response codeif requests are coming in too quickly. ‘+ Revoke the API key if the client violates the usage agreement. + Donot rely exclusively on API keys to protect sensitive, critical or high-value resources. Restrict HTTP methods + Apply an allow list cf permitted HTTP Methods e.g. GET, PosT, PUT. Intps:ifcheatshectseries.owasp.orgicheatsheets!REST_Seeutiy_Cheat_Sheethtml 399123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series ‘* Reject all requests not matching the allow list with HTTP response code 45 Method not alloned . + Make sure the caller is authorised to use the incoming HTTP method on the resource collection, action, and record In Java EE in particular, this can be difficult to implement properly. See Bypassing Web Authentication and Authorization with HTTP Verb Tampering for an explanation of this common misconfiguration. Input validation + Do not trust input parameters/objects. + Validate input: length / range / format and type. + Achieve an implicit input validation by using strong types like numbers, booleans, dates, times or fixed data ranges in API parameters. * Constrain string inputs with regexps. + Reject unexpected/illegal content. + Make use of validation/sanitation libraries or frameworks in your specific language. + Define an appropriate request size limit and reject requests exceeding the limit with HTTP response status 413 Request Entity Too Large. + Consider logging input validation failures. Assume that someone who is performing hundreds of failed input validations per second is up to no good. + Have a look at input validation cheat sheet for comprehensive explanation. + Use a secure parser for parsing the incoming messages. If you are using XML, make sure to use a parser that is not vulnerable to XXE and similar attacks. Validate content types ‘A REST request or response body should match the intended content type inthe header. Otherwise this could cause misinterpretation at the consumet/producer side and lead to code injection /execution, ‘+ Document all supported content types in your API. Validate request content types Intps:ifcheatshectseries.owasp.orgicheatsheets!REST_Seeutiy_Cheat_Sheethtml 499123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series ‘Reject requests containing unexpected or missing content type headers with HTTP response status 406 Unacceptable OF 415 Unsupported Media Type. ‘+ For XML content types ensure appropriate XML parser hardening, see the XXE cheat sheet, ‘+ Avoid accidentally exposing unintended content types by explicitly defining content types eg. Jersey (Java) Sconsumes(“application/ json"); @produces("application/json") . This avoids XXE-altack vectors for example. ‘Send safe response content types Itis common for REST services to allow multiple response types (@.g. aoplication/xnl or appLicetion/ json, and the client specifies the preferred order of response types Ly the Accept header in the request. ‘+ DoNOT simply copy the Accept headerto the Content-type header of theresponse. + Reject the request (ideally with 9 406 Not Accepteble response) ifthe Accept header does Not specifically contain one of the allowable types. Services inching script code (e.g. JavaScript) in ther responses must be especially careful to defend against header injection attack. + Ensure sending intended content type headers in your response matcting your body content €g, application/json andNnct application/javascript. Management endpoints ‘+ Avoid exposing management endpoints via Intemet. ‘+ If management endpoints must be accessible via the Intemet, make sure that users must use a strong authentication mechanism. e.g. multifactor. ‘+ Expose management endpoints via different HTTP ports or hosts preferably on a different NIC ‘and restricted subnet. ‘+ Restrict access to these endpoints by firewall rules or use of access control lists. Error handling + Respond with genetic error messages - avoid revealing details cf the failure unnecessarily. ‘+ Donot pass technical details (e.g, call stacks or other intemal tints) to the client. Intps:ifcheatshectseries.owasp.orgicheatsheets!REST_Seeutiy_Cheat_Sheethtml 599123122, 8:50 AM REST Secunty - OWASP Cheat Sheet Series Audit logs ‘+ Write audit logs before and after security related events. + Consider logging token validation errors in order to detect attacks. ‘+ Take care of log injection attacks by sanitizing log data beforehand. Security Headers ‘There are anumber of security related headers that can be retumedin the HTTP responses 10 instruct browsers to act in specific ways. Hewever, some of these headers are intended tobe used with HTML responses, and as such may provide little orno security benefits on an API that does not return HTML. The following headers should be included in all API responses: Header Rationale Cache-Control: no-store Prevent sensitive information from being cached. Content-Seeurity-Policy To protect against drag-and-
You might also like
REST API Presentation
PDF
No ratings yet
REST API Presentation
35 pages
Owasp Api Security Top 10 Cheat Sheet A4
PDF
No ratings yet
Owasp Api Security Top 10 Cheat Sheet A4
3 pages
REST Security - OWASP Cheat Sheet Series
PDF
No ratings yet
REST Security - OWASP Cheat Sheet Series
10 pages
API Security
PDF
No ratings yet
API Security
51 pages
Dzone Refcard260 Restapisecurity
PDF
No ratings yet
Dzone Refcard260 Restapisecurity
8 pages
OWASP API Security Top 10 Cheatsheet-1
PDF
No ratings yet
OWASP API Security Top 10 Cheatsheet-1
11 pages
Restfulapi Net Security Essentials
PDF
No ratings yet
Restfulapi Net Security Essentials
18 pages
Hacking APIs Web API Pentesting Essentials v2 1
PDF
No ratings yet
Hacking APIs Web API Pentesting Essentials v2 1
38 pages
Hacking Web APIs
PDF
No ratings yet
Hacking Web APIs
45 pages
Presentation On JWT
PDF
No ratings yet
Presentation On JWT
12 pages
Servicenow Rest Cheat Sheet
PDF
100% (1)
Servicenow Rest Cheat Sheet
3 pages
135.1 REST API security
PDF
No ratings yet
135.1 REST API security
4 pages
ServiceNow REST Cheat Sheet 1686933541
PDF
No ratings yet
ServiceNow REST Cheat Sheet 1686933541
3 pages
github-com-inonshk-31-days-of-API-Security-Tips
PDF
No ratings yet
github-com-inonshk-31-days-of-API-Security-Tips
8 pages
Hacking and Defending APIs 1.1
PDF
No ratings yet
Hacking and Defending APIs 1.1
31 pages
API Security Project: Kick Off
PDF
No ratings yet
API Security Project: Kick Off
26 pages
Webcast 116220 PDF
PDF
No ratings yet
Webcast 116220 PDF
76 pages
REST Vs GraphQL
PDF
No ratings yet
REST Vs GraphQL
37 pages
Rest API Authentication
PDF
No ratings yet
Rest API Authentication
18 pages
(English) Top 12 Tips For API Security (DownSub - Com)
PDF
No ratings yet
(English) Top 12 Tips For API Security (DownSub - Com)
11 pages
REST API (1)
PDF
No ratings yet
REST API (1)
5 pages
Security Is Not.: A REST Web Services Gateway
PDF
No ratings yet
Security Is Not.: A REST Web Services Gateway
7 pages
Security Testing For REST Applications
PDF
No ratings yet
Security Testing For REST Applications
25 pages
REST API (2)
PDF
No ratings yet
REST API (2)
5 pages
Unit - III - WEB SECURE API
PDF
No ratings yet
Unit - III - WEB SECURE API
34 pages
REST API Security Cheat Sheet - 1714665717010
PDF
No ratings yet
REST API Security Cheat Sheet - 1714665717010
16 pages
hackanythingfor-blogspot-com-2020-07-api-testing-checklist-html
PDF
No ratings yet
hackanythingfor-blogspot-com-2020-07-api-testing-checklist-html
5 pages
Python and REST APIs - Interacting With Web Services - Real Python
PDF
100% (1)
Python and REST APIs - Interacting With Web Services - Real Python
35 pages
API Security Interview Questions
PDF
No ratings yet
API Security Interview Questions
10 pages
REST API
PDF
No ratings yet
REST API
5 pages
Attacking Apis
PDF
No ratings yet
Attacking Apis
78 pages
Server Side Request Forgery Prevention Cheatsheet
PDF
No ratings yet
Server Side Request Forgery Prevention Cheatsheet
12 pages
Restful Api
PDF
No ratings yet
Restful Api
27 pages
Web API Security
PDF
No ratings yet
Web API Security
29 pages
42crunch OWASP 2023 Datasheet 4p v1
PDF
No ratings yet
42crunch OWASP 2023 Datasheet 4p v1
4 pages
Was Cia Answers
PDF
No ratings yet
Was Cia Answers
24 pages
apihackingin90minutes1660919248744
PDF
No ratings yet
apihackingin90minutes1660919248744
51 pages
API Testing Checklist
PDF
No ratings yet
API Testing Checklist
7 pages
Web API & Interviewer Question
PDF
No ratings yet
Web API & Interviewer Question
7 pages
Defending API
PDF
No ratings yet
Defending API
65 pages
API_Security_white_paper
PDF
No ratings yet
API_Security_white_paper
12 pages
How To Hack API in 60 Minutes or API Threats Simulation With Open-Source Tools
PDF
No ratings yet
How To Hack API in 60 Minutes or API Threats Simulation With Open-Source Tools
16 pages
Important Api Testing Interview Question N Answers.
PDF
No ratings yet
Important Api Testing Interview Question N Answers.
15 pages
Cross Site Leaks Cheatsheet
PDF
No ratings yet
Cross Site Leaks Cheatsheet
12 pages
usenixsecurity24-du
PDF
No ratings yet
usenixsecurity24-du
18 pages
Vulnerability-Oriented Testing For RESTful APIs
PDF
No ratings yet
Vulnerability-Oriented Testing For RESTful APIs
17 pages
Workshop 7
PDF
No ratings yet
Workshop 7
26 pages
REST & MERN
PDF
No ratings yet
REST & MERN
35 pages
API Security Top 10 RC PDF
PDF
No ratings yet
API Security Top 10 RC PDF
42 pages
OWASP API Security Top 10 (2019)
PDF
No ratings yet
OWASP API Security Top 10 (2019)
31 pages
RESTful API (with RoR)
PDF
No ratings yet
RESTful API (with RoR)
15 pages
API Penetration Testing
PDF
No ratings yet
API Penetration Testing
15 pages
owasp api
PDF
No ratings yet
owasp api
39 pages
DZone REST Refcard 2011
PDF
No ratings yet
DZone REST Refcard 2011
7 pages
API Security The Complete Guide To Threats, Methods Tools
PDF
No ratings yet
API Security The Complete Guide To Threats, Methods Tools
25 pages
OCTO-Refcard API Security BD
PDF
No ratings yet
OCTO-Refcard API Security BD
2 pages
RESTful APIs
PDF
No ratings yet
RESTful APIs
13 pages
SQL Injection Prevention Cheatsheet
PDF
No ratings yet
SQL Injection Prevention Cheatsheet
14 pages
Pinning Cheat Sheet
PDF
No ratings yet
Pinning Cheat Sheet
8 pages
PHP Configuration Cheatsheet
PDF
No ratings yet
PHP Configuration Cheatsheet
3 pages
Ruby On Rails Cheatsheet
PDF
No ratings yet
Ruby On Rails Cheatsheet
13 pages
Insecure Direct Object Reference
PDF
No ratings yet
Insecure Direct Object Reference
6 pages
Xss Filter Evasion Cheatsheet
PDF
No ratings yet
Xss Filter Evasion Cheatsheet
32 pages
Xss Prevention
PDF
No ratings yet
Xss Prevention
10 pages
Virtual Patching Cheatsheet
PDF
No ratings yet
Virtual Patching Cheatsheet
10 pages
Password Storage Cheatsheet
PDF
No ratings yet
Password Storage Cheatsheet
7 pages
XML Security Cheatsheet
PDF
No ratings yet
XML Security Cheatsheet
22 pages
XML External Entity Prevention Cheatsheet
PDF
No ratings yet
XML External Entity Prevention Cheatsheet
18 pages
Transport Layer Protection Cheatsheet
PDF
No ratings yet
Transport Layer Protection Cheatsheet
9 pages
Session Management Cheatsheet
PDF
No ratings yet
Session Management Cheatsheet
20 pages
Third Party Javascript Management Cheatsheet
PDF
No ratings yet
Third Party Javascript Management Cheatsheet
11 pages
Threat Modeling Cheatsheet
PDF
No ratings yet
Threat Modeling Cheatsheet
12 pages
JSON Web Token Cheatsheet For Java
PDF
No ratings yet
JSON Web Token Cheatsheet For Java
14 pages
Secret Management Cheatsheet
PDF
100% (1)
Secret Management Cheatsheet
22 pages
Nodejs Security Cheatsheet
PDF
No ratings yet
Nodejs Security Cheatsheet
18 pages
Injection Prevention Cheatsheet
PDF
No ratings yet
Injection Prevention Cheatsheet
11 pages
SAML Security Cheatsheet
PDF
No ratings yet
SAML Security Cheatsheet
6 pages
Input Validation Cheatsheet
PDF
No ratings yet
Input Validation Cheatsheet
9 pages
Mass Assignment Cheatsheet
PDF
No ratings yet
Mass Assignment Cheatsheet
7 pages
Laravel Cheatsheet
PDF
No ratings yet
Laravel Cheatsheet
13 pages
Logging Vocabulary Cheatsheet
PDF
No ratings yet
Logging Vocabulary Cheatsheet
26 pages