{"id":1783,"date":"2014-01-09T11:00:30","date_gmt":"2014-01-09T16:00:30","guid":{"rendered":"http:\/\/sqlity.net\/en\/?p=1783"},"modified":"2014-11-13T13:21:49","modified_gmt":"2014-11-13T18:21:49","slug":"changing-security-context-execute-revert","status":"publish","type":"post","link":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/","title":{"rendered":"Changing the Security Context with EXECUTE AS and REVERT"},"content":{"rendered":"<div>\n<h3>Introduction<\/h3>\n<p>\nWhen testing SQL Server security, it is often necessary to login as a different user. However, repeated logins and logouts can become quite cumbersome quickly.\n<\/p>\n<p>\nBut there is help: Instead of establishing a new connection every time you need to test under a different login, you can instead just switch the current security context to a new login and switch it back when you are done. To execute a security context switch just use the <span class=\"tt\">EXECUTE AS<\/span> statement. The <span class=\"tt\">REVERT<\/span> statement lets you switch back to your original security context  after you are finished.\n<\/p>\n<h3>EXECUTE AS<\/h3>\n<p>\nLet's look at an example. For that we first need two logins and two users:\n<\/p>\n<div>\n[sql]\nCREATE LOGIN TestLogin1 WITH PASSWORD='********', CHECK_POLICY = OFF;<br \/>\nCREATE LOGIN TestLogin2 WITH PASSWORD='********', CHECK_POLICY = OFF;<br \/>\nCREATE USER TestUser1 FOR LOGIN TestLogin1;<br \/>\nCREATE USER TestUser2 FOR LOGIN TestLogin2;<br \/>\n[\/sql]\n<\/div>\n<p>\nNow, to be able to execute the <span class=\"tt\">EXECUTE AS<\/span> statement, you need to have impersonation permission on the account you want to switch to. So we need to grant that permission:\n<\/p>\n<div>\n[sql]\nGRANT IMPERSONATE ON LOGIN::TestLogin2 TO TestLogin1;<br \/>\n[\/sql]\n<\/div>\n<p>\nAs any grant or deny of server level permissions, this statement needs to be executed in master.\n<\/p>\n<p>\nNow that we have the permissions out of the way, let's try the <span class=\"tt\">EXECUTE AS<\/span> statement. Login to SQL Server using the TestLogin1 login and then execute this statement block:\n<\/p>\n<div>\n[sql]\nSELECT 'login' AS token_type,* FROM sys.login_token AS LT<br \/>\nUNION ALL<br \/>\nSELECT 'user' AS token_type,* FROM sys.user_token AS UT;<br \/>\nGO<br \/>\nEXECUTE AS LOGIN='TestLogin2';<br \/>\nGO<br \/>\nSELECT 'login' AS token_type,* FROM sys.login_token AS LT<br \/>\nUNION ALL<br \/>\nSELECT 'user' AS token_type,* FROM sys.user_token AS UT;<br \/>\n[\/sql]\n<\/div>\n<p>\nI introduced the two DMVs <span class=\"tt\">sys.login_token<\/span> and <span class=\"tt\">sys.user_token<\/span> yesterday in <a href=\"http:\/\/sqlity.net\/en\/1778\/secret-security-token-sql-server-determines-active-permissions\/\">The Secret of the Security Token<\/a>.\n<\/p>\n<p>\nWhen you execute the above statements you will get a result like this:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg\" alt=\"EXECUTE AS in Action\" width=\"810\" height=\"509\" class=\"aligncenter size-full wp-image-1785\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg 810w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action-300x188.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action-150x94.jpg 150w\" sizes=\"auto, (max-width: 810px) 100vw, 810px\" \/><\/a>\n<\/p>\n<p>\nAs you can see, the entire security context was switched out. Only the login TestLogin2 and the user TestUser2 shows up in the token list, after the <span class=\"tt\">EXECUTE AS<\/span> was executed. No trace of the original login or user remains.\n<\/p>\n<h3>REVERT<\/h3>\n<p>\nTo undo the context switch, you can just call <span class=\"tt\">REVERT<\/span> anytime:\n<\/p>\n<div>\n[sql]\nSELECT 'login' AS token_type,* FROM sys.login_token AS LT<br \/>\nUNION ALL<br \/>\nSELECT 'user' AS token_type,* FROM sys.user_token AS UT;<br \/>\nGO<br \/>\nREVERT;<br \/>\nGO<br \/>\nSELECT 'login' AS token_type,* FROM sys.login_token AS LT<br \/>\nUNION ALL<br \/>\nSELECT 'user' AS token_type,* FROM sys.user_token AS UT;<br \/>\n[\/sql]\n<\/div>\n<p>\nThese switch the security context back using the <span class=\"tt\">REVERT<\/span> statement. Before and after the current security tokens are displayed:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/REVERT_in_action.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/REVERT_in_action.jpg\" alt=\"REVERT in Action\" width=\"810\" height=\"509\" class=\"aligncenter size-full wp-image-1784\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/REVERT_in_action.jpg 810w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/REVERT_in_action-300x188.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/REVERT_in_action-150x94.jpg 150w\" sizes=\"auto, (max-width: 810px) 100vw, 810px\" \/><\/a>\n<\/p>\n<p>\nThe new security context after using <span class=\"tt\">EXECUTE AS<\/span> stays until either <span class=\"tt\">REVERT<\/span> is used or the connection is dropped. If you however executed <span class=\"tt\">EXECUTE AS<\/span> inside a procedure, the context is reset automatically at the end of the procedure.\n<\/p>\n<p>\nMultiple <span class=\"tt\">EXECUTE AS<\/span> executions can be nested. Each execution of the <span class=\"tt\">REVERT<\/span> statement goes one level back up the stack. To be able to execute <span class=\"tt\">EXECUTE AS<\/span> the current execution context needs to have <span class=\"tt\">IMPERSONATE<\/span> permission on the target login. It does not matter if the original account had those permissions if another security context is currently active.\n<\/p>\n<h3>Summary<\/h3>\n<p>\n<span class=\"tt\">EXECUTE AS<\/span> and <span class=\"tt\">REVERT<\/span> allow you to switch the security context from the login you used to connect to SQL Server to any other login that you have <span class=\"tt\">IMPERSONATE<\/span> permission on. This can simplify testing of security settings and permissions.\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.<\/p>\n<p> <a href=\"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/\">[more&#8230;]<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[29,5,34],"tags":[54,50,38,51,56,15],"class_list":["post-1783","post","type-post","status-publish","format-standard","hentry","category-fundamentals","category-general","category-security","tag-connection","tag-permission","tag-security-2","tag-security-tokens","tag-server-principals","tag-sql-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Changing the Security Context with EXECUTE AS and REVERT - sqlity.net<\/title>\n<meta name=\"description\" content=\"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changing the Security Context with EXECUTE AS and REVERT - sqlity.net\" \/>\n<meta property=\"og:description\" content=\"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/\" \/>\n<meta property=\"og:site_name\" content=\"sqlity.net\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sqlity.net\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-09T16:00:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-11-13T18:21:49+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg\" \/>\n<meta name=\"author\" content=\"Sebastian Meine\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sqlity\" \/>\n<meta name=\"twitter:site\" content=\"@sqlity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sebastian Meine\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/\"},\"author\":{\"name\":\"Sebastian Meine\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"headline\":\"Changing the Security Context with EXECUTE AS and REVERT\",\"datePublished\":\"2014-01-09T16:00:30+00:00\",\"dateModified\":\"2014-11-13T18:21:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/\"},\"wordCount\":632,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/EXECUTE_AS_in_action.jpg\",\"keywords\":[\"connection\",\"Permission\",\"security\",\"Security Tokens\",\"server principals\",\"SQL Server\"],\"articleSection\":[\"Fundamentals\",\"General\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/\",\"name\":\"Changing the Security Context with EXECUTE AS and REVERT - sqlity.net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/EXECUTE_AS_in_action.jpg\",\"datePublished\":\"2014-01-09T16:00:30+00:00\",\"dateModified\":\"2014-11-13T18:21:49+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"description\":\"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#primaryimage\",\"url\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/EXECUTE_AS_in_action.jpg\",\"contentUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/EXECUTE_AS_in_action.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1783\\\/changing-security-context-execute-revert\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changing the Security Context with EXECUTE AS and REVERT\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\",\"name\":\"sqlity.net\",\"description\":\"Quality for SQL\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sqlity.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\",\"name\":\"Sebastian Meine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"caption\":\"Sebastian Meine\"},\"sameAs\":[\"http:\\\/\\\/sqlity.net\",\"https:\\\/\\\/x.com\\\/sqlity\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Changing the Security Context with EXECUTE AS and REVERT - sqlity.net","description":"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.","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:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/","og_locale":"en_US","og_type":"article","og_title":"Changing the Security Context with EXECUTE AS and REVERT - sqlity.net","og_description":"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.","og_url":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/","og_site_name":"sqlity.net","article_publisher":"https:\/\/www.facebook.com\/sqlity.net","article_published_time":"2014-01-09T16:00:30+00:00","article_modified_time":"2014-11-13T18:21:49+00:00","og_image":[{"url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg","type":"","width":"","height":""}],"author":"Sebastian Meine","twitter_card":"summary_large_image","twitter_creator":"@sqlity","twitter_site":"@sqlity","twitter_misc":{"Written by":"Sebastian Meine","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#article","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/"},"author":{"name":"Sebastian Meine","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"headline":"Changing the Security Context with EXECUTE AS and REVERT","datePublished":"2014-01-09T16:00:30+00:00","dateModified":"2014-11-13T18:21:49+00:00","mainEntityOfPage":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/"},"wordCount":632,"commentCount":0,"image":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg","keywords":["connection","Permission","security","Security Tokens","server principals","SQL Server"],"articleSection":["Fundamentals","General","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/","url":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/","name":"Changing the Security Context with EXECUTE AS and REVERT - sqlity.net","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#primaryimage"},"image":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg","datePublished":"2014-01-09T16:00:30+00:00","dateModified":"2014-11-13T18:21:49+00:00","author":{"@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"description":"Constantly logging out and back in to test security settings and permissions can be cumbersome. Learn how EXECUTE AS can ease your life.","breadcrumb":{"@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#primaryimage","url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg","contentUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/01\/EXECUTE_AS_in_action.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/sqlity.net\/en\/1783\/changing-security-context-execute-revert\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sqlity.net\/en\/"},{"@type":"ListItem","position":2,"name":"Changing the Security Context with EXECUTE AS and REVERT"}]},{"@type":"WebSite","@id":"https:\/\/sqlity.net\/en\/#website","url":"https:\/\/sqlity.net\/en\/","name":"sqlity.net","description":"Quality for SQL","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sqlity.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c","name":"Sebastian Meine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","caption":"Sebastian Meine"},"sameAs":["http:\/\/sqlity.net","https:\/\/x.com\/sqlity"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p2wXuw-sL","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1783","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/comments?post=1783"}],"version-history":[{"count":0,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1783\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/media?parent=1783"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/categories?post=1783"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/tags?post=1783"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}