{"id":629,"date":"2025-01-28T11:13:00","date_gmt":"2025-01-28T10:13:00","guid":{"rendered":"https:\/\/itsonix.laolaweb.com\/?p=629"},"modified":"2026-05-13T11:14:26","modified_gmt":"2026-05-13T09:14:26","slug":"uncertainty-with-residual","status":"publish","type":"post","link":"https:\/\/itsonix.eu\/en\/blog\/unsicherheit-mit-rest\/","title":{"rendered":"(In)security with REST"},"content":{"rendered":"<p class=\"wp-block-paragraph\">In today's interconnected world, APIs are the backbone of modern software architecture. They enable efficient and flexible communication between different systems and are widely used even in sensitive sectors such as finance and healthcare.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The use of REST APIs is growing rapidly due to the increasing adoption of microservices and cloud services, with the number of API calls now growing twice as fast as traditional HTML traffic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, with the growing prevalence of REST APIs, a critical question arises: How secure are these interfaces, really, and what challenges do companies face in implementing and using them?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What are REST APIs?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">REST, short for \u201eRepresentational State Transfer,\u201c was introduced by Roy Fielding in 2000 and has since become the standard for web services. This architectural style is based on the fundamental principles of the World Wide Web and uses standardized HTTP methods such as GET, POST, PUT, and DELETE to interact with resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A core principle of REST is statelessness: Every request to a server must contain all the information necessary to be understood and processed without relying on context information stored on the server. This resource-oriented approach and statelessness make REST APIs particularly flexible, scalable, and easy to implement.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">REST APIs are characterized by their simplicity and elegance, as illustrated by the example of a typical API call: \u201eGET \/accounts\/123abc.\u201c This simplicity has contributed to the widespread adoption of REST APIs, which are used in nearly all areas of software development. Nevertheless, they also present specific challenges, particularly with regard to security.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Security Challenges<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">It is precisely the popularity and versatility of REST APIs that pose significant security challenges. Developers face a fundamental dilemma: On the one hand, REST APIs should be easy to use and integrate in order to fully leverage their benefits. On the other hand, they must be robustly protected against misuse and attacks.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A poorly secured REST API can be exploited even without in-depth technical knowledge. This is particularly critical in areas where sensitive data is processed. A successful attack on an API can lead to data breaches, financial losses, and serious damage to a company\u2019s reputation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Therefore, it is essential to use standard authentication methods such as OAuth, JWT (JSON Web Token), or HTTP Basic (username, password) and to always encrypt the communication channel using HTTPS.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To ensure the security of REST APIs, it is important to integrate security considerations into the development process from the very beginning, rather than adding them as an afterthought. Concepts such as \u201esecurity by design\u201c help identify and prevent security vulnerabilities early on.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">OWASP API Security Top 10<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To raise awareness among developers and companies about the specific security risks associated with APIs, the Open Worldwide Application Security Project (OWASP) Foundation regularly publishes the API Security Top 10. This list of the most common and critical security risks for APIs serves as an important guide for developing and operating secure APIs. The current Top 10 (2023) includes, among others:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>1. Broken Object Level Authorization (BOLA):<\/strong> APIs tend to expose endpoints for object IDs, which poses an increased risk of access control issues. Every access to data sources must be carefully reviewed.<br><strong>2. Broken Authentication:<\/strong> Flaws in authentication mechanisms allow attackers to compromise authentication tokens or impersonate other users.<br><strong>3. Broken Object Property Level Authorization:<\/strong> Inadequate checks at the object level can lead to unauthorized access to or manipulation of data by unauthorized individuals.<br><strong>4. Unrestricted Resource Consumption:<\/strong> APIs that operate without resource limits are vulnerable to denial-of-service attacks and can result in high operating costs.<br><strong>5. Broken Function Level Authorization:<\/strong> Complex permission policies often create vulnerabilities that allow attackers to access other users' resources or administrative functions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Alarming study findings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The study, titled \u201eScorched Earth: Hacking Bank APIs\u201c (2021, Alissa Knight), revealed shocking security vulnerabilities in banks\u2019 APIs. The findings were alarming:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>54 of the 55 mobile banking apps examined contained hard-coded API keys and tokens, including usernames and passwords for third-party services.<\/li>\n\n\n\n<li>All 55 apps tested were vulnerable to man-in-the-middle attacks.<\/li>\n\n\n\n<li>100 % of the APIs tested had vulnerabilities in object-level authorization (BOLA).<\/li>\n\n\n\n<li>All APIs were vulnerable to authentication issues.<\/li>\n\n\n\n<li>In one particularly alarming case, it was discovered that a bank had outsourced its code development and that the developer had reused the same vulnerable code for hundreds of other banks. These findings strongly underscore the need for a comprehensive and consistent approach to API security.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Best Practices for API Security<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Given these challenges and risks, it is crucial to follow best practices for API security. Here are some key best practices:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Strong Authentication and Authorization:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Implementation of strong authentication mechanisms, preferably using standards such as OAuth2 or OpenID Connect<\/li>\n\n\n\n<li>Implementing granular access control at the object and function levels<\/li>\n\n\n\n<li>Use of Short-Lived Tokens and Implementation of Secure Token Management<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Input Validation and Output Filtering:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Strict validation of all input to prevent injection attacks<\/li>\n\n\n\n<li>Filter API responses to return only the necessary data and avoid excessive data exposure<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Rate Limiting and Quotas:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Implementation of rate limits and quotas per API key to prevent DDoS attacks and abuse<\/li>\n\n\n\n<li>Monitoring Unusual Usage Patterns and Responding Accordingly<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Encryption and Secure Communication:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Use of HTTPS for All API Endpoints<\/li>\n\n\n\n<li>Implementation of additional application-level encryption for particularly sensitive data<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Continuous Monitoring and Logging:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Real-time monitoring of API traffic<\/li>\n\n\n\n<li>Comprehensive logging for all API activities<\/li>\n\n\n\n<li>Use of anomaly detection systems to detect unusual patterns or potential attacks at an early stage<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Security-focused development (\u201eSecurity by Design\u201c and \u201eDevSecOps\u201c):<\/strong>\n<ul class=\"wp-block-list\">\n<li>Establishment of security-oriented development processes to ensure the implementation of secure authentication mechanisms, as described in point 1<\/li>\n\n\n\n<li>\u201eSecurity by Design\u201c ensures that security considerations are prioritized in every phase of a project, from conception to rollout<\/li>\n\n\n\n<li>\u201eDevSecOps\u201c enables continuous monitoring and automation of security testing throughout the entire development cycle<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion and Outlook<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security of REST APIs plays a central role in our interconnected world. Security vulnerabilities, particularly in sensitive areas such as the financial sector, can have serious consequences. That is why companies and developers should consistently prioritize securing their APIs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The future of API security lies in integrating security considerations throughout the entire development and operations process. Concepts such as \u201eSecurity by Design\u201c and \u201eDevSecOps\u201c are becoming increasingly important. This involves integrating security aspects into the development process from the very beginning, rather than adding them as an afterthought.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Technologies such as API gateways and specialized API security solutions provide additional layers of protection. They enable centralized management of authentication, authorization, and monitoring across multiple APIs. Artificial intelligence and machine learning are increasingly being used to detect anomalies and respond to new threats.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The challenge lies in striking a balance between ease of use and security. REST APIs must be easy to use in order to fully leverage their benefits, while at the same time being robustly protected against potential attacks. With the right approach, continuous vigilance, and the use of modern security technologies, companies can deploy secure and effective REST APIs that form the backbone of modern, connected applications while maintaining user trust.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In an increasingly data-driven world, securing interfaces is more than just a technical necessity. It is becoming a strategic priority for every forward-looking company.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Commitment to API Security<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The question is: What would our software be if our customers couldn't rely on its security?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Our Security Circle understands the critical importance of security in modern software development. It is deeply engaged with the latest developments and best practices in the field of IT security, particularly API security. This primarily includes establishing DevSecOps in our projects and regularly conducting internal and external penetration tests on our implementations. Through the company-wide standards we have established, we underscore our commitment to the highest security standards in all our products and services.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This proactive approach to IT security not only strengthens our company, but\u2014above all\u2014benefits our customers by providing solutions whose security and reliability they can always count on.<\/p>","protected":false},"excerpt":{"rendered":"<p>In der heutigen vernetzten Welt sind APIs das R\u00fcckgrat moderner Softwarearchitektur. Sie erm\u00f6glichen eine effiziente und flexible Kommunikation zwischen verschiedenen Systemen und sind auch in sensiblen Bereichen wie dem Finanz- und Gesundheitswesen weit verbreitet. Die Verwendung von REST-APIs steigt durch den zunehmenden Einsatz von Microservices und Cloud-Services rasant, wobei die Anzahl der API-Aufrufe inzwischen doppelt [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":632,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[19],"tags":[],"class_list":["post-629","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-it-beratung"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>(Un)Sicherheit mit REST - IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen<\/title>\n<meta name=\"description\" content=\"it Sonix Blog: (Un)Sicherheit mit REST\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsonix.eu\/en\/blog\/uncertainty-with-residual\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"(Un)Sicherheit mit REST - IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\" \/>\n<meta property=\"og:description\" content=\"it Sonix Blog: (Un)Sicherheit mit REST\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsonix.eu\/en\/blog\/uncertainty-with-residual\/\" \/>\n<meta property=\"og:site_name\" content=\"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-28T10:13:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-13T09:14:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1840\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Praktikant\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Praktikant\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/\"},\"author\":{\"name\":\"Praktikant\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#\\\/schema\\\/person\\\/829813e3a66c2dfbb030cd6647f3caf3\"},\"headline\":\"(Un)Sicherheit mit REST\",\"datePublished\":\"2025-01-28T10:13:00+00:00\",\"dateModified\":\"2026-05-13T09:14:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/\"},\"wordCount\":1290,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/blog-restapi.jpg\",\"articleSection\":[\"IT-Beratung\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/\",\"url\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/\",\"name\":\"(Un)Sicherheit mit REST - IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/blog-restapi.jpg\",\"datePublished\":\"2025-01-28T10:13:00+00:00\",\"dateModified\":\"2026-05-13T09:14:26+00:00\",\"description\":\"it Sonix Blog: (Un)Sicherheit mit REST\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#primaryimage\",\"url\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/blog-restapi.jpg\",\"contentUrl\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/blog-restapi.jpg\",\"width\":1840,\"height\":800,\"caption\":\"Illustration von Hackern und Cybersecurity\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/blog\\\/unsicherheit-mit-rest\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Start\",\"item\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"(Un)Sicherheit mit REST\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/\",\"name\":\"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#organization\",\"name\":\"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\",\"url\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/itsonix_rgb.png\",\"contentUrl\":\"https:\\\/\\\/itsonix.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/itsonix_rgb.png\",\"width\":1755,\"height\":296,\"caption\":\"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen\"},\"image\":{\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/itsonix.eu\\\/de\\\/#\\\/schema\\\/person\\\/829813e3a66c2dfbb030cd6647f3caf3\",\"name\":\"Praktikant\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g\",\"caption\":\"Praktikant\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"(In)security with REST - IT Sonix - Your Partner for Custom Software Solutions","description":"it Sonix Blog: (In)security with REST","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/itsonix.eu\/en\/blog\/uncertainty-with-residual\/","og_locale":"en_US","og_type":"article","og_title":"(Un)Sicherheit mit REST - IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen","og_description":"it Sonix Blog: (Un)Sicherheit mit REST","og_url":"https:\/\/itsonix.eu\/en\/blog\/uncertainty-with-residual\/","og_site_name":"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen","article_published_time":"2025-01-28T10:13:00+00:00","article_modified_time":"2026-05-13T09:14:26+00:00","og_image":[{"width":1840,"height":800,"url":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg","type":"image\/jpeg"}],"author":"Praktikant","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Praktikant","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#article","isPartOf":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/"},"author":{"name":"Praktikant","@id":"https:\/\/itsonix.eu\/de\/#\/schema\/person\/829813e3a66c2dfbb030cd6647f3caf3"},"headline":"(Un)Sicherheit mit REST","datePublished":"2025-01-28T10:13:00+00:00","dateModified":"2026-05-13T09:14:26+00:00","mainEntityOfPage":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/"},"wordCount":1290,"commentCount":0,"publisher":{"@id":"https:\/\/itsonix.eu\/de\/#organization"},"image":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#primaryimage"},"thumbnailUrl":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg","articleSection":["IT-Beratung"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/","url":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/","name":"(In)security with REST - IT Sonix - Your Partner for Custom Software Solutions","isPartOf":{"@id":"https:\/\/itsonix.eu\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#primaryimage"},"image":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#primaryimage"},"thumbnailUrl":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg","datePublished":"2025-01-28T10:13:00+00:00","dateModified":"2026-05-13T09:14:26+00:00","description":"it Sonix Blog: (In)security with REST","breadcrumb":{"@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#primaryimage","url":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg","contentUrl":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/blog-restapi.jpg","width":1840,"height":800,"caption":"Illustration von Hackern und Cybersecurity"},{"@type":"BreadcrumbList","@id":"https:\/\/itsonix.eu\/blog\/unsicherheit-mit-rest\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Start","item":"https:\/\/itsonix.eu\/de\/"},{"@type":"ListItem","position":2,"name":"(Un)Sicherheit mit REST"}]},{"@type":"WebSite","@id":"https:\/\/itsonix.eu\/de\/#website","url":"https:\/\/itsonix.eu\/de\/","name":"IT Sonix - Your Partner for Custom Software Solutions","description":"","publisher":{"@id":"https:\/\/itsonix.eu\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsonix.eu\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itsonix.eu\/de\/#organization","name":"IT Sonix - Your Partner for Custom Software Solutions","url":"https:\/\/itsonix.eu\/de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsonix.eu\/de\/#\/schema\/logo\/image\/","url":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/itsonix_rgb.png","contentUrl":"https:\/\/itsonix.eu\/wp-content\/uploads\/2026\/05\/itsonix_rgb.png","width":1755,"height":296,"caption":"IT Sonix - Ihr Partner f\u00fcr individuelle Softwarel\u00f6sungen"},"image":{"@id":"https:\/\/itsonix.eu\/de\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/itsonix.eu\/de\/#\/schema\/person\/829813e3a66c2dfbb030cd6647f3caf3","name":"Intern","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5dcf1b27e4ed416dc1ee2931ab8eac2c1ed8dc060bed9a0d6bb1f0501c05c25d?s=96&d=mm&r=g","caption":"Praktikant"}}]}},"_links":{"self":[{"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/posts\/629","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/comments?post=629"}],"version-history":[{"count":1,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/posts\/629\/revisions"}],"predecessor-version":[{"id":633,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/posts\/629\/revisions\/633"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/media\/632"}],"wp:attachment":[{"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/media?parent=629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/categories?post=629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsonix.eu\/en\/wp-json\/wp\/v2\/tags?post=629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}